CodeDocumentationViewer, PreviewerHTML: prepared the code for the non-availability of either QtWebEngine or QtWebKit (e.g. in the Win-32 PyQt5 wheels as of 5.11).

Tue, 26 Jun 2018 18:50:04 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 26 Jun 2018 18:50:04 +0200
changeset 6372
ae44c83fccab
parent 6371
bc834bbc0251
child 6373
739683aacc4a

CodeDocumentationViewer, PreviewerHTML: prepared the code for the non-availability of either QtWebEngine or QtWebKit (e.g. in the Win-32 PyQt5 wheels as of 5.11).

UI/CodeDocumentationViewer.py file | annotate | diff | comparison | revisions
UI/Previewers/PreviewerHTML.py file | annotate | diff | comparison | revisions
i18n/eric6_cs.ts file | annotate | diff | comparison | revisions
i18n/eric6_de.qm file | annotate | diff | comparison | revisions
i18n/eric6_de.ts file | annotate | diff | comparison | revisions
i18n/eric6_empty.ts file | annotate | diff | comparison | revisions
i18n/eric6_en.ts file | annotate | diff | comparison | revisions
i18n/eric6_es.ts file | annotate | diff | comparison | revisions
i18n/eric6_fr.ts file | annotate | diff | comparison | revisions
i18n/eric6_it.ts file | annotate | diff | comparison | revisions
i18n/eric6_pt.ts file | annotate | diff | comparison | revisions
i18n/eric6_ru.ts file | annotate | diff | comparison | revisions
i18n/eric6_tr.ts file | annotate | diff | comparison | revisions
i18n/eric6_zh_CN.ts file | annotate | diff | comparison | revisions
--- a/UI/CodeDocumentationViewer.py	Tue Jun 26 18:39:14 2018 +0200
+++ b/UI/CodeDocumentationViewer.py	Tue Jun 26 18:50:04 2018 +0200
@@ -269,9 +269,13 @@
         self.verticalLayout.addWidget(self.__plainTextViewer)
         
         # Rich Text (Web) Viewer
-        self.__richTextViewer = WebViewDocumentationViewer(self)
-        self.__richTextViewer.setObjectName("__richTextViewer")
-        self.verticalLayout.addWidget(self.__richTextViewer)
+        try:
+            self.__richTextViewer = WebViewDocumentationViewer(self)
+            self.__richTextViewer.setObjectName("__richTextViewer")
+            self.verticalLayout.addWidget(self.__richTextViewer)
+        except ImportError:
+            # neither QtWebEngineWidgets nor QtWebKitWidgets is available
+            self.__richTextViewer = None
         
         self.__toolButton = E5ToolButton(self)
         self.__toolButton.setObjectName(
@@ -287,11 +291,15 @@
         self.__optionsActionGroup = QActionGroup(self)
         self.__optionsActionGroup.setExclusive(True)
         self.__optionsMenu = QMenu(self)
-        self.__richTextAct = self.__optionsMenu.addAction(
-            self.tr("Rich Text"),
-            lambda: self.__showTextViewer(True))
-        self.__richTextAct.setCheckable(True)
-        self.__optionsActionGroup.addAction(self.__richTextAct)
+        if self.__richTextViewer:
+            self.__richTextAct = self.__optionsMenu.addAction(
+                self.tr("Rich Text"),
+                lambda: self.__showTextViewer(True))
+            self.__richTextAct.setCheckable(True)
+            self.__optionsActionGroup.addAction(self.__richTextAct)
+        else:
+            # neither QtWebEngineWidgets nor QtWebKitWidgets is available
+            self.__richTextAct = None
         self.__plainTextAct = self.__optionsMenu.addAction(
             self.tr("Plain Text"),
             lambda: self.__showTextViewer(False))
@@ -433,7 +441,8 @@
         
         if self.__selectedProvider != self.__disabledProvider:
             self.__plainTextViewer.clear()
-            self.__richTextViewer.clear()
+            if self.__richTextViewer:
+                self.__richTextViewer.clear()
             self.__providers[self.__selectedProvider][0](editor)
     
     def documentationReady(self, documentationInfo, isWarning=False,
@@ -556,7 +565,8 @@
         @param html prepared HTML text
         @type str
         """
-        self.__richTextViewer.setHtml(html)
+        if self.__richTextViewer:
+            self.__richTextViewer.setHtml(html)
     
     def __setHtmlWarning(self, warningText):
         """
@@ -565,8 +575,9 @@
         @param warningText text to be shown as a warning
         @type str
         """
-        html = prepareDocumentationViewerHtmlWarningDocument(warningText)
-        self.__richTextViewer.setHtml(html)
+        if self.__richTextViewer:
+            html = prepareDocumentationViewerHtmlWarningDocument(warningText)
+            self.__richTextViewer.setHtml(html)
     
     @pyqtSlot(int)
     def on_providerComboBox_currentIndexChanged(self, index):
@@ -578,7 +589,8 @@
         """
         if not self.__shuttingDown and not self.__startingUp:
             self.__plainTextViewer.clear()
-            self.__richTextViewer.clear()
+            if self.__richTextViewer:
+                self.__richTextViewer.clear()
             self.objectLineEdit.clear()
             
             provider = self.providerComboBox.itemData(index)
@@ -631,13 +643,15 @@
         self.__showMarkdown = richText
         
         self.__plainTextViewer.clear()
-        self.__richTextViewer.clear()
+        self.__plainTextViewer.setVisible(not richText)
         
-        self.__plainTextViewer.setVisible(not richText)
-        self.__richTextViewer.setVisible(richText)
+        if self.__richTextViewer:
+            self.__richTextViewer.clear()
+            self.__richTextViewer.setVisible(richText)
         
         self.__plainTextAct.setChecked(not richText)
-        self.__richTextAct.setChecked(richText)
+        if self.__richTextAct:
+            self.__richTextAct.setChecked(richText)
         
         self.documentationReady(self.__lastDocumentation)
         
--- a/UI/Previewers/PreviewerHTML.py	Tue Jun 26 18:39:14 2018 +0200
+++ b/UI/Previewers/PreviewerHTML.py	Tue Jun 26 18:50:04 2018 +0200
@@ -51,17 +51,28 @@
         self.titleLabel.setTextInteractionFlags(Qt.NoTextInteraction)
         self.__layout.addWidget(self.titleLabel)
         
+        self.__previewAvailable = True
+        
         try:
             from PyQt5.QtWebEngineWidgets import QWebEngineView
             self.previewView = QWebEngineView(self)
             self.previewView.page().linkHovered.connect(self.__showLink)
             self.__usesWebKit = False
         except ImportError:
-            from PyQt5.QtWebKitWidgets import QWebPage, QWebView
-            self.previewView = QWebView(self)
-            self.previewView.page().setLinkDelegationPolicy(
-                QWebPage.DelegateAllLinks)
-            self.__usesWebKit = True
+            try:
+                from PyQt5.QtWebKitWidgets import QWebPage, QWebView
+                self.previewView = QWebView(self)
+                self.previewView.page().setLinkDelegationPolicy(
+                    QWebPage.DelegateAllLinks)
+                self.__usesWebKit = True
+            except ImportError:
+                self.__previewAvailable = False
+                self.titleLabel.setText(self.tr(
+                    "<b>HTML Preview is not available!<br/>"
+                    "Install QtWebEngine or QtWebKit.</b>"))
+                self.titleLabel.setAlignment(Qt.AlignHCenter)
+                self.__layout.addStretch()
+                return
         
         sizePolicy = QSizePolicy(QSizePolicy.Preferred, QSizePolicy.Expanding)
         sizePolicy.setHorizontalStretch(0)
@@ -110,7 +121,8 @@
         """
         Public method to perform shutdown actions.
         """
-        self.__processingThread.wait()
+        if self.__previewAvailable:
+            self.__processingThread.wait()
     
     @pyqtSlot(bool)
     def on_jsCheckBox_clicked(self, checked):
@@ -161,6 +173,9 @@
         
         @param editor editor to be processed (Editor)
         """
+        if not self.__previewAvailable:
+            return
+        
         if editor is None:
             editor = self.__previewedEditor
         else:
--- a/i18n/eric6_cs.ts	Tue Jun 26 18:39:14 2018 +0200
+++ b/i18n/eric6_cs.ts	Tue Jun 26 18:50:04 2018 +0200
@@ -1523,37 +1523,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="130"/>
+        <location filename="../Utilities/BackgroundService.py" line="132"/>
         <source>{0} not configured.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <source>Restart background client?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="212"/>
+        <location filename="../Utilities/BackgroundService.py" line="214"/>
         <source>An error in Erics background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="423"/>
+        <location filename="../Utilities/BackgroundService.py" line="427"/>
         <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="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <source>Background client disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <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="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <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>
@@ -3087,44 +3087,44 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="281"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="285"/>
         <source>Main Menu</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="291"/>
-        <source>Rich Text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/CodeDocumentationViewer.py" line="296"/>
+        <source>Rich Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/CodeDocumentationViewer.py" line="304"/>
         <source>Plain Text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="471"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="480"/>
         <source>No documentation available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="498"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="507"/>
         <source>Definition: {0}{1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="501"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="510"/>
         <source>Definition: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="548"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="557"/>
         <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="553"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="562"/>
         <source>This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3146,13 +3146,13 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="509"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="518"/>
         <source>Type: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="517"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="526"/>
         <source>Note: {0}
 </source>
         <translation type="unfinished"></translation>
@@ -4582,72 +4582,72 @@
 <context>
     <name>ConfigurationWidget</name>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="136"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="143"/>
         <source>Application</source>
         <translation>Aplikace</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="142"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="149"/>
         <source>CORBA</source>
         <translation>CORBA</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="148"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="155"/>
         <source>Email</source>
         <translation>Email</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="151"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="158"/>
         <source>Graphics</source>
         <translation>Grafika</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="157"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="164"/>
         <source>Icons</source>
         <translation>Ikony</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="176"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
         <source>Plugin Manager</source>
         <translation>Plugin Manažer</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="450"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
         <source>Printer</source>
         <translation>Tiskárna</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="186"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="193"/>
         <source>Python</source>
         <translation>Python</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="189"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="196"/>
         <source>Qt</source>
         <translation>Qt</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="195"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="202"/>
         <source>Shell</source>
         <translation>Shell</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="198"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="205"/>
         <source>Tasks</source>
         <translation>Úlohy</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="201"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="208"/>
         <source>Templates</source>
         <translation>Šablony</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="207"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="214"/>
         <source>Version Control Systems</source>
         <translation>Version Control Systems</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="212"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="219"/>
         <source>Debugger</source>
         <translation>Debugger</translation>
     </message>
@@ -4657,258 +4657,258 @@
         <translation type="obsolete">Ruby</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="232"/>
         <source>Editor</source>
         <translation>Editor</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="235"/>
         <source>APIs</source>
         <translation>APIs</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="231"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="238"/>
         <source>Autocompletion</source>
         <translation>Autodoplňování</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="239"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="246"/>
         <source>Calltips</source>
         <translation>Rychlé tipy</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="248"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
         <source>General</source>
         <translation>Hlavní</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="268"/>
-        <source>Typing</source>
-        <translation>Psaní</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="271"/>
-        <source>Exporters</source>
-        <translation>Exportery</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="275"/>
+        <source>Typing</source>
+        <translation>Psaní</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="278"/>
+        <source>Exporters</source>
+        <translation>Exportery</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="282"/>
         <source>Highlighters</source>
         <translation>Zvýrazňovače</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="279"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="286"/>
         <source>Filetype Associations</source>
         <translation>Asociace typů souborů</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="283"/>
-        <source>Styles</source>
-        <translation>Styly</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="299"/>
-        <source>Help</source>
-        <translation>Nápověda</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
-        <source>Help Documentation</source>
-        <translation>Dokumenty nápovědy</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="306"/>
-        <source>Help Viewers</source>
-        <translation>Prohlížeče nápovědy</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="317"/>
-        <source>Project</source>
-        <translation>Projekt</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="314"/>
-        <source>Project Viewer</source>
-        <translation>Prohlížeč projektu</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="320"/>
-        <source>Multiproject</source>
-        <translation>Multiprojekt</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="444"/>
-        <source>Interface</source>
-        <translation>Interface</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="331"/>
-        <source>Viewmanager</source>
-        <translation>Viewmanager</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
-        <source>Configuration Page Error</source>
-        <translation>Chyba na straně konfigurace</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="251"/>
-        <source>Filehandling</source>
-        <translation>Manažer souborů</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
-        <source>Searching</source>
-        <translation>Vyhledávání</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="462"/>
-        <source>Appearance</source>
-        <translation>Vzhled</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="242"/>
-        <source>QScintilla</source>
-        <translation>QScintilla</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="262"/>
-        <source>Style</source>
-        <translation>Styl</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="290"/>
+        <source>Styles</source>
+        <translation>Styly</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="306"/>
+        <source>Help</source>
+        <translation>Nápověda</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="464"/>
+        <source>Help Documentation</source>
+        <translation>Dokumenty nápovědy</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="313"/>
+        <source>Help Viewers</source>
+        <translation>Prohlížeče nápovědy</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="324"/>
+        <source>Project</source>
+        <translation>Projekt</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="321"/>
+        <source>Project Viewer</source>
+        <translation>Prohlížeč projektu</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="327"/>
+        <source>Multiproject</source>
+        <translation>Multiprojekt</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="451"/>
+        <source>Interface</source>
+        <translation>Interface</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="338"/>
+        <source>Viewmanager</source>
+        <translation>Viewmanager</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
+        <source>Configuration Page Error</source>
+        <translation>Chyba na straně konfigurace</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="258"/>
+        <source>Filehandling</source>
+        <translation>Manažer souborů</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="262"/>
+        <source>Searching</source>
+        <translation>Vyhledávání</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <source>Appearance</source>
+        <translation>Vzhled</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="249"/>
+        <source>QScintilla</source>
+        <translation>QScintilla</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="269"/>
+        <source>Style</source>
+        <translation>Styl</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="297"/>
         <source>Properties</source>
         <translation>Nastavení</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="646"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
         <source>Preferences</source>
         <translation>Předvolby</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="651"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="658"/>
         <source>Please select an entry of the list 
 to display the configuration page.</source>
         <translation>Pro zobrazení strany s konfigurací vyberte položku ze seznamu.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="447"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="454"/>
         <source>Network</source>
         <translation>Síť</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="478"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="485"/>
         <source>Spell checking</source>
         <translation>Kontrola pravopisu</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="221"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
         <source>Python3</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <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>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="287"/>
-        <source>Keywords</source>
-        <translation>Klíčová slova</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="139"/>
-        <source>Cooperation</source>
-        <translation>Spolupráce</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="494"/>
-        <source>Tray Starter</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="473"/>
-        <source>VirusTotal Interface</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="453"/>
-        <source>Security</source>
-        <translation type="unfinished">Bezpečnost</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="172"/>
-        <source>Notifications</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="160"/>
-        <source>IRC</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="265"/>
-        <source>Code Checkers</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="465"/>
-        <source>eric6 Web Browser</source>
-        <translation type="unfinished">eric5 web prohlížeč {6 ?}</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="163"/>
-        <source>Log-Viewer</source>
-        <translation type="unfinished">Prohlížeč logu</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="166"/>
-        <source>Mimetypes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
-        <source>Enter search text...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="294"/>
+        <source>Keywords</source>
+        <translation>Klíčová slova</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="146"/>
+        <source>Cooperation</source>
+        <translation>Spolupráce</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="501"/>
+        <source>Tray Starter</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="480"/>
+        <source>VirusTotal Interface</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="460"/>
+        <source>Security</source>
+        <translation type="unfinished">Bezpečnost</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="179"/>
+        <source>Notifications</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="167"/>
+        <source>IRC</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="272"/>
+        <source>Code Checkers</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="472"/>
+        <source>eric6 Web Browser</source>
+        <translation type="unfinished">eric5 web prohlížeč {6 ?}</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="170"/>
+        <source>Log-Viewer</source>
+        <translation type="unfinished">Prohlížeč logu</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="173"/>
+        <source>Mimetypes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="591"/>
+        <source>Enter search text...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="301"/>
         <source>Mouse Click Handlers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="476"/>
         <source>Flash Cookie Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="507"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="514"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="364"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="371"/>
         <source>Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="145"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="152"/>
         <source>Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="245"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="252"/>
         <source>Documentation Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="190"/>
         <source>Protobuf</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="218"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
         <source>Python2</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5664,13 +5664,13 @@
         <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="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1603"/>
         <source>Passive debug connection received
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1613"/>
+        <location filename="../Debugger/DebugServer.py" line="1617"/>
         <source>Passive debug connection closed
 </source>
         <translation type="unfinished"></translation>
@@ -20133,12 +20133,12 @@
         <translation type="unfinished">Graf</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
         <source>Commit ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
         <source>Author</source>
         <translation type="unfinished">Autor</translation>
     </message>
@@ -20148,7 +20148,7 @@
         <translation type="unfinished">Datum</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
         <source>Committer</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20158,7 +20158,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="106"/>
         <source>Subject</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20233,7 +20233,7 @@
         <translation type="unfinished">Kopírovat z</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2119"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2121"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20293,328 +20293,328 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="92"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="98"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="100"/>
         <source>Find</source>
         <translation type="unfinished">Hledat</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
         <source>Filter</source>
         <translation type="unfinished">Filtr</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>File</source>
         <translation type="unfinished">Soubor</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="124"/>
         <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="134"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="136"/>
         <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="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="139"/>
         <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="140"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="142"/>
         <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="143"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="145"/>
         <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="146"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="148"/>
         <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="198"/>
-        <source>Added</source>
-        <translation type="unfinished">Přidáno</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="199"/>
-        <source>Deleted</source>
-        <translation type="unfinished">Smazáno</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="200"/>
-        <source>Modified</source>
-        <translation type="unfinished">Změněno</translation>
+        <source>Added</source>
+        <translation type="unfinished">Přidáno</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="201"/>
-        <source>Copied</source>
-        <translation type="unfinished"></translation>
+        <source>Deleted</source>
+        <translation type="unfinished">Smazáno</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="202"/>
-        <source>Renamed</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="203"/>
-        <source>Type changed</source>
+        <source>Copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Unmerged</source>
+        <source>Renamed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
+        <source>Type changed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
+        <source>Unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
         <source>Unknown</source>
         <translation type="unfinished">Neznámý</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="241"/>
-        <source>Show Commit ID Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="243"/>
+        <source>Show Commit ID Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="245"/>
         <source>Press to show the commit ID column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
-        <source>Show Author Columns</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="253"/>
+        <source>Show Author Columns</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="255"/>
         <source>Press to show the author columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
-        <source>Show Committer Columns</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="263"/>
+        <source>Show Committer Columns</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="265"/>
         <source>Press to show the committer columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
-        <source>Show Branches Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="273"/>
+        <source>Show Branches Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="275"/>
         <source>Press to show the branches column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
-        <source>Show Tags Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="283"/>
+        <source>Show Tags Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="285"/>
         <source>Press to show the Tags column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="313"/>
-        <source>Copy Commits</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <source>Copy Commits</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
         <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="320"/>
-        <source>Tag</source>
-        <translation type="unfinished">Tag</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <source>Tag</source>
+        <translation type="unfinished">Tag</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
         <source>Tag the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1812"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1814"/>
         <source>Branch</source>
         <translation type="unfinished">Větev</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="326"/>
-        <source>Create a new branch at the selected commit.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
-        <source>Branch &amp;&amp; Switch</source>
+        <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"/>
+        <source>Branch &amp;&amp; Switch</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
         <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="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>Switch</source>
         <translation type="unfinished">Přepnout</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
         <source>Switch the working directory to the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Show Short Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="342"/>
+        <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="345"/>
-        <source>Describe</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Describe</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
         <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="648"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="650"/>
         <source>The git process did not finish within 30s.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="651"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="653"/>
         <source>Could not start the git executable.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="654"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="656"/>
         <source>Git Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="771"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <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="1275"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1277"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1287"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1289"/>
         <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="1725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1727"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <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="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Select a branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Select a default branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Branch &amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <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="2133"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2135"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2148"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
         <source>Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2174"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2176"/>
         <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="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <source>Save Diff</source>
         <translation type="unfinished">Uložit Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2303"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2305"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">Patch soubory (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2320"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2322"/>
         <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="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <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>
@@ -23732,7 +23732,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="395"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="397"/>
         <source>Git Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23758,7 +23758,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>Commit</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23833,322 +23833,322 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="65"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
         <source>Refresh</source>
         <translation type="unfinished">Obnovit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="69"/>
         <source>Press to refresh the status display</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="107"/>
         <source>Stage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="111"/>
         <source>Revert Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="115"/>
         <source>Stage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="119"/>
         <source>Revert Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="123"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="125"/>
         <source>Unstage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="127"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="129"/>
         <source>Unstage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
-        <source>added</source>
-        <translation type="unfinished">přidáno</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
-        <source>copied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
-        <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="172"/>
-        <source>modified</source>
+        <source>copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="173"/>
-        <source>renamed</source>
+        <source>deleted</source>
+        <translation type="unfinished">smazáno</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="174"/>
+        <source>modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="175"/>
+        <source>renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="177"/>
         <source>not tracked</source>
         <translation type="unfinished">nesledováno</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="174"/>
-        <source>unmerged</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmodified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="176"/>
+        <source>unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmodified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="178"/>
         <source>ignored</source>
         <translation type="unfinished">ignorováno</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="199"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="198"/>
-        <source>Amend</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="200"/>
-        <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="202"/>
-        <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="204"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
         <source>Unselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <source>Add</source>
         <translation type="unfinished">Přidat</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="212"/>
         <source>Add the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="211"/>
-        <source>Stage changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="213"/>
-        <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="215"/>
-        <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="217"/>
+        <source>Unstage changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="219"/>
         <source>Unstages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="224"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226"/>
         <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="227"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="229"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="231"/>
         <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="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>Revert</source>
         <translation type="unfinished">Vrátit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="242"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
-        <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="246"/>
-        <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="248"/>
+        <source>Restore missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="250"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
-        <source>Edit file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
+        <source>Edit file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257"/>
         <source>Edit the selected conflicting file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="260"/>
-        <source>Adjust column sizes</source>
-        <translation type="unfinished">Přizpůsobit šířky sloupců</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="262"/>
+        <source>Adjust column sizes</source>
+        <translation type="unfinished">Přizpůsobit šířky sloupců</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="264"/>
         <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="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <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="596"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="598"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <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="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>Stage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>There are no stageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>Unstage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
         <source>Forget Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <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="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <source>Restore Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="891"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="893"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="870"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872"/>
         <source>Staging Area to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="892"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <source>Working Tree to HEAD Commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Side-by-Side Difference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Select the compare method.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1201"/>
-        <source>Revert selected lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1203"/>
+        <source>Revert selected lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1205"/>
         <source>Revert hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1206"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25352,357 +25352,357 @@
 <context>
     <name>HelpBrowser</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1220"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1223"/>
         <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation>Otevřít odkaz v novém tab okně<byte value="x9"/>Ctrl+LMB</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="745"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="748"/>
         <source>&lt;b&gt;Help Window&lt;/b&gt;&lt;p&gt;This window displays the selected help information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Okno nápovědy&lt;/b&gt;&lt;p&gt;Toto okno zobrazí vybranou informaci nápovědy.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1518"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1521"/>
         <source>Web Inspector...</source>
         <translation>Web inspektor...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2202"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2205"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation>Zkontrolujte adresu na chyby jako je &lt;b&gt;ww&lt;/b&gt;.example.org místo &lt;b&gt;www&lt;/b&gt;.example.org</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2210"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation>Je-li adresa vpořádku, prověřte síťové spojení.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2214"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation>Je-li vaše šíť chráněna firewallem nebo proxy, ujistěte se, že váš prohlížeč má na tuto síť povolen přístup.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1424"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
         <source>Bookmark this Page</source>
         <translation>Záložka na tuto stranu</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1227"/>
-        <source>Save Lin&amp;k</source>
-        <translation>Uložit lin&amp;k</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1230"/>
+        <source>Save Lin&amp;k</source>
+        <translation>Uložit lin&amp;k</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1233"/>
         <source>Bookmark this Link</source>
         <translation>Záložka na tento link</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1237"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
         <source>Copy Link to Clipboard</source>
         <translation>Kopírovat link do schránky</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1258"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1261"/>
         <source>Open Image in New Tab</source>
         <translation>Otevřít obrázek v novém tabu</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1265"/>
-        <source>Save Image</source>
-        <translation>Uložit obrázek</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1268"/>
+        <source>Save Image</source>
+        <translation>Uložit obrázek</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1271"/>
         <source>Copy Image to Clipboard</source>
         <translation>Kopíroavt obrázek do schránky</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1270"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1273"/>
         <source>Copy Image Location to Clipboard</source>
         <translation>Kopírovat cestu obrázku do schránky</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1283"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1286"/>
         <source>Block Image</source>
         <translation>Blokovat obrázek</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1457"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1460"/>
         <source>Search with...</source>
         <translation>Hledat s...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="931"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="934"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{}&lt;/b&gt; neexistuje.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="976"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="979"/>
         <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nelze spustit prohlížeč se souborem &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="956"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="959"/>
         <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nelze spustit aplikaci pro URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2181"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2184"/>
         <source>Error loading page: {0}</source>
         <translation>Chyba při načítání strany: {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2199"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2202"/>
         <source>When connecting to: {0}.</source>
         <translation>Při připojení na: {0}.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>Web Database Quota</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>&lt;p&gt;The database quota of &lt;strong&gt;{0}&lt;/strong&gt; has been exceeded while accessing database &lt;strong&gt;{1}&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Shall it be changed?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>New Web Database Quota</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2297"/>
-        <source>bytes</source>
-        <translation type="unfinished">bajty</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2300"/>
-        <source>kB</source>
-        <translation type="unfinished">kB</translation>
+        <source>bytes</source>
+        <translation type="unfinished">bajty</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2303"/>
+        <source>kB</source>
+        <translation type="unfinished">kB</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2306"/>
         <source>MB</source>
         <translation type="unfinished">MB</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1511"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1514"/>
         <source>Add to web search toolbar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>Method not supported</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>{0} method is not supported.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Search engine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Choose the desired search engine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Engine name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Enter a name for the engine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2217"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2220"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1248"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1251"/>
         <source>Scan Link with VirusTotal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1291"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1294"/>
         <source>Scan Image with VirusTotal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1243"/>
         <source>Send Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1276"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1279"/>
         <source>Send Image Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1384"/>
-        <source>This Frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1387"/>
-        <source>Show &amp;only this frame</source>
+        <source>This Frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1390"/>
+        <source>Show &amp;only this frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1393"/>
         <source>Show in new &amp;tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1397"/>
-        <source>&amp;Print</source>
-        <translation type="unfinished">&amp;Tisk</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1400"/>
-        <source>Print Preview</source>
-        <translation type="unfinished">Náhled tisku</translation>
+        <source>&amp;Print</source>
+        <translation type="unfinished">&amp;Tisk</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1403"/>
+        <source>Print Preview</source>
+        <translation type="unfinished">Náhled tisku</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1406"/>
         <source>Print as PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1407"/>
-        <source>Zoom &amp;in</source>
-        <translation type="unfinished">Př&amp;iblížit</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1410"/>
-        <source>Zoom &amp;reset</source>
-        <translation type="unfinished">&amp;Resetovat lupu</translation>
+        <source>Zoom &amp;in</source>
+        <translation type="unfinished">Př&amp;iblížit</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1413"/>
+        <source>Zoom &amp;reset</source>
+        <translation type="unfinished">&amp;Resetovat lupu</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1416"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished">&amp;Oddálit</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1417"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1420"/>
         <source>Show frame so&amp;urce</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1430"/>
         <source>Send Page Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1448"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1451"/>
         <source>Send Text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1482"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1485"/>
         <source>Google Translate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1491"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1494"/>
         <source>Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1501"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1504"/>
         <source>Go to web address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1434"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1437"/>
         <source>User Agent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2222"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2225"/>
         <source>Try Again</source>
         <translation type="unfinished">Zkusit znova</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1311"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1314"/>
         <source>Play</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1315"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1318"/>
         <source>Pause</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1319"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1322"/>
         <source>Unmute</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1323"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1326"/>
         <source>Mute</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1327"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1330"/>
         <source>Copy Media Address to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1333"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1336"/>
         <source>Send Media Address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1339"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1342"/>
         <source>Save Media</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>eric6 Web Browser</source>
         <translation type="unfinished">eric5 web prohlížeč {6 ?}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5. Please upgrade.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2626"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2629"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5.Please upgrade.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Tisk není dostupný kvůli bugu v PyQt4.Please upgrade.&lt;/p&gt; {5.?}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1200"/>
-        <source>Add New Page</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1203"/>
+        <source>Add New Page</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1206"/>
         <source>Configure Speed Dial</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1210"/>
         <source>Reload All Dials</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1214"/>
         <source>Reset to Default Dials</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27076,82 +27076,82 @@
 <context>
     <name>HelpWebPage</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="376"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="379"/>
         <source>Error loading page: {0}</source>
         <translation>Chyba při načítání strany: {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="395"/>
-        <source>When connecting to: {0}.</source>
-        <translation>Při připojení na: {0}.</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="398"/>
+        <source>When connecting to: {0}.</source>
+        <translation>Při připojení na: {0}.</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="401"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation>Zkontrolujte adresu na chyby jako je &lt;b&gt;ww&lt;/b&gt;.example.org místo &lt;b&gt;www&lt;/b&gt;.example.org</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="403"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="406"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation>Je-li adresa v pořádku, prověřte síťové spojení.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="408"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="411"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation>Je-li vaše šíť chráněna firewallem nebo proxy, ujistěte se, že váš prohlížeč má na tuto síť povolen přístup.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="414"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="417"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>Resending POST request</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>In order to display the site, the request along with all the data must be sent once again, which may lead to some unexpected behaviour of the site e.g. the same action might be performed once again. Do you want to continue anyway?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="419"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="422"/>
         <source>Try Again</source>
         <translation type="unfinished">Zkusit znova</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="351"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="354"/>
         <source>Content blocked by AdBlock Plus</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="352"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="355"/>
         <source>Blocked by rule: &lt;i&gt;{0}&lt;/i&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="309"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="312"/>
         <source>Select files to upload...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>SSL Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>This site does not contain SSL information.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Protocol Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Open external application for {0}-link?
 URL: {1}</source>
         <translation type="unfinished"></translation>
@@ -43146,27 +43146,27 @@
 <context>
     <name>JavaScriptEricObject</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="114"/>
         <source>Search!</source>
         <translation>Hledat!</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="150"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="153"/>
         <source>Search results provided by {0}</source>
         <translation>Výsledek vyhledávání dodaný od {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="108"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
         <source>Welcome to eric6 Web Browser!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="110"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="113"/>
         <source>eric6 Web Browser</source>
         <translation type="unfinished">eric5 web prohlížeč {6 ?}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="112"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="115"/>
         <source>About eric6</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46089,12 +46089,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <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>
@@ -51009,22 +51009,22 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="484"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="499"/>
         <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="653"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="668"/>
         <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="597"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="612"/>
         <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="681"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="696"/>
         <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>
@@ -51032,40 +51032,45 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="88"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="76"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="87"/>
         <source>Enable JavaScript</source>
         <translation type="unfinished">Zapnout JavaScript</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="83"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="94"/>
         <source>Select to enable support for 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="92"/>
         <source>Enable Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="190"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="205"/>
         <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="252"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="267"/>
         <source>Preview - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="254"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="269"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="70"/>
+        <source>&lt;b&gt;HTML Preview is not available!&lt;br/&gt;Install QtWebEngine or QtWebKit.&lt;/b&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PreviewerQSS</name>
@@ -53196,7 +53201,7 @@
         <translation>Kompilovat formuláře...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="905"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="943"/>
         <source>Abort</source>
         <translation>Přerušit</translation>
     </message>
@@ -54036,7 +54041,7 @@
         <translation>Kompilovat resources...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="777"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="850"/>
         <source>Abort</source>
         <translation>Přerušit</translation>
     </message>
@@ -62935,280 +62940,280 @@
 <context>
     <name>ShellWindow</name>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Quit</source>
         <translation type="unfinished">Konec</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">&amp;Konec</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="201"/>
         <source>Quit the Shell</source>
         <translation type="unfinished">Ukončit IDE</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="197"/>
+        <location filename="../QScintilla/ShellWindow.py" line="202"/>
         <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New Window</source>
         <translation type="unfinished">Nové okno</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New &amp;Window</source>
         <translation type="unfinished">&amp;Nové okno</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="211"/>
+        <location filename="../QScintilla/ShellWindow.py" line="216"/>
         <source>Open a new Shell window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="213"/>
+        <location filename="../QScintilla/ShellWindow.py" line="218"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="220"/>
-        <source>Restart</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="225"/>
+        <source>Restart</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="230"/>
         <source>Restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="227"/>
+        <location filename="../QScintilla/ShellWindow.py" line="232"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="234"/>
-        <source>Restart and Clear</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="239"/>
+        <source>Restart and Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="244"/>
         <source>Clear the window and restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="241"/>
+        <location filename="../QScintilla/ShellWindow.py" line="246"/>
         <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>Show History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>&amp;Show History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="882"/>
+        <location filename="../QScintilla/ShellWindow.py" line="887"/>
         <source>Show the shell history in a dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>Clear History</source>
         <translation type="unfinished">Vyčistit historii</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>&amp;Clear History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="892"/>
+        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Clear the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
+        <location filename="../QScintilla/ShellWindow.py" line="901"/>
         <source>Select History Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
-        <source>Select History &amp;Entry</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
+        <source>Select History &amp;Entry</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="906"/>
         <source>Select an entry of the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>About</source>
         <translation type="unfinished">O aplikaci</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>&amp;About</source>
         <translation type="unfinished">O &amp;aplikaci</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="913"/>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
         <source>Display information about this software</source>
         <translation type="unfinished">Zobrazit informace a tomto software</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="915"/>
+        <location filename="../QScintilla/ShellWindow.py" line="920"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;O aplikaci&lt;/b&gt;&lt;p&gt;Zobrazí se informace o tomto software.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About Qt</source>
         <translation type="unfinished">O Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished">O &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="925"/>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished">Zobrazit informace o Qt toolkitu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="927"/>
+        <location filename="../QScintilla/ShellWindow.py" line="932"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished">Co je to?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished">&amp;Co je to?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
+        <location filename="../QScintilla/ShellWindow.py" line="945"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">Kontextově senzitivní nápověda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="941"/>
+        <location filename="../QScintilla/ShellWindow.py" line="946"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Zobrazit kontextově senzitivní nápovědu&lt;/b&gt;&lt;p&gt;V režimu &quot;Co je to?&quot; se nad různými prvky aplikace u kurzoru zobrazí otazník. Když pak kliknete na tyto prvky, zobrazí se krátký popis co daný prvek znamená a jak jej použít. V dialogových oknech se tato funkce spustí tlačítkem kontextové nápovědy na horní liště.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>About eric6 Shell Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1105"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1110"/>
         <source>&amp;File</source>
         <translation type="unfinished">S&amp;oubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1114"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1119"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">&amp;Edit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1125"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1130"/>
         <source>&amp;View</source>
         <translation type="unfinished">Poh&amp;led</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1132"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
         <source>Histor&amp;y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1139"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1144"/>
         <source>&amp;Start</source>
         <translation type="unfinished">&amp;Start</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1145"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1150"/>
         <source>&amp;Help</source>
         <translation type="unfinished">&amp;Nápověda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1180"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1185"/>
         <source>File</source>
         <translation type="unfinished">Soubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1189"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1194"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
         <source>Find</source>
         <translation type="unfinished">Hledat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1202"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1207"/>
         <source>View</source>
         <translation type="unfinished">Pohled</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1209"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1214"/>
         <source>History</source>
         <translation type="unfinished">Historie</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1215"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1220"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1241"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="570"/>
+        <location filename="../QScintilla/ShellWindow.py" line="575"/>
         <source>Move forward one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="580"/>
+        <location filename="../QScintilla/ShellWindow.py" line="585"/>
         <source>Move back one history entry</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74383,12 +74388,12 @@
         <translation type="unfinished">Zobrazit verze</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="523"/>
+        <location filename="../Tools/TrayStarter.py" line="526"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation type="unfinished">&lt;h3&gt;Čísla verzí&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="550"/>
+        <location filename="../Tools/TrayStarter.py" line="553"/>
         <source>&lt;/table&gt;</source>
         <translation type="unfinished">&lt;/table&gt;</translation>
     </message>
@@ -74974,7 +74979,7 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>Unittest</source>
         <translation></translation>
     </message>
@@ -75164,57 +75169,57 @@
         <translation>^Chyby: </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="269"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="271"/>
         <source>You must enter a test suite file.</source>
         <translation>Musíte zadat soubor soupravy testu.</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="277"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="279"/>
         <source>Preparing Testsuite</source>
         <translation>Příprava soupravy testu</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="475"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="477"/>
         <source>Running</source>
         <translation>Běží</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="640"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="642"/>
         <source>Show Source</source>
         <translation>Zobrazit zdroj</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="209"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="211"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>Python soubory (*.py);;Všechny soubory (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="205"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="207"/>
         <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source>
         <translation>Python3 soubory ({1});;Python2 soubory ({0});;Všechny soubory (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;{1}&lt;br&gt;{2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nelze spustit test &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="499"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="501"/>
         <source>Ran {0} test in {1:.3f}s</source>
         <translation>Doběhl {0} test za {1:.3f}s</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="503"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="505"/>
         <source>Ran {0} tests in {1:.3f}s</source>
         <translation>Doběhlo {0} testů za {1:.3f}s</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="520"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="522"/>
         <source>Failure: {0}</source>
         <translation>Selhalo: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="535"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="537"/>
         <source>Error: {0}</source>
         <translation>Chyby: {0}</translation>
     </message>
@@ -75249,17 +75254,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="550"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="552"/>
         <source>    Skipped: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="565"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="567"/>
         <source>    Expected Failure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="579"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="581"/>
         <source>    Unexpected Success</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75692,7 +75697,7 @@
         <translation>Zjistit akt&amp;ualizace...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <source>Report Bug</source>
         <translation>Reportovat Bugy</translation>
     </message>
@@ -75772,7 +75777,7 @@
         <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="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <source>Unittest Project</source>
         <translation>Unittest Projekt</translation>
     </message>
@@ -75942,7 +75947,7 @@
         <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="5846"/>
+        <location filename="../UI/UserInterface.py" line="5849"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Exportovat klávesové zkratky</translation>
     </message>
@@ -75962,7 +75967,7 @@
         <translation>&lt;b&gt;Export klávesových zkratek&lt;/b&gt;&lt;p&gt;Exportují se klávesové zkratky z aplikace.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Import klávesových zkratek</translation>
     </message>
@@ -76092,7 +76097,7 @@
         <translation>Nastavení</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <source>Help</source>
         <translation>Nápověda</translation>
     </message>
@@ -76102,97 +76107,97 @@
         <translation>Profily</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3259"/>
+        <location filename="../UI/UserInterface.py" line="3262"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Čísla verzí&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6826"/>
+        <location filename="../UI/UserInterface.py" line="6829"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <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="3673"/>
+        <location filename="../UI/UserInterface.py" line="3676"/>
         <source>Configure Tool Groups ...</source>
         <translation>Konfigurace Skupin nástrojů...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3677"/>
+        <location filename="../UI/UserInterface.py" line="3680"/>
         <source>Configure current Tool Group ...</source>
         <translation>Konfigurace aktuální skupiny nástrojů...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3628"/>
+        <location filename="../UI/UserInterface.py" line="3631"/>
         <source>&amp;Builtin Tools</source>
         <translation>&amp;Vestavěné nástroje</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <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="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <source>Problem</source>
         <translation>Problém</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <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="4728"/>
+        <location filename="../UI/UserInterface.py" line="4731"/>
         <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="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <source>Documentation Missing</source>
         <translation>Dokumentace chybí</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>Documentation</source>
         <translation>Dokumentace</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5303"/>
+        <location filename="../UI/UserInterface.py" line="5306"/>
         <source>&lt;p&gt;The PyQt4 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Adresář PyQt4 dokumentace není nakonfigurován.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>Save tasks</source>
         <translation>Uložit úlohy</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <source>Read tasks</source>
         <translation>Načíst úlohy</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <source>Drop Error</source>
         <translation>Zahodit chybu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Error during updates check</source>
         <translation>Chyba během zjišťování aktualizací</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>Update available</source>
         <translation>Byla nalezena aktualizace</translation>
     </message>
@@ -76207,17 +76212,17 @@
         <translation>Zobrazit externí nás&amp;troje</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Could not perform updates check.</source>
         <translation>Kontrolu updatů nelze provést.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Zrušit</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>First time usage</source>
         <translation>Spuštěno poprvé</translation>
     </message>
@@ -76257,7 +76262,7 @@
         <translation>&amp;Plugin Infa...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3645"/>
+        <location filename="../UI/UserInterface.py" line="3648"/>
         <source>&amp;Plugin Tools</source>
         <translation>&amp;Plugin nástroje</translation>
     </message>
@@ -76277,12 +76282,12 @@
         <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="3793"/>
+        <location filename="../UI/UserInterface.py" line="3796"/>
         <source>&amp;Show all</source>
         <translation>&amp;Zobrazit vše</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3795"/>
+        <location filename="../UI/UserInterface.py" line="3798"/>
         <source>&amp;Hide all</source>
         <translation>&amp;Skrýt vše</translation>
     </message>
@@ -76312,7 +76317,7 @@
         <translation>Zobrazit dostupné verze ke stažení</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6812"/>
+        <location filename="../UI/UserInterface.py" line="6815"/>
         <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>
@@ -76392,7 +76397,7 @@
         <translation>Obnovit manažer nástrojových lišt...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>External Tools</source>
         <translation>Externí nástroje</translation>
     </message>
@@ -76407,12 +76412,12 @@
         <translation>Prohlížeč &amp;multiprojektu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6165"/>
+        <location filename="../UI/UserInterface.py" line="6168"/>
         <source>Save session</source>
         <translation>Uložit relaci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <source>Read session</source>
         <translation>Načíst relaci</translation>
     </message>
@@ -76482,12 +76487,12 @@
         <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="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>Restart application</source>
         <translation>Restartovat aplikaci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>The application needs to be restarted. Do it now?</source>
         <translation>Aplikace potřebuje restartovat. Má se provést nyní?</translation>
     </message>
@@ -76642,7 +76647,7 @@
         <translation>Editor &amp;ikon...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt 3 support</source>
         <translation>Qt 3 podpora</translation>
     </message>
@@ -76687,106 +76692,106 @@
         <translation>Externí nástroje/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <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="4548"/>
+        <location filename="../UI/UserInterface.py" line="4551"/>
         <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="4615"/>
+        <location filename="../UI/UserInterface.py" line="4618"/>
         <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="4666"/>
+        <location filename="../UI/UserInterface.py" line="4669"/>
         <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="4708"/>
+        <location filename="../UI/UserInterface.py" line="4711"/>
         <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="4776"/>
+        <location filename="../UI/UserInterface.py" line="4779"/>
         <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="4831"/>
+        <location filename="../UI/UserInterface.py" line="4834"/>
         <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="4852"/>
+        <location filename="../UI/UserInterface.py" line="4855"/>
         <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="4945"/>
+        <location filename="../UI/UserInterface.py" line="4948"/>
         <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="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <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="4993"/>
+        <location filename="../UI/UserInterface.py" line="4996"/>
         <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="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <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="5085"/>
+        <location filename="../UI/UserInterface.py" line="5088"/>
         <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="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Adresář dokumentace &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; nebyl nalezen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Do souboru s úlohami &lt;b&gt;{0}&lt;/b&gt; nelze zapisovat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <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="6102"/>
+        <location filename="../UI/UserInterface.py" line="6105"/>
         <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="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <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="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <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="6610"/>
+        <location filename="../UI/UserInterface.py" line="6613"/>
         <source>Trying host {0}</source>
         <translation>Zkouším host {0}</translation>
     </message>
@@ -76821,7 +76826,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76861,27 +76866,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6667"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <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="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <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>
@@ -76967,12 +76972,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4922"/>
+        <location filename="../UI/UserInterface.py" line="4925"/>
         <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="6882"/>
+        <location filename="../UI/UserInterface.py" line="6885"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77347,7 +77352,7 @@
         <translation type="unfinished">Otevřít PyQt4 dokumentaci {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5369"/>
+        <location filename="../UI/UserInterface.py" line="5372"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Adresář PyQt4 dokumentace není nakonfigurován.&lt;/p&gt; {5 ?}</translation>
     </message>
@@ -77357,7 +77362,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77377,7 +77382,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6605"/>
+        <location filename="../UI/UserInterface.py" line="6608"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77447,27 +77452,27 @@
         <translation type="unfinished">&lt;b&gt;Eric API dokumentace&lt;/b&gt;&lt;p&gt;Zobrazit Eric API dokumentaci. Umístění dokumentace je v podadresáři Documentation/Source v instalačním adresáři eric5.&lt;/p&gt; {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt v.3 is not supported by eric6.</source>
         <translation type="unfinished">Qt v.3 není podporováno v eric5. {3 ?} {6.?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation type="unfinished">Aktualizace &lt;b&gt;{0}&lt;/b&gt; eric5 je připravena na &lt;b&gt;{1}&lt;/b&gt;. Chcete ji stáhnout a nainstalovat? {0}?} {6 ?} {1}?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>Eric6 is up to date</source>
         <translation type="unfinished">Eric5 je aktuální {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>You are using the latest version of eric6</source>
         <translation type="unfinished">Používáte poslední verzi eric6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
         <translation type="unfinished">eric5 nebyl ještě nakonfigurován. Bude spuštěn konfigurační dialog. {6 ?}</translation>
     </message>
@@ -77477,17 +77482,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3648"/>
+        <location filename="../UI/UserInterface.py" line="3651"/>
         <source>&amp;User Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3720"/>
+        <location filename="../UI/UserInterface.py" line="3723"/>
         <source>No User Tools Configured</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6621"/>
+        <location filename="../UI/UserInterface.py" line="6624"/>
         <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77532,7 +77537,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>Load session</source>
         <translation type="unfinished">Načíst relaci</translation>
     </message>
@@ -77547,17 +77552,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77572,17 +77577,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <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="6746"/>
+        <location filename="../UI/UserInterface.py" line="6749"/>
         <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77637,7 +77642,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82166,12 +82171,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="55"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="58"/>
         <source>Virtualenv Target Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="60"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="63"/>
         <source>Python Interpreter</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82610,52 +82615,52 @@
 <context>
     <name>VirtualenvManager</name>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>Add Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="173"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="185"/>
         <source>Change Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>Rename Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="270"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="304"/>
         <source>{0} - {1}</source>
         <translation type="unfinished">{0} - {1}</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Delete Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Do you really want to delete these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Remove Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Do you really want to remove these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -87198,12 +87203,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="388"/>
+        <location filename="../eric6.py" line="391"/>
         <source>Starting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="393"/>
+        <location filename="../eric6.py" line="396"/>
         <source>Generating Main Window...</source>
         <translation type="unfinished">Generování hlavního okna...</translation>
     </message>
Binary file i18n/eric6_de.qm has changed
--- a/i18n/eric6_de.ts	Tue Jun 26 18:39:14 2018 +0200
+++ b/i18n/eric6_de.ts	Tue Jun 26 18:50:04 2018 +0200
@@ -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>
@@ -1467,37 +1466,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="130"/>
+        <location filename="../Utilities/BackgroundService.py" line="132"/>
         <source>{0} not configured.</source>
         <translation>{0} nicht konfiguriert.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <source>Restart background client?</source>
         <translation>Hintergrund Client neu starten?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <source>Background client disconnected.</source>
         <translation>Hintergrund Client wurde getrennt.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="423"/>
+        <location filename="../Utilities/BackgroundService.py" line="427"/>
         <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="212"/>
+        <location filename="../Utilities/BackgroundService.py" line="214"/>
         <source>An error in Erics background client stopped the service.</source>
         <translation>Ein Fehler im Eric Hintergrunddienst hat den Dienst beendet.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <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="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <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>
@@ -1973,8 +1972,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"/>
@@ -2052,8 +2051,8 @@
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksToolBar.py" line="91"/>
-        <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="95"/>
@@ -2984,46 +2983,46 @@
         <translation>&lt;deaktiviert&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="281"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="285"/>
         <source>Main Menu</source>
         <translation>Hauptmenü</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="291"/>
-        <source>Rich Text</source>
-        <translation>Rich Text</translation>
-    </message>
-    <message>
         <location filename="../UI/CodeDocumentationViewer.py" line="296"/>
+        <source>Rich Text</source>
+        <translation>Rich Text</translation>
+    </message>
+    <message>
+        <location filename="../UI/CodeDocumentationViewer.py" line="304"/>
         <source>Plain Text</source>
         <translation>Normaler Text</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="471"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="480"/>
         <source>No documentation available</source>
         <translation>Keine Dokumentation verfügbar</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="498"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="507"/>
         <source>Definition: {0}{1}
 </source>
         <translation>Definition: {0}{1}
 </translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="501"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="510"/>
         <source>Definition: {0}
 </source>
         <translation>Definition: {0}
 </translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="548"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="557"/>
         <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="553"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="562"/>
         <source>This function has been disabled.</source>
         <translation>Diese Funktion wurde deaktiviert.</translation>
     </message>
@@ -3045,14 +3044,14 @@
         <translation>&lt;p&gt;&lt;b&gt;Hinweis:&lt;/b&gt; @NOTE@&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="509"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="518"/>
         <source>Type: {0}
 </source>
         <translation>Typ: {0}
 </translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="517"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="526"/>
         <source>Note: {0}
 </source>
         <translation>Hinweis: {0}
@@ -4472,329 +4471,329 @@
 <context>
     <name>ConfigurationWidget</name>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="136"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="143"/>
         <source>Application</source>
         <translation>Applikation</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="142"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="149"/>
         <source>CORBA</source>
         <translation>CORBA</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="148"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="155"/>
         <source>Email</source>
         <translation>E-Mail</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="151"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="158"/>
         <source>Graphics</source>
         <translation>Grafiken</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="157"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="164"/>
         <source>Icons</source>
         <translation>Icons</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="176"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
         <source>Plugin Manager</source>
         <translation>Pluginmanager</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="450"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
         <source>Printer</source>
         <translation>Drucker</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="186"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="193"/>
         <source>Python</source>
         <translation>Python</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="189"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="196"/>
         <source>Qt</source>
         <translation>Qt</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="195"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="202"/>
         <source>Shell</source>
         <translation>Shell</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="198"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="205"/>
         <source>Tasks</source>
         <translation>Aufgaben</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="201"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="208"/>
         <source>Templates</source>
         <translation>Vorlagen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="207"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="214"/>
         <source>Version Control Systems</source>
         <translation>Versionskontrollsysteme</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="212"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="219"/>
         <source>Debugger</source>
         <translation>Debugger</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="232"/>
         <source>Editor</source>
         <translation>Editor</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="235"/>
         <source>APIs</source>
         <translation>APIs</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="231"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="238"/>
         <source>Autocompletion</source>
         <translation>Automatische Vervollständigung</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="239"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="246"/>
         <source>Calltips</source>
         <translation>Calltips</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="248"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
         <source>General</source>
         <translation>Allgemein</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="268"/>
-        <source>Typing</source>
-        <translation>Eingabe</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="271"/>
-        <source>Exporters</source>
-        <translation>Exporter</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="275"/>
+        <source>Typing</source>
+        <translation>Eingabe</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="278"/>
+        <source>Exporters</source>
+        <translation>Exporter</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="282"/>
         <source>Highlighters</source>
         <translation>Syntaxhervorhebung</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="279"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="286"/>
         <source>Filetype Associations</source>
         <translation>Dateitypzuordnungen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="283"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="290"/>
         <source>Styles</source>
         <translation>Stile</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="299"/>
-        <source>Help</source>
-        <translation>Hilfe</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
-        <source>Help Documentation</source>
-        <translation>Hilfe Dokumentation</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="306"/>
+        <source>Help</source>
+        <translation>Hilfe</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="464"/>
+        <source>Help Documentation</source>
+        <translation>Hilfe Dokumentation</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="313"/>
         <source>Help Viewers</source>
         <translation>Hilfeanzeiger</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="317"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="324"/>
         <source>Project</source>
         <translation>Projekt</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="314"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="321"/>
         <source>Project Viewer</source>
         <translation>Projektanzeige</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="320"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="327"/>
         <source>Multiproject</source>
         <translation>Mehrfachprojekt</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="444"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="451"/>
         <source>Interface</source>
         <translation>Oberfläche</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="331"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="338"/>
         <source>Viewmanager</source>
         <translation>Ansichtenmanager</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <source>Configuration Page Error</source>
         <translation>Konfigurationsseitenfehler</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <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>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="251"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="258"/>
         <source>Filehandling</source>
         <translation>Dateibehandlung</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
-        <source>Searching</source>
-        <translation>Suchen</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="462"/>
-        <source>Appearance</source>
-        <translation>Erscheinung</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="242"/>
-        <source>QScintilla</source>
-        <translation>QScintilla</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="262"/>
+        <source>Searching</source>
+        <translation>Suchen</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <source>Appearance</source>
+        <translation>Erscheinung</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="249"/>
+        <source>QScintilla</source>
+        <translation>QScintilla</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="269"/>
         <source>Style</source>
         <translation>Stil</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="290"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="297"/>
         <source>Properties</source>
         <translation>Einstellungen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="646"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
         <source>Preferences</source>
         <translation>Einstellungen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="651"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="658"/>
         <source>Please select an entry of the list 
 to display the configuration page.</source>
         <translation>Wähle einen Listeneintrag aus,
 um die Konfigurationsseite anzuzeigen.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="447"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="454"/>
         <source>Network</source>
         <translation>Netzwerk</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="478"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="485"/>
         <source>Spell checking</source>
         <translation>Rechtschreibprüfung</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="221"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
         <source>Python3</source>
         <translation>Python 3</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="287"/>
-        <source>Keywords</source>
-        <translation>Schlüsselwörter</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="139"/>
-        <source>Cooperation</source>
-        <translation>Zusammenarbeit</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="494"/>
-        <source>Tray Starter</source>
-        <translation>Systemstarter</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="473"/>
-        <source>VirusTotal Interface</source>
-        <translation>VirusTotal-Schnittstelle</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="453"/>
-        <source>Security</source>
-        <translation>Sicherheit</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="172"/>
-        <source>Notifications</source>
-        <translation>Benachrichtigungen</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="160"/>
-        <source>IRC</source>
-        <translation>IRC</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="265"/>
-        <source>Code Checkers</source>
-        <translation>Quelltextprüfungen</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="465"/>
-        <source>eric6 Web Browser</source>
-        <translation>eric6-Webbrowser</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="163"/>
-        <source>Log-Viewer</source>
-        <translation>Ausgabefenster</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="166"/>
-        <source>Mimetypes</source>
-        <translation>MIME-Typen</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
-        <source>Enter search text...</source>
-        <translation>Suchtext eingeben...</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="294"/>
+        <source>Keywords</source>
+        <translation>Schlüsselwörter</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="146"/>
+        <source>Cooperation</source>
+        <translation>Zusammenarbeit</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="501"/>
+        <source>Tray Starter</source>
+        <translation>Systemstarter</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="480"/>
+        <source>VirusTotal Interface</source>
+        <translation>VirusTotal-Schnittstelle</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="460"/>
+        <source>Security</source>
+        <translation>Sicherheit</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="179"/>
+        <source>Notifications</source>
+        <translation>Benachrichtigungen</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="167"/>
+        <source>IRC</source>
+        <translation>IRC</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="272"/>
+        <source>Code Checkers</source>
+        <translation>Quelltextprüfungen</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="472"/>
+        <source>eric6 Web Browser</source>
+        <translation>eric6-Webbrowser</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="170"/>
+        <source>Log-Viewer</source>
+        <translation>Ausgabefenster</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="173"/>
+        <source>Mimetypes</source>
+        <translation>MIME-Typen</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="591"/>
+        <source>Enter search text...</source>
+        <translation>Suchtext eingeben...</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="301"/>
         <source>Mouse Click Handlers</source>
         <translation>Maus Klick Handlers</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="476"/>
         <source>Flash Cookie Manager</source>
         <translation>Flash Cookie Manager</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="507"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="514"/>
         <source>Hex Editor</source>
         <translation>Hex-Editor</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="364"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="371"/>
         <source>Web Browser</source>
         <translation>Web-Browser</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="145"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="152"/>
         <source>Diff</source>
         <translation>Diff</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="245"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="252"/>
         <source>Documentation Viewer</source>
         <translation>Dokumentationsanzeige</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="190"/>
         <source>Protobuf</source>
         <translation>Protobuf</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="218"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
         <source>Python2</source>
         <translation>Python 2</translation>
     </message>
@@ -5546,14 +5545,14 @@
         <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="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1603"/>
         <source>Passive debug connection received
 </source>
         <translation>Verbindung für passives Debuggen empfangen
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1613"/>
+        <location filename="../Debugger/DebugServer.py" line="1617"/>
         <source>Passive debug connection closed
 </source>
         <translation>Verbindung für passives Debuggen geschlossen
@@ -19602,22 +19601,22 @@
         <translation>Wähle das als Filter zu verwendende Feld</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
         <source>Author</source>
         <translation>Autor</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
         <source>Committer</source>
         <translation>Revisionsersteller</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1812"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1814"/>
         <source>Branch</source>
         <translation>Zweig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="106"/>
         <source>Subject</source>
         <translation>Betreff</translation>
     </message>
@@ -19687,178 +19686,178 @@
         <translation>Wähle eine Aktion aus dem Menü</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
         <source>&amp;Refresh</source>
         <translation>&amp;Aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="92"/>
         <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="198"/>
-        <source>Added</source>
-        <translation>Hinzugefügt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="199"/>
-        <source>Deleted</source>
-        <translation>Gelöscht</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="200"/>
-        <source>Modified</source>
-        <translation>Modifiziert</translation>
+        <source>Added</source>
+        <translation>Hinzugefügt</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="201"/>
-        <source>Copied</source>
-        <translation>Kopiert</translation>
+        <source>Deleted</source>
+        <translation>Gelöscht</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="202"/>
-        <source>Renamed</source>
-        <translation>Umbenannt</translation>
+        <source>Modified</source>
+        <translation>Modifiziert</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Type changed</source>
-        <translation>Typ geändert</translation>
+        <source>Copied</source>
+        <translation>Kopiert</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
+        <source>Renamed</source>
+        <translation>Umbenannt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
+        <source>Type changed</source>
+        <translation>Typ geändert</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
         <source>Unmerged</source>
         <translation>Nicht zusammengeführt</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
-        <source>Show Author Columns</source>
-        <translation>Autor Spalten anzeigen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="253"/>
+        <source>Show Author Columns</source>
+        <translation>Autor Spalten anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="255"/>
         <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="261"/>
-        <source>Show Committer Columns</source>
-        <translation>Revisionsersteller Spalten anzeigen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="263"/>
+        <source>Show Committer Columns</source>
+        <translation>Revisionsersteller Spalten anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="265"/>
         <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="313"/>
-        <source>Copy Commits</source>
-        <translation>Revisionen kopieren</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <source>Copy Commits</source>
+        <translation>Revisionen kopieren</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
         <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="320"/>
-        <source>Tag</source>
-        <translation>Marke setzen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <source>Tag</source>
+        <translation>Marke setzen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
         <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="326"/>
-        <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="328"/>
-        <source>Branch &amp;&amp; Switch</source>
-        <translation>Zweig erzeugen &amp;&amp; Umschalten</translation>
+        <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"/>
+        <source>Branch &amp;&amp; Switch</source>
+        <translation>Zweig erzeugen &amp;&amp; Umschalten</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
         <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="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>Switch</source>
         <translation>Umschalten</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
         <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="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Show Short Log</source>
         <translation>Kurzprotokoll anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="342"/>
+        <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="345"/>
-        <source>Describe</source>
-        <translation>Beschreibe</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Describe</source>
+        <translation>Beschreibe</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
         <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="648"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="650"/>
         <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="651"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="653"/>
         <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="654"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="656"/>
         <source>Git Error</source>
         <translation>Git Fehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="771"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation>{0} ({1}%)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <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="1725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1727"/>
         <source>Copy Changesets</source>
         <translation>Änderungssätze kopieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <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="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
         <source>Unknown</source>
         <translation>Unbekannt</translation>
     </message>
@@ -19868,17 +19867,17 @@
         <translation>Zweige</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Select a branch</source>
         <translation>Zweig auswählen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Select a default branch</source>
         <translation>Standardzweig auswählen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Branch &amp; Switch</source>
         <translation>Zweig erzeugen &amp; Umschalten</translation>
     </message>
@@ -19898,37 +19897,37 @@
         <translation>Drücken, um das nächste Vorkommen zu finden</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
         <source>Commit ID</source>
         <translation>Revisions-ID</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="98"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="100"/>
         <source>Find</source>
         <translation>Finden</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
         <source>Filter</source>
         <translation>Filtern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="140"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="142"/>
         <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="143"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="145"/>
         <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="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <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="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <source>Find Commit</source>
         <translation>Revision finden</translation>
     </message>
@@ -19938,7 +19937,7 @@
         <translation>Gib den regulären Ausdruck zum Filtern oder Suchen ein</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>File</source>
         <translation>Datei</translation>
     </message>
@@ -19963,7 +19962,7 @@
         <translation>Löschungen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2119"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2121"/>
         <source>Differences</source>
         <translation>Unterschiede</translation>
     </message>
@@ -19973,97 +19972,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="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="124"/>
         <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="134"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="136"/>
         <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="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="139"/>
         <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="146"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="148"/>
         <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="1275"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1277"/>
         <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="1287"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1289"/>
         <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="2133"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2135"/>
         <source>Differences to Parent {0}</source>
         <translation>Unterschiede zu Vorgänger {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2148"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
         <source>Diff to Parent {0}</source>
         <translation>Diff zu Vorgänger {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2174"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2176"/>
         <source>There is no difference.</source>
         <translation>Es gibt keinen Unterschied.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <source>Save Diff</source>
         <translation>Diff speichern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2303"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2305"/>
         <source>Patch Files (*.diff)</source>
         <translation>Patchdateien (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2320"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2322"/>
         <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="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <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="241"/>
-        <source>Show Commit ID Column</source>
-        <translation>Commit ID Spalte anzeigen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="243"/>
+        <source>Show Commit ID Column</source>
+        <translation>Commit ID Spalte anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="245"/>
         <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="271"/>
-        <source>Show Branches Column</source>
-        <translation>Zweige Spalte anzeigen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="273"/>
+        <source>Show Branches Column</source>
+        <translation>Zweige Spalte anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="275"/>
         <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="281"/>
-        <source>Show Tags Column</source>
-        <translation>Marken Spalte anzeigen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="283"/>
+        <source>Show Tags Column</source>
+        <translation>Marken Spalte anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="285"/>
         <source>Press to show the Tags column</source>
         <translation>Drücken, um die Marken Spalte anzuzeigen</translation>
     </message>
@@ -23185,7 +23184,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="395"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="397"/>
         <source>Git Status</source>
         <translation>Git Status</translation>
     </message>
@@ -23207,7 +23206,7 @@
         <translation>Wähle den Status anzuzeigender Einträge</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>Commit</source>
         <translation>Einpflegen</translation>
     </message>
@@ -23227,12 +23226,12 @@
         <translation>Pfad</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="199"/>
         <source>Commit the selected changes</source>
         <translation>Ausgewählte Änderungen einpflegen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="200"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="202"/>
         <source>Amend the latest commit with the selected changes</source>
         <translation>Letzte Revision mit ausgewählten Änderungen ergänzen</translation>
     </message>
@@ -23282,202 +23281,202 @@
         <translation>Alt+K</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="65"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
         <source>Refresh</source>
         <translation>Aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="69"/>
         <source>Press to refresh the status display</source>
         <translation>Drücken, um die Statusanzeige zu aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="202"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
         <source>Select all for commit</source>
         <translation>Alle zum Einpflegen auswählen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="213"/>
         <source>Stage changes</source>
         <translation>Änderungen vormerken</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="215"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="217"/>
         <source>Unstage changes</source>
         <translation>Vormerkung rückgängig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="242"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
         <source>Forget missing</source>
         <translation>Fehlende vergessen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="248"/>
         <source>Restore missing</source>
         <translation>Fehlende wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
         <source>Edit file</source>
         <translation>Datei bearbeiten</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="260"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="262"/>
         <source>Adjust column sizes</source>
         <translation>Spaltengrößen anpassen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
-        <source>added</source>
-        <translation>hinzugefügt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
-        <source>copied</source>
-        <translation>kopiert</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
-        <source>deleted</source>
-        <translation>gelöscht</translation>
+        <source>added</source>
+        <translation>hinzugefügt</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="172"/>
-        <source>modified</source>
-        <translation>modifiziert</translation>
+        <source>copied</source>
+        <translation>kopiert</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="173"/>
-        <source>renamed</source>
-        <translation>umbenannt</translation>
+        <source>deleted</source>
+        <translation>gelöscht</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="174"/>
+        <source>modified</source>
+        <translation>modifiziert</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="175"/>
+        <source>renamed</source>
+        <translation>umbenannt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="177"/>
         <source>not tracked</source>
         <translation>nicht versioniert</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="174"/>
-        <source>unmerged</source>
-        <translation>nicht zusammengeführt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmodified</source>
-        <translation>nicht verändert</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="176"/>
+        <source>unmerged</source>
+        <translation>nicht zusammengeführt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmodified</source>
+        <translation>nicht verändert</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="178"/>
         <source>ignored</source>
         <translation>ignoriert</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <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="596"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="598"/>
         <source>all</source>
         <translation>alle</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <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="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <source>Add</source>
         <translation>Hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <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="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>Stage</source>
         <translation>Vormerken</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <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="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>Unstage</source>
         <translation>Vormerkung rückgängig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <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="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
         <source>Forget Missing</source>
         <translation>Fehlende vergessen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <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="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>Revert</source>
         <translation>Rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <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="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <source>Restore Missing</source>
         <translation>Fehlende wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>Differences</source>
         <translation>Unterschiede</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <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="891"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="893"/>
         <source>Working Tree to Staging Area</source>
         <translation>Arbeitsverzeichnis nach Vormerkung</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="870"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872"/>
         <source>Staging Area to HEAD Commit</source>
         <translation>Vormerkung nach HEAD Revision</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="892"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation>Arbeitsverzeichnis nach HEAD Revision</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <source>Working Tree to HEAD Commit</source>
+        <translation>Arbeitsverzeichnis nach HEAD Revision</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Side-by-Side Difference</source>
         <translation>Unterschiede nebeneinander anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Select the compare method.</source>
         <translation>Vergleichsmethode auswählen.</translation>
     </message>
@@ -23492,47 +23491,47 @@
         <translation>Unterschied Vormerkung zu HEAD</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="107"/>
         <source>Stage Selected Lines</source>
         <translation>Ausgewählte Zeilen vormerken</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="111"/>
         <source>Revert Selected Lines</source>
         <translation>Ausgewählte Zeilen rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="115"/>
         <source>Stage Hunk</source>
         <translation>Abschnitt vormerken</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="119"/>
         <source>Revert Hunk</source>
         <translation>Abschnitt rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="123"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="125"/>
         <source>Unstage Selected Lines</source>
         <translation>Ausgewählte Zeilen nicht vormerken</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="127"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="129"/>
         <source>Unstage Hunk</source>
         <translation>Abschnitt nicht vormerken</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1201"/>
-        <source>Revert selected lines</source>
-        <translation>Ausgewählte Zeilen rückgängig machen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1203"/>
+        <source>Revert selected lines</source>
+        <translation>Ausgewählte Zeilen rückgängig machen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1205"/>
         <source>Revert hunk</source>
         <translation>Abschnitt rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1206"/>
         <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>
@@ -23542,67 +23541,67 @@
         <translation>Wähle eine Aktion aus dem Menü</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="198"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="200"/>
         <source>Amend</source>
         <translation>Ergänzen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
         <source>Unselect all from commit</source>
         <translation>Alle vom Einpflegen abwählen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="212"/>
         <source>Add the selected files</source>
         <translation>Ausgewählte Dateien hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="215"/>
         <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="217"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="219"/>
         <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="224"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226"/>
         <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="227"/>
-        <source>Differences Side-By-Side</source>
-        <translation>Unterschiede nebeneinander anzeigen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="229"/>
+        <source>Differences Side-By-Side</source>
+        <translation>Unterschiede nebeneinander anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="231"/>
         <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="237"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
         <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="244"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
         <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="248"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="250"/>
         <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="255"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257"/>
         <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="262"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="264"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation>Passt die Breite aller Spalten an ihren Inhalt an</translation>
     </message>
@@ -24803,357 +24802,357 @@
 <context>
     <name>HelpBrowser</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="976"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="979"/>
         <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es konnte kein Betrachter für die Datei &lt;b&gt;{0}&lt;/b&gt; gestartet werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="931"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="934"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert nicht.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="745"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="748"/>
         <source>&lt;b&gt;Help Window&lt;/b&gt;&lt;p&gt;This window displays the selected help information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hilfe Fenster&lt;/b&gt;&lt;p&gt;Dieses Fenster zeigt die ausgewählte Hilfe an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1518"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1521"/>
         <source>Web Inspector...</source>
         <translation>Web Inspektor...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2181"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2184"/>
         <source>Error loading page: {0}</source>
         <translation>Fehler beim Laden von: {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2199"/>
-        <source>When connecting to: {0}.</source>
-        <translation>Beim Verbinden zu: {0}.</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2202"/>
+        <source>When connecting to: {0}.</source>
+        <translation>Beim Verbinden zu: {0}.</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2205"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation>Überprüfen Sie die Adresse auf Fehler wie &lt;b&gt;ww&lt;/b&gt;.example.org statt &lt;b&gt;www&lt;/b&gt;.example.org</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2210"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation>Falls die Adresse stimmt, versuchen Sie, die Netzwerkverbindung zu überprüfen.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2214"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation>Wenn Ihr Computer oder Ihr Netzwerk durch eine Firewall oder einen Proxy geschützt ist, stellen Sie sicher, dass der Browser auf das Netzwerk zugreifen darf.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="956"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="959"/>
         <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es konnte keine Anwendung für die URL &lt;b&gt;{0}&lt;/b&gt; gestartet werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1424"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
         <source>Bookmark this Page</source>
         <translation>Lesezeichen für diese Seite hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1227"/>
-        <source>Save Lin&amp;k</source>
-        <translation>Lin&amp;k speichern</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1230"/>
+        <source>Save Lin&amp;k</source>
+        <translation>Lin&amp;k speichern</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1233"/>
         <source>Bookmark this Link</source>
         <translation>Lesezeichen für diesen Link hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1237"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
         <source>Copy Link to Clipboard</source>
         <translation>Link in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1258"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1261"/>
         <source>Open Image in New Tab</source>
         <translation>Bild in neuem Register öffnen</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1265"/>
-        <source>Save Image</source>
-        <translation>Bild speichern</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1268"/>
+        <source>Save Image</source>
+        <translation>Bild speichern</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1271"/>
         <source>Copy Image to Clipboard</source>
         <translation>Bild in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1270"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1273"/>
         <source>Copy Image Location to Clipboard</source>
         <translation>Bildadresse in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1283"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1286"/>
         <source>Block Image</source>
         <translation>Bild blockieren</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1457"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1460"/>
         <source>Search with...</source>
         <translation>Suchen mit...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>Web Database Quota</source>
         <translation>Webdatenbankquota</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>&lt;p&gt;The database quota of &lt;strong&gt;{0}&lt;/strong&gt; has been exceeded while accessing database &lt;strong&gt;{1}&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Shall it be changed?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Datenbankquota von &lt;strong&gt;{0}&lt;/strong&gt; wurde beim Zugriff auf die Datenbank &lt;strong&gt;{1}&lt;/strong&gt; überschritten.&lt;/p&gt;&lt;p&gt;Soll es geändert werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>New Web Database Quota</source>
         <translation>Neues Datenbankquota</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2297"/>
-        <source>bytes</source>
-        <translation>Bytes</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2300"/>
-        <source>kB</source>
-        <translation>kB</translation>
+        <source>bytes</source>
+        <translation>Bytes</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2303"/>
+        <source>kB</source>
+        <translation>kB</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2306"/>
         <source>MB</source>
         <translation>MB</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source>
         <translation>Gib das neue Quota in MB ein (aktuell = {0}, verbraucht = {1}; Schrittweite = 5 MB):</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1511"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1514"/>
         <source>Add to web search toolbar</source>
         <translation>Zur Websuchleiste hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>Method not supported</source>
         <translation>Methode nicht unterstützt</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>{0} method is not supported.</source>
         <translation>{0} Methode wird nicht unterstützt.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Search engine</source>
         <translation>Suchmaschine</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Choose the desired search engine</source>
         <translation>Wähle die gewünschte Suchmaschine aus</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Engine name</source>
         <translation>Suchmaschinenname</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Enter a name for the engine</source>
         <translation>Gib einen Namen für die Suchmaschine ein</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2217"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2220"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation>Wenn die Zwischenspeicher-Regelung auf Offline-Browsing steht, sind nur Seiten im lokalen Zwischenspeicher verfügbar.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1248"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1251"/>
         <source>Scan Link with VirusTotal</source>
         <translation>Link mit VirusTotal überprüfen</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1291"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1294"/>
         <source>Scan Image with VirusTotal</source>
         <translation>Bild mit VirusTotal überprüfen</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1243"/>
         <source>Send Link</source>
         <translation>Link verschicken</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1276"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1279"/>
         <source>Send Image Link</source>
         <translation>Link auf Bild verschicken</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1384"/>
-        <source>This Frame</source>
-        <translation>Dieser Rahmen</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1387"/>
-        <source>Show &amp;only this frame</source>
-        <translation>&amp;Nur diesen Rahmen anzeigen</translation>
+        <source>This Frame</source>
+        <translation>Dieser Rahmen</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1390"/>
+        <source>Show &amp;only this frame</source>
+        <translation>&amp;Nur diesen Rahmen anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1393"/>
         <source>Show in new &amp;tab</source>
         <translation>In neuem &amp;Register anzeigen</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1397"/>
-        <source>&amp;Print</source>
-        <translation>&amp;Drucken</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1400"/>
-        <source>Print Preview</source>
-        <translation>Druckvorschau</translation>
+        <source>&amp;Print</source>
+        <translation>&amp;Drucken</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1403"/>
+        <source>Print Preview</source>
+        <translation>Druckvorschau</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1406"/>
         <source>Print as PDF</source>
         <translation>Als PDF drucken</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1407"/>
-        <source>Zoom &amp;in</source>
-        <translation>Ver&amp;größern</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1410"/>
-        <source>Zoom &amp;reset</source>
-        <translation>Vergrößerung &amp;zurücksetzen</translation>
+        <source>Zoom &amp;in</source>
+        <translation>Ver&amp;größern</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1413"/>
+        <source>Zoom &amp;reset</source>
+        <translation>Vergrößerung &amp;zurücksetzen</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1416"/>
         <source>Zoom &amp;out</source>
         <translation>Ver&amp;kleinern</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1417"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1420"/>
         <source>Show frame so&amp;urce</source>
         <translation>Rahmen&amp;quelltext anzeigen</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1430"/>
         <source>Send Page Link</source>
         <translation>Link auf Seite verschicken</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1448"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1451"/>
         <source>Send Text</source>
         <translation>Text verschicken</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1482"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1485"/>
         <source>Google Translate</source>
         <translation>Google Übersetzer</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1491"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1494"/>
         <source>Dictionary</source>
         <translation>Wörterbuch</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1501"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1504"/>
         <source>Go to web address</source>
         <translation>Zur Web-Adresse springen</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1434"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1437"/>
         <source>User Agent</source>
         <translation>User Agent</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2222"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2225"/>
         <source>Try Again</source>
         <translation>Wiederholen</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1220"/>
-        <source>Open Link in New Tab	Ctrl+LMB</source>
-        <translation>Link in neuem Fenster öffnen	Strg+LMK</translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1311"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1223"/>
+        <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="../Helpviewer/HelpBrowserWV.py" line="1314"/>
         <source>Play</source>
         <translation>Abspielen</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1315"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1318"/>
         <source>Pause</source>
         <translation>Pause</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1319"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1322"/>
         <source>Unmute</source>
         <translation>Ton ein</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1323"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1326"/>
         <source>Mute</source>
         <translation>Stumm</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1327"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1330"/>
         <source>Copy Media Address to Clipboard</source>
         <translation>Medienadresse in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1333"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1336"/>
         <source>Send Media Address</source>
         <translation>Medienadresse verschicken</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1339"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1342"/>
         <source>Save Media</source>
         <translation>Medium speichern</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>eric6 Web Browser</source>
         <translation>eric6-Webbrowser</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5. Please upgrade.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Drucken ist wegen eine Fehlers in PyQt5 nicht verfügbar. Bitte aktualisieren.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2626"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2629"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5.Please upgrade.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Drucken ist wegen eine Fehlers in PyQt5 nicht verfügbar. Bitte aktualisieren.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1200"/>
-        <source>Add New Page</source>
-        <translation>Neue Seite hinzufügen</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1203"/>
+        <source>Add New Page</source>
+        <translation>Neue Seite hinzufügen</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1206"/>
         <source>Configure Speed Dial</source>
         <translation>Schnellwahleinstellungen</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1210"/>
         <source>Reload All Dials</source>
         <translation>Alle Schnellwahlen neu laden</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1214"/>
         <source>Reset to Default Dials</source>
         <translation>Alle Schnellwahlen zurücksetzen</translation>
     </message>
@@ -26452,82 +26451,82 @@
 <context>
     <name>HelpWebPage</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="376"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="379"/>
         <source>Error loading page: {0}</source>
         <translation>Fehler beim Laden von: {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="395"/>
-        <source>When connecting to: {0}.</source>
-        <translation>Beim Verbinden zu: {0}.</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="398"/>
+        <source>When connecting to: {0}.</source>
+        <translation>Beim Verbinden zu: {0}.</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="401"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation>Überprüfen Sie die Adresse auf Fehler wie &lt;b&gt;ww&lt;/b&gt;.example.org statt &lt;b&gt;www&lt;/b&gt;.example.org</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="403"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="406"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation>Falls die Adresse stimmt, versuchen Sie, die Netzwerkverbindung zu überprüfen.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="408"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="411"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation>Wenn Ihr Computer oder Ihr Netzwerk durch eine Firewall oder einen Proxy geschützt ist, stellen Sie sicher, dass der Browser auf das Netzwerk zugreifen darf.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="414"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="417"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation>Wenn die Zwischenspeicher-Regelung auf Offline-Browsing steht, sind nur Seiten im lokalen Zwischenspeicher verfügbar.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>Resending POST request</source>
         <translation>Erneutes Senden einer POST Anfrage</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>In order to display the site, the request along with all the data must be sent once again, which may lead to some unexpected behaviour of the site e.g. the same action might be performed once again. Do you want to continue anyway?</source>
         <translation>Um diese Seite anzeigen können, muss die Anfrage mit allen Daten erneut gesendet werden, was zu unerwartetem Verhalten der Seite führen kann, so könnte z.B. die selbe Aktion erneut ausgeführt werden. Möchten Sie trotzdem fortfahren?</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="419"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="422"/>
         <source>Try Again</source>
         <translation>Wiederholen</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="351"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="354"/>
         <source>Content blocked by AdBlock Plus</source>
         <translation>Inhalt blockiert durch AdBlock Plus</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="352"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="355"/>
         <source>Blocked by rule: &lt;i&gt;{0}&lt;/i&gt;</source>
         <translation>Blockiert durch Regel: &lt;i&gt;{0}&lt;/i&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="309"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="312"/>
         <source>Select files to upload...</source>
         <translation>Dateien zum Hochladen auswählen...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>SSL Info</source>
         <translation>SSL Information</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>This site does not contain SSL information.</source>
         <translation>Diese Seite enthält keine SSL Information.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Protocol Error</source>
         <translation>Protokollfehler</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Open external application for {0}-link?
 URL: {1}</source>
         <translation>{0}-Link in externer Anwendung öffnen?
@@ -42163,27 +42162,27 @@
 <context>
     <name>JavaScriptEricObject</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="150"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="153"/>
         <source>Search results provided by {0}</source>
         <translation>Suchergenisse durch {0} zur Verfügung gestellt</translation>
     </message>
     <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="114"/>
+        <source>Search!</source>
+        <translation>Suchen!</translation>
+    </message>
+    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
-        <source>Search!</source>
-        <translation>Suchen!</translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="108"/>
         <source>Welcome to eric6 Web Browser!</source>
         <translation>Willkommen beim eric6-Webbrowser!</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="110"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="113"/>
         <source>eric6 Web Browser</source>
         <translation>eric6-Webbrowser</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="112"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="115"/>
         <source>About eric6</source>
         <translation>Über eric6</translation>
     </message>
@@ -45088,12 +45087,12 @@
         <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="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <source>EditorConfig Properties</source>
         <translation>EditorConfig Eigenschaften</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <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>
@@ -49959,22 +49958,22 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="484"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="499"/>
         <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="653"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="668"/>
         <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="597"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="612"/>
         <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="681"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="696"/>
         <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>
@@ -49982,40 +49981,45 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="88"/>
         <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="76"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="87"/>
         <source>Enable JavaScript</source>
         <translation>JavaScript aktivieren</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="83"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="94"/>
         <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="81"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="92"/>
         <source>Enable Server Side Includes</source>
         <translation>Server Side Includes aktivieren</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="190"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="205"/>
         <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="252"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="267"/>
         <source>Preview - {0}</source>
         <translation>Vorschau – {0}</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="254"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="269"/>
         <source>Preview</source>
         <translation>Vorschau</translation>
     </message>
+    <message>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="70"/>
+        <source>&lt;b&gt;HTML Preview is not available!&lt;br/&gt;Install QtWebEngine or QtWebKit.&lt;/b&gt;</source>
+        <translation>&lt;b&gt;HTML Vorschau ist nicht verfügbar!&lt;br/&gt;Installiere QtWebEngine oder QtWebKit.&lt;/b&gt;</translation>
+    </message>
 </context>
 <context>
     <name>PreviewerQSS</name>
@@ -51965,7 +51969,7 @@
         <translation>Formular übersetzen...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="905"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="943"/>
         <source>Abort</source>
         <translation>Abbrechen</translation>
     </message>
@@ -52945,7 +52949,7 @@
         <translation>Übersetze Ressourcendateien...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="777"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="850"/>
         <source>Abort</source>
         <translation>Abbrechen</translation>
     </message>
@@ -61857,280 +61861,280 @@
 <context>
     <name>ShellWindow</name>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Quit</source>
         <translation>Beenden</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>&amp;Quit</source>
         <translation>B&amp;eenden</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="201"/>
         <source>Quit the Shell</source>
         <translation>Beenden der Shell</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="197"/>
+        <location filename="../QScintilla/ShellWindow.py" line="202"/>
         <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Beenden der Shell&lt;/b&gt;&lt;p&gt;Dies schließt das Shell Fenster.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New Window</source>
         <translation>Neues Fenster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New &amp;Window</source>
         <translation>Neues &amp;Fenster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="211"/>
+        <location filename="../QScintilla/ShellWindow.py" line="216"/>
         <source>Open a new Shell window</source>
         <translation>Öffne ein neues Shell Fenster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="213"/>
+        <location filename="../QScintilla/ShellWindow.py" line="218"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neues Fenster&lt;/b&gt;&lt;p&gt;Dies öffnet eine neue Instanz des Shell Fensters.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="220"/>
-        <source>Restart</source>
-        <translation>Neu starten</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="225"/>
+        <source>Restart</source>
+        <translation>Neu starten</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="230"/>
         <source>Restart the shell</source>
         <translation>Shell neu starten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="227"/>
+        <location filename="../QScintilla/ShellWindow.py" line="232"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neu starten&lt;/b&gt;&lt;p&gt;Dies startet die Shell für die aktuell ausgewählte Sprache neu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="234"/>
-        <source>Restart and Clear</source>
-        <translation>Neu starten und löschen</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="239"/>
+        <source>Restart and Clear</source>
+        <translation>Neu starten und löschen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="244"/>
         <source>Clear the window and restart the shell</source>
         <translation>Löscht das Fenster und startet die Shell neu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="241"/>
+        <location filename="../QScintilla/ShellWindow.py" line="246"/>
         <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neu starten und löschen&lt;/b&gt;&lt;p&gt;Löscht das Shell Fenster und startet die Shell für die aktuell ausgewählte Sprache neu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>Show History</source>
         <translation>Chronik anzeigen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>&amp;Show History...</source>
         <translation>Chronik &amp;anzeigen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="882"/>
+        <location filename="../QScintilla/ShellWindow.py" line="887"/>
         <source>Show the shell history in a dialog</source>
         <translation>Zeigt die Shell Chronik in einem Dialog an</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>Clear History</source>
         <translation>Chronik löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>&amp;Clear History...</source>
         <translation>Chronik &amp;löschen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="892"/>
+        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Clear the shell history</source>
         <translation>Löscht die Shell Chronik</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
+        <location filename="../QScintilla/ShellWindow.py" line="901"/>
         <source>Select History Entry</source>
         <translation>Chronikeintrag auswählen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
-        <source>Select History &amp;Entry</source>
-        <translation>Chronik&amp;eintrag auswählen</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
+        <source>Select History &amp;Entry</source>
+        <translation>Chronik&amp;eintrag auswählen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="906"/>
         <source>Select an entry of the shell history</source>
         <translation>Wählt einen Eintrag in der Shell Chronik aus</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>About</source>
         <translation>Über</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>&amp;About</source>
         <translation>Ü&amp;ber</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="913"/>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
         <source>Display information about this software</source>
         <translation>Zeigt Informationen zu diesem Programm an</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="915"/>
+        <location filename="../QScintilla/ShellWindow.py" line="920"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Über&lt;/b&gt;&lt;p&gt;Zeigt einige Informationen über dieses Programm an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About Qt</source>
         <translation>Über Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About &amp;Qt</source>
         <translation>Über &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="925"/>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Zeige Informationen über das Qt-Toolkit an</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="927"/>
+        <location filename="../QScintilla/ShellWindow.py" line="932"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Über Qt&lt;/b&gt;&lt;p&gt;Zeige Informationen über das Qt-Toolkit an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>What&apos;s This?</source>
         <translation>Was ist das?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Was ist das?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
+        <location filename="../QScintilla/ShellWindow.py" line="945"/>
         <source>Context sensitive help</source>
         <translation>Kontextsensitive Hilfe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="941"/>
+        <location filename="../QScintilla/ShellWindow.py" line="946"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zeige kontextsensitive Hilfe an&lt;b&gt;&lt;/p&gt;Im „Was ist das?“-Modus (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten HMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>About eric6 Shell Window</source>
         <translation>Über das eric6 Shell Fenster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation>Die eric6 Shell ist ein unabhängiges Shell Fenster. Es verwendet das gleiche Debugger Backend wie die vollständige IDE, wird aber unabhängig ausgeführt.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1105"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1110"/>
         <source>&amp;File</source>
         <translation>&amp;Datei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1114"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1119"/>
         <source>&amp;Edit</source>
         <translation>&amp;Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1125"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1130"/>
         <source>&amp;View</source>
         <translation>&amp;Ansicht</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1132"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
         <source>Histor&amp;y</source>
         <translation>&amp;Chronik</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1139"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1144"/>
         <source>&amp;Start</source>
         <translation>&amp;Starten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1145"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1150"/>
         <source>&amp;Help</source>
         <translation>&amp;Hilfe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1180"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1185"/>
         <source>File</source>
         <translation>Datei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1189"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1194"/>
         <source>Edit</source>
         <translation>Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
         <source>Find</source>
         <translation>Suchen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1202"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1207"/>
         <source>View</source>
         <translation>Anzeigen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1209"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1214"/>
         <source>History</source>
         <translation>Chronik</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1215"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1220"/>
         <source>Help</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1241"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste ermöglicht das Zoomen der Shell.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="570"/>
+        <location filename="../QScintilla/ShellWindow.py" line="575"/>
         <source>Move forward one history entry</source>
         <translation>Einen Chronikeintrag vorwärts</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="580"/>
+        <location filename="../QScintilla/ShellWindow.py" line="585"/>
         <source>Move back one history entry</source>
         <translation>Einen Chronikeintrag zurück</translation>
     </message>
@@ -73013,12 +73017,12 @@
         <translation>Zeige Versionen</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="523"/>
+        <location filename="../Tools/TrayStarter.py" line="526"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Versionsnummern&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="550"/>
+        <location filename="../Tools/TrayStarter.py" line="553"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
@@ -73604,27 +73608,27 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>Unittest</source>
         <translation>Modultest</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="269"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="271"/>
         <source>You must enter a test suite file.</source>
         <translation>Sie müssen eine Modultestdatei angeben.</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="277"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="279"/>
         <source>Preparing Testsuite</source>
         <translation>Bereite Modultest vor</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="520"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="522"/>
         <source>Failure: {0}</source>
         <translation>Misserfolge: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="535"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="537"/>
         <source>Error: {0}</source>
         <translation>Fehler: {0}</translation>
     </message>
@@ -73639,12 +73643,12 @@
         <translation>^Fehler: </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="475"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="477"/>
         <source>Running</source>
         <translation>Führe aus</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;{1}&lt;br&gt;{2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Modultest &lt;b&gt;{0}&lt;/b&gt; kann nicht ausgeführt werden.&lt;br&gt;{1}&lt;br&gt;{2}&lt;/p&gt;</translation>
     </message>
@@ -73822,27 +73826,27 @@
         <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="640"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="642"/>
         <source>Show Source</source>
         <translation>Zeige Quelltext</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="209"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="211"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>Python-Dateien (*.py);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="205"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="207"/>
         <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source>
         <translation>Python 3-Dateien ({1});;Python 2-Dateien ({0});;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="499"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="501"/>
         <source>Ran {0} test in {1:.3f}s</source>
         <translation>{0} Test in {1:.3f}s ausgeführt</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="503"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="505"/>
         <source>Ran {0} tests in {1:.3f}s</source>
         <translation>{0} Tests in {1:.3f}s ausgeführt</translation>
     </message>
@@ -73877,17 +73881,17 @@
         <translation>Anzahl der Tests, die unerwartet erfolgreich waren</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="550"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="552"/>
         <source>    Skipped: {0}</source>
         <translation>    Übersprungen: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="565"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="567"/>
         <source>    Expected Failure</source>
         <translation>    Erwarteter Mißerfolg</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="579"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="581"/>
         <source>    Unexpected Success</source>
         <translation>    Unerwarteter Erfolg</translation>
     </message>
@@ -74155,7 +74159,7 @@
         <translation>Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <source>Help</source>
         <translation>Hilfe</translation>
     </message>
@@ -74165,7 +74169,7 @@
         <translation>&amp;Werkzeugleisten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <source>Problem</source>
         <translation>Problem</translation>
     </message>
@@ -74185,7 +74189,7 @@
         <translation>&amp;Was ist das?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
@@ -74255,7 +74259,7 @@
         <translation>E&amp;xtras</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <source>Report Bug</source>
         <translation>Fehler berichten</translation>
     </message>
@@ -74275,7 +74279,7 @@
         <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="5846"/>
+        <location filename="../UI/UserInterface.py" line="5849"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Tastaturkurzbefehle exportieren</translation>
     </message>
@@ -74295,7 +74299,7 @@
         <translation>&lt;b&gt;Tastaturkurzbefehle exportieren&lt;/b&gt;&lt;p&gt;Exportiert die Tastaturkurzbefehle der Applikation.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Tastaturkurzbefehle importieren</translation>
     </message>
@@ -74385,7 +74389,7 @@
         <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="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <source>Unittest Project</source>
         <translation>Modultest (Projekt)</translation>
     </message>
@@ -74405,7 +74409,7 @@
         <translation>&amp;Modultests</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <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>
@@ -74455,7 +74459,7 @@
         <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="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <source>Drop Error</source>
         <translation>Drop-Fehler</translation>
     </message>
@@ -74525,32 +74529,32 @@
         <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="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <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="4548"/>
+        <location filename="../UI/UserInterface.py" line="4551"/>
         <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="4615"/>
+        <location filename="../UI/UserInterface.py" line="4618"/>
         <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="4666"/>
+        <location filename="../UI/UserInterface.py" line="4669"/>
         <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="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <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="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <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>
@@ -74575,7 +74579,7 @@
         <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="4776"/>
+        <location filename="../UI/UserInterface.py" line="4779"/>
         <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>
@@ -74600,7 +74604,7 @@
         <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="4831"/>
+        <location filename="../UI/UserInterface.py" line="4834"/>
         <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>
@@ -74640,47 +74644,47 @@
         <translation>Aufgabenanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>Save tasks</source>
         <translation>Aufgaben speichern</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Aufgabendatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geschrieben werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <source>Read tasks</source>
         <translation>Aufgaben lesen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <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="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <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="4708"/>
+        <location filename="../UI/UserInterface.py" line="4711"/>
         <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="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <source>Documentation Missing</source>
         <translation>Dokumentation fehlt</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <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="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <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>
@@ -74775,7 +74779,7 @@
         <translation>Öffne die Eric-API-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4728"/>
+        <location filename="../UI/UserInterface.py" line="4731"/>
         <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>
@@ -74851,61 +74855,61 @@
         <translation>Profile</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3628"/>
+        <location filename="../UI/UserInterface.py" line="3631"/>
         <source>&amp;Builtin Tools</source>
         <translation>&amp;Eingebaute Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4993"/>
+        <location filename="../UI/UserInterface.py" line="4996"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Starte Prozess „{0} {1}“.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5085"/>
+        <location filename="../UI/UserInterface.py" line="5088"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>Prozess „{0}“ ist beendet.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>Documentation</source>
         <translation>Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5303"/>
+        <location filename="../UI/UserInterface.py" line="5306"/>
         <source>&lt;p&gt;The PyQt4 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der PyQt4-Dokumentations-Startpunkt ist nicht konfiguriert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Error during updates check</source>
         <translation>Fehler während der Aktualisierungsprüfung</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>Update available</source>
         <translation>Aktualisierung verfügbar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3259"/>
+        <location filename="../UI/UserInterface.py" line="3262"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Versionsnummern&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6826"/>
+        <location filename="../UI/UserInterface.py" line="6829"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3673"/>
+        <location filename="../UI/UserInterface.py" line="3676"/>
         <source>Configure Tool Groups ...</source>
         <translation>Konfiguriere Werkzeuggruppen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3677"/>
+        <location filename="../UI/UserInterface.py" line="3680"/>
         <source>Configure current Tool Group ...</source>
         <translation>Konfiguriere aktuelle Werkzeuggruppe...</translation>
     </message>
@@ -74920,22 +74924,22 @@
         <translation>Zeige externe &amp;Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Could not perform updates check.</source>
         <translation>Konnte keine Aktualisierungsprüfung durchführen.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Abbrechen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6610"/>
+        <location filename="../UI/UserInterface.py" line="6613"/>
         <source>Trying host {0}</source>
         <translation>Prüfe Host {0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>First time usage</source>
         <translation>Erstmalige Nutzung</translation>
     </message>
@@ -74975,7 +74979,7 @@
         <translation>&amp;Plugininformationen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3645"/>
+        <location filename="../UI/UserInterface.py" line="3648"/>
         <source>&amp;Plugin Tools</source>
         <translation>&amp;Pluginwerkzeuge</translation>
     </message>
@@ -74995,12 +74999,12 @@
         <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="3793"/>
+        <location filename="../UI/UserInterface.py" line="3796"/>
         <source>&amp;Show all</source>
         <translation>Alle an&amp;zeigen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3795"/>
+        <location filename="../UI/UserInterface.py" line="3798"/>
         <source>&amp;Hide all</source>
         <translation>Alle &amp;ausblenden</translation>
     </message>
@@ -75030,7 +75034,7 @@
         <translation>Zeige die verfügbaren eric-Versionen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6812"/>
+        <location filename="../UI/UserInterface.py" line="6815"/>
         <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>
@@ -75115,17 +75119,17 @@
         <translation>Externe Werkzeuge/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>External Tools</source>
         <translation>Externe Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4945"/>
+        <location filename="../UI/UserInterface.py" line="4948"/>
         <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="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation>Kein Werkzeuggruppeneintrag „{0}“ gefunden.</translation>
     </message>
@@ -75140,22 +75144,22 @@
         <translation>&amp;Mehrfachprojektanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6165"/>
+        <location filename="../UI/UserInterface.py" line="6168"/>
         <source>Save session</source>
         <translation>Sitzung speichern</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6102"/>
+        <location filename="../UI/UserInterface.py" line="6105"/>
         <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="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <source>Read session</source>
         <translation>Sitzung lesen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <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>
@@ -75225,12 +75229,12 @@
         <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="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>Restart application</source>
         <translation>Anwendung neu starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>The application needs to be restarted. Do it now?</source>
         <translation>Die Anwendung muss neu gestartet werden. Jetzt durchführen?</translation>
     </message>
@@ -75375,7 +75379,7 @@
         <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="4852"/>
+        <location filename="../UI/UserInterface.py" line="4855"/>
         <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>
@@ -75390,7 +75394,7 @@
         <translation>&amp;Icon-Editor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt 3 support</source>
         <translation>Qt3-Unterstützung</translation>
     </message>
@@ -75440,7 +75444,7 @@
         <translation>Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation>Tastaturkurzbefehlsdatei (*.e4k)</translation>
     </message>
@@ -75480,27 +75484,27 @@
         <translation>&lt;b&gt;Python 2-Dokumentation&lt;/b&gt;&lt;p&gt;Zeigt die Python 2-Dokumentation an. Ist kein Dokumentationsverzeichnis konfiguriert, so ist der Ort, an dem die Python 2-Dokumentation gesucht wird, unter Windows das Verzeichnis &lt;i&gt;doc&lt;/i&gt; unter dem Verzeichnis, in dem der konfigurierte Python 2-Interpreter installiert ist, und unter Unix das Verzeichnis &lt;i&gt;/usr/share/doc/packages/python/html/python-docs-html&lt;/i&gt;. Um dies zu überschreiben, können Sie die Umgebungsvariable PYTHON2DOCDIR setzen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <source>Error getting versions information</source>
         <translation>Fehler beim Herunterladen der Versionsinformationen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6667"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <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="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Open Browser</source>
         <translation>Browser starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Could not start a web browser</source>
         <translation>Der Systemwebbrowser konnte nicht gestartet werden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <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>
@@ -75586,12 +75590,12 @@
         <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="4922"/>
+        <location filename="../UI/UserInterface.py" line="4925"/>
         <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="6882"/>
+        <location filename="../UI/UserInterface.py" line="6885"/>
         <source>Select Workspace Directory</source>
         <translation>Wähle Arbeitsverzeichnis</translation>
     </message>
@@ -75966,7 +75970,7 @@
         <translation>Öffne die PyQt5-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5369"/>
+        <location filename="../UI/UserInterface.py" line="5372"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der PyQt5-Dokumentations-Startpunkt ist nicht konfiguriert.&lt;/p&gt;</translation>
     </message>
@@ -75976,7 +75980,7 @@
         <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="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>%v/%m</source>
         <translation>%v/%m</translation>
     </message>
@@ -75996,7 +76000,7 @@
         <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="6605"/>
+        <location filename="../UI/UserInterface.py" line="6608"/>
         <source>Version Check</source>
         <translation>Versionsprüfung</translation>
     </message>
@@ -76067,27 +76071,27 @@
         <translation>&lt;b&gt;Eric-API-Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die Eric-API-Dokumentation an. Der Pfad für die Dokumentation ist das Unterverzeichnis Documentation/Source im eric6-Installationverzeichnis.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt v.3 is not supported by eric6.</source>
         <translation>Qt v.3 wird von eric6 nicht unterstützt.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation>Eine Aktualisierung auf &lt;b&gt;{0}&lt;/b&gt; von Eric6 ist unter &lt;b&gt;{1}&lt;/b&gt; verfügbar. Wollen Sie sie laden?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>Eric6 is up to date</source>
         <translation>Eric6 ist aktuell</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>You are using the latest version of eric6</source>
         <translation>Sie verwenden die aktuellste Version von eric6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
         <translation>eric6 wurde noch nicht konfiguriert. Der Konfigurationsdialog wird nun gestartet.</translation>
     </message>
@@ -76097,17 +76101,17 @@
         <translation>Erzeuge Werkzeugleisten der Plug-ins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3648"/>
+        <location filename="../UI/UserInterface.py" line="3651"/>
         <source>&amp;User Tools</source>
         <translation>&amp;Benutzerwerkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3720"/>
+        <location filename="../UI/UserInterface.py" line="3723"/>
         <source>No User Tools Configured</source>
         <translation>Keine Benutzerwerkzeuge konfiguriert</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6621"/>
+        <location filename="../UI/UserInterface.py" line="6624"/>
         <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
         <translation>Die Versionsinformationen konnten nicht heruntergeladen werden, da sie &lt;b&gt;nicht verbunden&lt;/b&gt; sind. Bitte gehen Sie online und versuchen Sie es erneut.</translation>
     </message>
@@ -76152,7 +76156,7 @@
         <translation>&lt;b&gt;Sitzung speichern...&lt;/b&gt;&lt;p&gt;Dies speichert die aktuelle Sitzung in eine Datei. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>Load session</source>
         <translation>Sitzung laden</translation>
     </message>
@@ -76167,17 +76171,17 @@
         <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="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation>eric6 Sitzungsdateien (*.e5s)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>Crash Session found!</source>
         <translation>Absturzsitzung gefunden!</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <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>
@@ -76192,17 +76196,17 @@
         <translation>Initialisiere Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <source>Update Check</source>
         <translation>Aktualisierungsprüfung</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <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="6746"/>
+        <location filename="../UI/UserInterface.py" line="6749"/>
         <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
         <translation>Sie verwenden ein Snapshot-Release von eri6. Eine neueres, stabiles Release könnte verfügbar sein.</translation>
     </message>
@@ -76257,7 +76261,7 @@
         <translation>&lt;b&gt;PySide2-Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die PySide2-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Webbrowser, ein externer Webbrowser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <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>
@@ -80765,12 +80769,12 @@
         <translation>Gib den Python Interpreter der virtuellen Umgebung ein</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="55"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="58"/>
         <source>Virtualenv Target Directory</source>
         <translation>Zielverzeichnis der virtullen Umgebung</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="60"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="63"/>
         <source>Python Interpreter</source>
         <translation>Python Interpreter</translation>
     </message>
@@ -81231,52 +81235,52 @@
 <context>
     <name>VirtualenvManager</name>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>Add Virtual Environment</source>
         <translation>Virtuelle Umgebung hinzufügen</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
         <translation>Eine virtuelle Umgebung mit Namen &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Soll sie ersetzt werden?</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="173"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="185"/>
         <source>Change Virtual Environment</source>
         <translation>Virtuelle Umgebung ändern</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
         <translation>Eine virtuelle Umgebung mit Namen &lt;b&gt;{0}&lt;/b&gt; existiert nicht. Abbruch!</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>Rename Virtual Environment</source>
         <translation>Virtuelle Umgebung umbenennen</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="270"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="304"/>
         <source>{0} - {1}</source>
         <translation>{0} – {1}</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Delete Virtual Environments</source>
         <translation>Virtuelle Umgebung löschen</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Do you really want to delete these virtual environments?</source>
         <translation>Sollen diese virtuellen Umgebungen wirklich gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Remove Virtual Environments</source>
         <translation>Virtuelle Umgebung entfernen</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Do you really want to remove these virtual environments?</source>
         <translation>Sollen diese virtuellen Umgebungen wirklich entfernt werden?</translation>
     </message>
@@ -83112,8 +83116,8 @@
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserView.py" line="636"/>
-        <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="642"/>
@@ -85820,12 +85824,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="388"/>
+        <location filename="../eric6.py" line="391"/>
         <source>Starting...</source>
         <translation>Starte...</translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="393"/>
+        <location filename="../eric6.py" line="396"/>
         <source>Generating Main Window...</source>
         <translation>Erzeuge das Hauptfenster...</translation>
     </message>
--- a/i18n/eric6_empty.ts	Tue Jun 26 18:39:14 2018 +0200
+++ b/i18n/eric6_empty.ts	Tue Jun 26 18:50:04 2018 +0200
@@ -1450,37 +1450,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="130"/>
+        <location filename="../Utilities/BackgroundService.py" line="132"/>
         <source>{0} not configured.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <source>Restart background client?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <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="212"/>
+        <location filename="../Utilities/BackgroundService.py" line="214"/>
         <source>An error in Erics background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="423"/>
+        <location filename="../Utilities/BackgroundService.py" line="427"/>
         <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="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <source>Background client disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <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>
@@ -2950,44 +2950,44 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="281"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="285"/>
         <source>Main Menu</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="291"/>
-        <source>Rich Text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/CodeDocumentationViewer.py" line="296"/>
+        <source>Rich Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/CodeDocumentationViewer.py" line="304"/>
         <source>Plain Text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="471"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="480"/>
         <source>No documentation available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="498"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="507"/>
         <source>Definition: {0}{1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="501"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="510"/>
         <source>Definition: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="548"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="557"/>
         <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="553"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="562"/>
         <source>This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3009,13 +3009,13 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="509"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="518"/>
         <source>Type: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="517"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="526"/>
         <source>Note: {0}
 </source>
         <translation type="unfinished"></translation>
@@ -4418,328 +4418,328 @@
 <context>
     <name>ConfigurationWidget</name>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="136"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="143"/>
         <source>Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="139"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="146"/>
         <source>Cooperation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="142"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="149"/>
         <source>CORBA</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="148"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="155"/>
         <source>Email</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="151"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="158"/>
         <source>Graphics</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="507"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="514"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="157"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="164"/>
         <source>Icons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="160"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="167"/>
         <source>IRC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="163"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="170"/>
         <source>Log-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="166"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="173"/>
         <source>Mimetypes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="447"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="454"/>
         <source>Network</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="172"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="179"/>
         <source>Notifications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="176"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
         <source>Plugin Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="450"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
         <source>Printer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="186"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="193"/>
         <source>Python</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="189"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="196"/>
         <source>Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="453"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="460"/>
         <source>Security</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="195"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="202"/>
         <source>Shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="198"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="205"/>
         <source>Tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="201"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="208"/>
         <source>Templates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="494"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="501"/>
         <source>Tray Starter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="207"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="214"/>
         <source>Version Control Systems</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="212"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="219"/>
         <source>Debugger</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="248"/>
-        <source>General</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="221"/>
-        <source>Python3</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
-        <source>Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
-        <source>APIs</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="231"/>
-        <source>Autocompletion</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="242"/>
-        <source>QScintilla</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="239"/>
-        <source>Calltips</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="251"/>
-        <source>Filehandling</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
-        <source>Searching</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="478"/>
-        <source>Spell checking</source>
+        <source>General</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
+        <source>Python3</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="232"/>
+        <source>Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="235"/>
+        <source>APIs</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="238"/>
+        <source>Autocompletion</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="249"/>
+        <source>QScintilla</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="246"/>
+        <source>Calltips</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="258"/>
+        <source>Filehandling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="262"/>
+        <source>Searching</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="485"/>
+        <source>Spell checking</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="269"/>
         <source>Style</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="265"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="272"/>
         <source>Code Checkers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="268"/>
-        <source>Typing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="271"/>
-        <source>Exporters</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="275"/>
+        <source>Typing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="278"/>
+        <source>Exporters</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="282"/>
         <source>Highlighters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="279"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="286"/>
         <source>Filetype Associations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="283"/>
-        <source>Styles</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="287"/>
-        <source>Keywords</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="290"/>
-        <source>Properties</source>
+        <source>Styles</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="294"/>
+        <source>Keywords</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="297"/>
+        <source>Properties</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="301"/>
         <source>Mouse Click Handlers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="299"/>
-        <source>Help</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
-        <source>Help Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="306"/>
+        <source>Help</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="464"/>
+        <source>Help Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="313"/>
         <source>Help Viewers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="317"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="324"/>
         <source>Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="314"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="321"/>
         <source>Project Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="320"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="327"/>
         <source>Multiproject</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="444"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="451"/>
         <source>Interface</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="331"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="338"/>
         <source>Viewmanager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="364"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="371"/>
         <source>Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="462"/>
-        <source>Appearance</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="465"/>
-        <source>eric6 Web Browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <source>Appearance</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="472"/>
+        <source>eric6 Web Browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="476"/>
         <source>Flash Cookie Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="473"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="480"/>
         <source>VirusTotal Interface</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="591"/>
         <source>Enter search text...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="646"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
         <source>Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="651"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="658"/>
         <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="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <source>Configuration Page Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <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>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="145"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="152"/>
         <source>Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="245"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="252"/>
         <source>Documentation Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="190"/>
         <source>Protobuf</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="218"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
         <source>Python2</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5498,13 +5498,13 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1603"/>
         <source>Passive debug connection received
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1613"/>
+        <location filename="../Debugger/DebugServer.py" line="1617"/>
         <source>Passive debug connection closed
 </source>
         <translation type="unfinished"></translation>
@@ -19432,12 +19432,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
         <source>Commit ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
         <source>Author</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19447,7 +19447,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
         <source>Committer</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19457,7 +19457,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="106"/>
         <source>Subject</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19532,7 +19532,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2119"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2121"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19592,328 +19592,328 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="92"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="98"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="100"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
         <source>Filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="124"/>
         <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="134"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="136"/>
         <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="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="139"/>
         <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="140"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="142"/>
         <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="143"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="145"/>
         <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="146"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="148"/>
         <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="198"/>
-        <source>Added</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="199"/>
-        <source>Deleted</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="200"/>
-        <source>Modified</source>
+        <source>Added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="201"/>
-        <source>Copied</source>
+        <source>Deleted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="202"/>
-        <source>Renamed</source>
+        <source>Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Type changed</source>
+        <source>Copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Unmerged</source>
+        <source>Renamed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
+        <source>Type changed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
+        <source>Unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
         <source>Unknown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="241"/>
-        <source>Show Commit ID Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="243"/>
+        <source>Show Commit ID Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="245"/>
         <source>Press to show the commit ID column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
-        <source>Show Author Columns</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="253"/>
+        <source>Show Author Columns</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="255"/>
         <source>Press to show the author columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
-        <source>Show Committer Columns</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="263"/>
+        <source>Show Committer Columns</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="265"/>
         <source>Press to show the committer columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
-        <source>Show Branches Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="273"/>
+        <source>Show Branches Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="275"/>
         <source>Press to show the branches column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
-        <source>Show Tags Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="283"/>
+        <source>Show Tags Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="285"/>
         <source>Press to show the Tags column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="313"/>
-        <source>Copy Commits</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <source>Copy Commits</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
         <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="320"/>
-        <source>Tag</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <source>Tag</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
         <source>Tag the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1812"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1814"/>
         <source>Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="326"/>
-        <source>Create a new branch at the selected commit.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
-        <source>Branch &amp;&amp; Switch</source>
+        <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"/>
+        <source>Branch &amp;&amp; Switch</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
         <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="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
         <source>Switch the working directory to the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Show Short Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="342"/>
+        <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="345"/>
-        <source>Describe</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Describe</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
         <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="648"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="650"/>
         <source>The git process did not finish within 30s.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="651"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="653"/>
         <source>Could not start the git executable.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="654"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="656"/>
         <source>Git Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="771"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <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="1275"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1277"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1287"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1289"/>
         <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="1725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1727"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Select a branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Select a default branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Branch &amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2133"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2135"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2148"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
         <source>Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2174"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2176"/>
         <source>There is no difference.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <source>Save Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2303"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2305"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2320"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2322"/>
         <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="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <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>
@@ -23025,7 +23025,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="395"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="397"/>
         <source>Git Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23051,7 +23051,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>Commit</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23126,322 +23126,322 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="65"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
         <source>Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="69"/>
         <source>Press to refresh the status display</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="107"/>
         <source>Stage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="111"/>
         <source>Revert Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="115"/>
         <source>Stage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="119"/>
         <source>Revert Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="123"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="125"/>
         <source>Unstage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="127"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="129"/>
         <source>Unstage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
-        <source>added</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
-        <source>copied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
-        <source>deleted</source>
+        <source>added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="172"/>
-        <source>modified</source>
+        <source>copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="173"/>
-        <source>renamed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="175"/>
-        <source>not tracked</source>
+        <source>deleted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="174"/>
-        <source>unmerged</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmodified</source>
+        <source>modified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="175"/>
+        <source>renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="177"/>
+        <source>not tracked</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="176"/>
+        <source>unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmodified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="178"/>
         <source>ignored</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="199"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="198"/>
-        <source>Amend</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="200"/>
-        <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="202"/>
-        <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="204"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
         <source>Unselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <source>Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="212"/>
         <source>Add the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="211"/>
-        <source>Stage changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="213"/>
-        <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="215"/>
-        <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="217"/>
+        <source>Unstage changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="219"/>
         <source>Unstages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="224"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226"/>
         <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="227"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="229"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="231"/>
         <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="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>Revert</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>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="242"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
-        <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="246"/>
-        <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="248"/>
+        <source>Restore missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="250"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
-        <source>Edit file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
+        <source>Edit file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257"/>
         <source>Edit the selected conflicting file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="260"/>
-        <source>Adjust column sizes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="262"/>
+        <source>Adjust column sizes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="264"/>
         <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="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <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="596"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="598"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>Stage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>There are no stageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>Unstage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
         <source>Forget Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <source>Restore Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="891"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="893"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="870"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872"/>
         <source>Staging Area to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="892"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <source>Working Tree to HEAD Commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Side-by-Side Difference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Select the compare method.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1201"/>
-        <source>Revert selected lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1203"/>
+        <source>Revert selected lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1205"/>
         <source>Revert hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1206"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -24634,357 +24634,357 @@
 <context>
     <name>HelpBrowser</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="745"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="748"/>
         <source>&lt;b&gt;Help Window&lt;/b&gt;&lt;p&gt;This window displays the selected help information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>eric6 Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="931"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="934"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="976"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="979"/>
         <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="956"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="959"/>
         <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1200"/>
-        <source>Add New Page</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1203"/>
+        <source>Add New Page</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1206"/>
         <source>Configure Speed Dial</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1210"/>
         <source>Reload All Dials</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1214"/>
         <source>Reset to Default Dials</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1220"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1223"/>
         <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1227"/>
-        <source>Save Lin&amp;k</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1230"/>
+        <source>Save Lin&amp;k</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1233"/>
         <source>Bookmark this Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1237"/>
-        <source>Copy Link to Clipboard</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
+        <source>Copy Link to Clipboard</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1243"/>
         <source>Send Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1248"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1251"/>
         <source>Scan Link with VirusTotal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1258"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1261"/>
         <source>Open Image in New Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1265"/>
-        <source>Save Image</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1268"/>
+        <source>Save Image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1271"/>
         <source>Copy Image to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1270"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1273"/>
         <source>Copy Image Location to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1276"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1279"/>
         <source>Send Image Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1283"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1286"/>
         <source>Block Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1291"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1294"/>
         <source>Scan Image with VirusTotal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1311"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1314"/>
         <source>Play</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1315"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1318"/>
         <source>Pause</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1319"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1322"/>
         <source>Unmute</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1323"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1326"/>
         <source>Mute</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1327"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1330"/>
         <source>Copy Media Address to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1333"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1336"/>
         <source>Send Media Address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1339"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1342"/>
         <source>Save Media</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1384"/>
-        <source>This Frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1387"/>
-        <source>Show &amp;only this frame</source>
+        <source>This Frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1390"/>
+        <source>Show &amp;only this frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1393"/>
         <source>Show in new &amp;tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1397"/>
-        <source>&amp;Print</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1400"/>
-        <source>Print Preview</source>
+        <source>&amp;Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1403"/>
+        <source>Print Preview</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1406"/>
         <source>Print as PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1407"/>
-        <source>Zoom &amp;in</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1410"/>
-        <source>Zoom &amp;reset</source>
+        <source>Zoom &amp;in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1413"/>
+        <source>Zoom &amp;reset</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1416"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1417"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1420"/>
         <source>Show frame so&amp;urce</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1424"/>
-        <source>Bookmark this Page</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
+        <source>Bookmark this Page</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1430"/>
         <source>Send Page Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1434"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1437"/>
         <source>User Agent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1448"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1451"/>
         <source>Send Text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1457"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1460"/>
         <source>Search with...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1482"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1485"/>
         <source>Google Translate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1491"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1494"/>
         <source>Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1501"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1504"/>
         <source>Go to web address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1511"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1514"/>
         <source>Add to web search toolbar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1518"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1521"/>
         <source>Web Inspector...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>Method not supported</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>{0} method is not supported.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Search engine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Choose the desired search engine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Engine name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Enter a name for the engine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2181"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2184"/>
         <source>Error loading page: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2199"/>
-        <source>When connecting to: {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2202"/>
+        <source>When connecting to: {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2205"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2210"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2214"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2217"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2220"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2222"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2225"/>
         <source>Try Again</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>Web Database Quota</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>&lt;p&gt;The database quota of &lt;strong&gt;{0}&lt;/strong&gt; has been exceeded while accessing database &lt;strong&gt;{1}&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Shall it be changed?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>New Web Database Quota</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2297"/>
-        <source>bytes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2300"/>
-        <source>kB</source>
+        <source>bytes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2303"/>
+        <source>kB</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2306"/>
         <source>MB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5. Please upgrade.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2626"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2629"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5.Please upgrade.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26276,83 +26276,83 @@
 <context>
     <name>HelpWebPage</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>Resending POST request</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>In order to display the site, the request along with all the data must be sent once again, which may lead to some unexpected behaviour of the site e.g. the same action might be performed once again. Do you want to continue anyway?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="309"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="312"/>
         <source>Select files to upload...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Protocol Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Open external application for {0}-link?
 URL: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="351"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="354"/>
         <source>Content blocked by AdBlock Plus</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="352"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="355"/>
         <source>Blocked by rule: &lt;i&gt;{0}&lt;/i&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="376"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="379"/>
         <source>Error loading page: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="395"/>
-        <source>When connecting to: {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="398"/>
+        <source>When connecting to: {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="401"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="403"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="406"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="408"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="411"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="414"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="417"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="419"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="422"/>
         <source>Try Again</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>SSL Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>This site does not contain SSL information.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41922,27 +41922,27 @@
 <context>
     <name>JavaScriptEricObject</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="108"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
         <source>Welcome to eric6 Web Browser!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="110"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="113"/>
         <source>eric6 Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="114"/>
         <source>Search!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="112"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="115"/>
         <source>About eric6</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="150"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="153"/>
         <source>Search results provided by {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44845,12 +44845,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <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>
@@ -49706,22 +49706,22 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="484"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="499"/>
         <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="597"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="612"/>
         <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="653"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="668"/>
         <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="681"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="696"/>
         <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>
@@ -49729,40 +49729,45 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="76"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="87"/>
         <source>Enable JavaScript</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="88"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="81"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="92"/>
         <source>Enable Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="83"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="94"/>
         <source>Select to enable support for Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="190"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="205"/>
         <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="252"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="267"/>
         <source>Preview - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="254"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="269"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="70"/>
+        <source>&lt;b&gt;HTML Preview is not available!&lt;br/&gt;Install QtWebEngine or QtWebKit.&lt;/b&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PreviewerQSS</name>
@@ -51931,7 +51936,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="905"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="943"/>
         <source>Abort</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52706,7 +52711,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="777"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="850"/>
         <source>Abort</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61357,280 +61362,280 @@
 <context>
     <name>ShellWindow</name>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>&amp;Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="201"/>
         <source>Quit the Shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="197"/>
+        <location filename="../QScintilla/ShellWindow.py" line="202"/>
         <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="211"/>
+        <location filename="../QScintilla/ShellWindow.py" line="216"/>
         <source>Open a new Shell window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="213"/>
+        <location filename="../QScintilla/ShellWindow.py" line="218"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="220"/>
-        <source>Restart</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="225"/>
+        <source>Restart</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="230"/>
         <source>Restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="227"/>
+        <location filename="../QScintilla/ShellWindow.py" line="232"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="234"/>
-        <source>Restart and Clear</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="239"/>
+        <source>Restart and Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="244"/>
         <source>Clear the window and restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="241"/>
+        <location filename="../QScintilla/ShellWindow.py" line="246"/>
         <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>Show History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>&amp;Show History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="882"/>
+        <location filename="../QScintilla/ShellWindow.py" line="887"/>
         <source>Show the shell history in a dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>Clear History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>&amp;Clear History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="892"/>
+        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Clear the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
+        <location filename="../QScintilla/ShellWindow.py" line="901"/>
         <source>Select History Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
-        <source>Select History &amp;Entry</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
+        <source>Select History &amp;Entry</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="906"/>
         <source>Select an entry of the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>&amp;About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="913"/>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
         <source>Display information about this software</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="915"/>
+        <location filename="../QScintilla/ShellWindow.py" line="920"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="925"/>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="927"/>
+        <location filename="../QScintilla/ShellWindow.py" line="932"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
+        <location filename="../QScintilla/ShellWindow.py" line="945"/>
         <source>Context sensitive help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="941"/>
+        <location filename="../QScintilla/ShellWindow.py" line="946"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>About eric6 Shell Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1105"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1110"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1114"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1119"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1125"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1130"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1132"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
         <source>Histor&amp;y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1139"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1144"/>
         <source>&amp;Start</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1145"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1150"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1180"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1185"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1189"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1194"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1202"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1207"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1209"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1214"/>
         <source>History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1215"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1220"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1241"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="570"/>
+        <location filename="../QScintilla/ShellWindow.py" line="575"/>
         <source>Move forward one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="580"/>
+        <location filename="../QScintilla/ShellWindow.py" line="585"/>
         <source>Move back one history entry</source>
         <translation type="unfinished"></translation>
     </message>
@@ -72396,12 +72401,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="523"/>
+        <location filename="../Tools/TrayStarter.py" line="526"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="550"/>
+        <location filename="../Tools/TrayStarter.py" line="553"/>
         <source>&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -72987,7 +72992,7 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>Unittest</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73233,72 +73238,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="205"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="207"/>
         <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="209"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="211"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="269"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="271"/>
         <source>You must enter a test suite file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="277"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="279"/>
         <source>Preparing Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;{1}&lt;br&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="475"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="477"/>
         <source>Running</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="499"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="501"/>
         <source>Ran {0} test in {1:.3f}s</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="503"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="505"/>
         <source>Ran {0} tests in {1:.3f}s</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="520"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="522"/>
         <source>Failure: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="535"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="537"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="550"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="552"/>
         <source>    Skipped: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="565"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="567"/>
         <source>    Expected Failure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="579"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="581"/>
         <source>    Unexpected Success</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="640"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="642"/>
         <source>Show Source</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74177,7 +74182,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <source>Report Bug</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74297,7 +74302,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <source>Unittest Project</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74702,7 +74707,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5846"/>
+        <location filename="../UI/UserInterface.py" line="5849"/>
         <source>Export Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74722,7 +74727,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Import Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75102,7 +75107,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75157,359 +75162,359 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3259"/>
+        <location filename="../UI/UserInterface.py" line="3262"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6826"/>
+        <location filename="../UI/UserInterface.py" line="6829"/>
         <source>&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <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="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>Restart application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>The application needs to be restarted. Do it now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3628"/>
+        <location filename="../UI/UserInterface.py" line="3631"/>
         <source>&amp;Builtin Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3645"/>
-        <source>&amp;Plugin Tools</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="3648"/>
+        <source>&amp;Plugin Tools</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3651"/>
         <source>&amp;User Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3673"/>
+        <location filename="../UI/UserInterface.py" line="3676"/>
         <source>Configure Tool Groups ...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3677"/>
+        <location filename="../UI/UserInterface.py" line="3680"/>
         <source>Configure current Tool Group ...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3720"/>
+        <location filename="../UI/UserInterface.py" line="3723"/>
         <source>No User Tools Configured</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3793"/>
+        <location filename="../UI/UserInterface.py" line="3796"/>
         <source>&amp;Show all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3795"/>
+        <location filename="../UI/UserInterface.py" line="3798"/>
         <source>&amp;Hide all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt 3 support</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt v.3 is not supported by eric6.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <source>Problem</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <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="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4548"/>
+        <location filename="../UI/UserInterface.py" line="4551"/>
         <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="4615"/>
+        <location filename="../UI/UserInterface.py" line="4618"/>
         <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="4666"/>
+        <location filename="../UI/UserInterface.py" line="4669"/>
         <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="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <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="4708"/>
+        <location filename="../UI/UserInterface.py" line="4711"/>
         <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="4728"/>
+        <location filename="../UI/UserInterface.py" line="4731"/>
         <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="4776"/>
+        <location filename="../UI/UserInterface.py" line="4779"/>
         <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="4831"/>
+        <location filename="../UI/UserInterface.py" line="4834"/>
         <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="4852"/>
+        <location filename="../UI/UserInterface.py" line="4855"/>
         <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="4922"/>
+        <location filename="../UI/UserInterface.py" line="4925"/>
         <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="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>External Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4945"/>
+        <location filename="../UI/UserInterface.py" line="4948"/>
         <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="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4993"/>
+        <location filename="../UI/UserInterface.py" line="4996"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <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="5085"/>
+        <location filename="../UI/UserInterface.py" line="5088"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <source>Documentation Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <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="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5303"/>
+        <location filename="../UI/UserInterface.py" line="5306"/>
         <source>&lt;p&gt;The PyQt4 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5369"/>
+        <location filename="../UI/UserInterface.py" line="5372"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>Save tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <source>Read tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <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="6165"/>
+        <location filename="../UI/UserInterface.py" line="6168"/>
         <source>Save session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6102"/>
+        <location filename="../UI/UserInterface.py" line="6105"/>
         <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="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <source>Read session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <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="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <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="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>&amp;Cancel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6605"/>
+        <location filename="../UI/UserInterface.py" line="6608"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6610"/>
+        <location filename="../UI/UserInterface.py" line="6613"/>
         <source>Trying host {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6621"/>
+        <location filename="../UI/UserInterface.py" line="6624"/>
         <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6667"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <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="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <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="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>Update available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>Eric6 is up to date</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>You are using the latest version of eric6</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Error during updates check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Could not perform updates check.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6812"/>
+        <location filename="../UI/UserInterface.py" line="6815"/>
         <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="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>First time usage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6882"/>
+        <location filename="../UI/UserInterface.py" line="6885"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75524,7 +75529,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>Load session</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75539,17 +75544,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75564,17 +75569,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <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="6746"/>
+        <location filename="../UI/UserInterface.py" line="6749"/>
         <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75629,7 +75634,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80120,12 +80125,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="55"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="58"/>
         <source>Virtualenv Target Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="60"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="63"/>
         <source>Python Interpreter</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80564,52 +80569,52 @@
 <context>
     <name>VirtualenvManager</name>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>Add Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="173"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="185"/>
         <source>Change Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>Rename Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="270"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="304"/>
         <source>{0} - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Delete Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Do you really want to delete these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Remove Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Do you really want to remove these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -85125,12 +85130,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="388"/>
+        <location filename="../eric6.py" line="391"/>
         <source>Starting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="393"/>
+        <location filename="../eric6.py" line="396"/>
         <source>Generating Main Window...</source>
         <translation type="unfinished"></translation>
     </message>
--- a/i18n/eric6_en.ts	Tue Jun 26 18:39:14 2018 +0200
+++ b/i18n/eric6_en.ts	Tue Jun 26 18:50:04 2018 +0200
@@ -1450,37 +1450,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="130"/>
+        <location filename="../Utilities/BackgroundService.py" line="132"/>
         <source>{0} not configured.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <source>Restart background client?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="212"/>
+        <location filename="../Utilities/BackgroundService.py" line="214"/>
         <source>An error in Erics background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="423"/>
+        <location filename="../Utilities/BackgroundService.py" line="427"/>
         <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="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <source>Background client disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <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="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <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>
@@ -2950,44 +2950,44 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="281"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="285"/>
         <source>Main Menu</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="291"/>
-        <source>Rich Text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/CodeDocumentationViewer.py" line="296"/>
+        <source>Rich Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/CodeDocumentationViewer.py" line="304"/>
         <source>Plain Text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="471"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="480"/>
         <source>No documentation available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="498"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="507"/>
         <source>Definition: {0}{1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="501"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="510"/>
         <source>Definition: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="548"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="557"/>
         <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="553"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="562"/>
         <source>This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3009,13 +3009,13 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="509"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="518"/>
         <source>Type: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="517"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="526"/>
         <source>Note: {0}
 </source>
         <translation type="unfinished"></translation>
@@ -4425,328 +4425,328 @@
 <context>
     <name>ConfigurationWidget</name>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="136"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="143"/>
         <source>Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="139"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="146"/>
         <source>Cooperation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="142"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="149"/>
         <source>CORBA</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="148"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="155"/>
         <source>Email</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="151"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="158"/>
         <source>Graphics</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="157"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="164"/>
         <source>Icons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="447"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="454"/>
         <source>Network</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="176"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
         <source>Plugin Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="450"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
         <source>Printer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="186"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="193"/>
         <source>Python</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="189"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="196"/>
         <source>Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="195"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="202"/>
         <source>Shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="198"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="205"/>
         <source>Tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="201"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="208"/>
         <source>Templates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="207"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="214"/>
         <source>Version Control Systems</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="212"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="219"/>
         <source>Debugger</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="248"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
         <source>General</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="221"/>
-        <source>Python3</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
-        <source>Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
+        <source>Python3</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="232"/>
+        <source>Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="235"/>
         <source>APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="231"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="238"/>
         <source>Autocompletion</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="242"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="249"/>
         <source>QScintilla</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="239"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="246"/>
         <source>Calltips</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="251"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="258"/>
         <source>Filehandling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
-        <source>Searching</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="478"/>
-        <source>Spell checking</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="262"/>
+        <source>Searching</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="485"/>
+        <source>Spell checking</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="269"/>
         <source>Style</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="268"/>
-        <source>Typing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="271"/>
-        <source>Exporters</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="275"/>
+        <source>Typing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="278"/>
+        <source>Exporters</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="282"/>
         <source>Highlighters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="279"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="286"/>
         <source>Filetype Associations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="283"/>
-        <source>Styles</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="287"/>
-        <source>Keywords</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="290"/>
+        <source>Styles</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="294"/>
+        <source>Keywords</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="297"/>
         <source>Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="299"/>
-        <source>Help</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="462"/>
-        <source>Appearance</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
-        <source>Help Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="306"/>
-        <source>Help Viewers</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="317"/>
-        <source>Project</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="314"/>
-        <source>Project Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="320"/>
-        <source>Multiproject</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="444"/>
-        <source>Interface</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="331"/>
-        <source>Viewmanager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="646"/>
-        <source>Preferences</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="651"/>
-        <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="724"/>
-        <source>Configuration Page Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
-        <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>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="494"/>
-        <source>Tray Starter</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="473"/>
-        <source>VirusTotal Interface</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="453"/>
-        <source>Security</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="172"/>
-        <source>Notifications</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="160"/>
-        <source>IRC</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="265"/>
-        <source>Code Checkers</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="465"/>
-        <source>eric6 Web Browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="163"/>
-        <source>Log-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="166"/>
-        <source>Mimetypes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
-        <source>Enter search text...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="294"/>
-        <source>Mouse Click Handlers</source>
+        <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <source>Appearance</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="464"/>
+        <source>Help Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="313"/>
+        <source>Help Viewers</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="324"/>
+        <source>Project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="321"/>
+        <source>Project Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="327"/>
+        <source>Multiproject</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="451"/>
+        <source>Interface</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="338"/>
+        <source>Viewmanager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <source>Preferences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="658"/>
+        <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="731"/>
+        <source>Configuration Page Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
+        <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>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="501"/>
+        <source>Tray Starter</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="480"/>
+        <source>VirusTotal Interface</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="460"/>
+        <source>Security</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="179"/>
+        <source>Notifications</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="167"/>
+        <source>IRC</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="272"/>
+        <source>Code Checkers</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="472"/>
+        <source>eric6 Web Browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="170"/>
+        <source>Log-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="173"/>
+        <source>Mimetypes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="591"/>
+        <source>Enter search text...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="301"/>
+        <source>Mouse Click Handlers</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="476"/>
         <source>Flash Cookie Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="507"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="514"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="364"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="371"/>
         <source>Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="145"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="152"/>
         <source>Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="245"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="252"/>
         <source>Documentation Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="190"/>
         <source>Protobuf</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="218"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
         <source>Python2</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5495,13 +5495,13 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1603"/>
         <source>Passive debug connection received
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1613"/>
+        <location filename="../Debugger/DebugServer.py" line="1617"/>
         <source>Passive debug connection closed
 </source>
         <translation type="unfinished"></translation>
@@ -19471,22 +19471,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
         <source>Author</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
         <source>Committer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1812"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1814"/>
         <source>Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="106"/>
         <source>Subject</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19556,178 +19556,178 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="92"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="198"/>
-        <source>Added</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="199"/>
-        <source>Deleted</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="200"/>
-        <source>Modified</source>
+        <source>Added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="201"/>
-        <source>Copied</source>
+        <source>Deleted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="202"/>
-        <source>Renamed</source>
+        <source>Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Type changed</source>
+        <source>Copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
+        <source>Renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
+        <source>Type changed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
         <source>Unmerged</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
-        <source>Show Author Columns</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="253"/>
+        <source>Show Author Columns</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="255"/>
         <source>Press to show the author columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
-        <source>Show Committer Columns</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="263"/>
+        <source>Show Committer Columns</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="265"/>
         <source>Press to show the committer columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="313"/>
-        <source>Copy Commits</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <source>Copy Commits</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
         <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="320"/>
-        <source>Tag</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <source>Tag</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
         <source>Tag the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="326"/>
-        <source>Create a new branch at the selected commit.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
-        <source>Branch &amp;&amp; Switch</source>
+        <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"/>
+        <source>Branch &amp;&amp; Switch</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
         <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="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
         <source>Switch the working directory to the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Show Short Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="342"/>
+        <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="345"/>
-        <source>Describe</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Describe</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
         <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="648"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="650"/>
         <source>The git process did not finish within 30s.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="651"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="653"/>
         <source>Could not start the git executable.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="654"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="656"/>
         <source>Git Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="771"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <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="1725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1727"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
         <source>Unknown</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19737,17 +19737,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Select a branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Select a default branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Branch &amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19767,37 +19767,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
         <source>Commit ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="98"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="100"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
         <source>Filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="140"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="142"/>
         <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="143"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="145"/>
         <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="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19807,7 +19807,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19832,7 +19832,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2119"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2121"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19842,97 +19842,97 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="124"/>
         <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="134"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="136"/>
         <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="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="139"/>
         <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="146"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="148"/>
         <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="1275"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1277"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1287"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1289"/>
         <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="2133"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2135"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2148"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
         <source>Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2174"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2176"/>
         <source>There is no difference.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <source>Save Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2303"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2305"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2320"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2322"/>
         <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="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <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="241"/>
-        <source>Show Commit ID Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="243"/>
+        <source>Show Commit ID Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="245"/>
         <source>Press to show the commit ID column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
-        <source>Show Branches Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="273"/>
+        <source>Show Branches Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="275"/>
         <source>Press to show the branches column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
-        <source>Show Tags Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="283"/>
+        <source>Show Tags Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="285"/>
         <source>Press to show the Tags column</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23047,7 +23047,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="395"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="397"/>
         <source>Git Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23068,7 +23068,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>Commit</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23088,12 +23088,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="199"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="200"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="202"/>
         <source>Amend the latest commit with the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23143,202 +23143,202 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="65"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
         <source>Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="69"/>
         <source>Press to refresh the status display</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>Select all for commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="213"/>
         <source>Stage changes</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>Unstage changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="242"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
         <source>Forget missing</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>Restore missing</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>Edit file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="260"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="262"/>
         <source>Adjust column sizes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
-        <source>added</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
-        <source>copied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
-        <source>deleted</source>
+        <source>added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="172"/>
-        <source>modified</source>
+        <source>copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="173"/>
-        <source>renamed</source>
+        <source>deleted</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="174"/>
+        <source>modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="175"/>
+        <source>renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="177"/>
         <source>not tracked</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="174"/>
-        <source>unmerged</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmodified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="176"/>
+        <source>unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmodified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="178"/>
         <source>ignored</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <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="596"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="598"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <source>Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>Stage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>There are no stageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>Unstage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
         <source>Forget Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>Revert</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <source>Restore Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="891"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="893"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="870"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872"/>
         <source>Staging Area to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="892"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <source>Working Tree to HEAD Commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Side-by-Side Difference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Select the compare method.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23353,47 +23353,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="107"/>
         <source>Stage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="111"/>
         <source>Revert Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="115"/>
         <source>Stage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="119"/>
         <source>Revert Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="123"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="125"/>
         <source>Unstage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="127"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="129"/>
         <source>Unstage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1201"/>
-        <source>Revert selected lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1203"/>
+        <source>Revert selected lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1205"/>
         <source>Revert hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1206"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23403,67 +23403,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="198"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="200"/>
         <source>Amend</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>Unselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="212"/>
         <source>Add the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="215"/>
         <source>Stages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="217"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="219"/>
         <source>Unstages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="224"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226"/>
         <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="227"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="229"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="231"/>
         <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="237"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
         <source>Reverts the changes of the selected files</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>Forgets about the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="248"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="250"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257"/>
         <source>Edit the selected conflicting file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="262"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="264"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation type="unfinished"></translation>
     </message>
@@ -24656,357 +24656,357 @@
 <context>
     <name>HelpBrowser</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="745"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="748"/>
         <source>&lt;b&gt;Help Window&lt;/b&gt;&lt;p&gt;This window displays the selected help information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="931"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="934"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="976"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="979"/>
         <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="956"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="959"/>
         <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1220"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1223"/>
         <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1227"/>
-        <source>Save Lin&amp;k</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1230"/>
+        <source>Save Lin&amp;k</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1233"/>
         <source>Bookmark this Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1237"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
         <source>Copy Link to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1258"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1261"/>
         <source>Open Image in New Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1265"/>
-        <source>Save Image</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1268"/>
+        <source>Save Image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1271"/>
         <source>Copy Image to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1270"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1273"/>
         <source>Copy Image Location to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1283"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1286"/>
         <source>Block Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1424"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
         <source>Bookmark this Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1457"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1460"/>
         <source>Search with...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1511"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1514"/>
         <source>Add to web search toolbar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1518"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1521"/>
         <source>Web Inspector...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>Method not supported</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>{0} method is not supported.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Search engine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Choose the desired search engine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Engine name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Enter a name for the engine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2181"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2184"/>
         <source>Error loading page: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2199"/>
-        <source>When connecting to: {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2202"/>
+        <source>When connecting to: {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2205"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2210"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2214"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2217"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2220"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>Web Database Quota</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>&lt;p&gt;The database quota of &lt;strong&gt;{0}&lt;/strong&gt; has been exceeded while accessing database &lt;strong&gt;{1}&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Shall it be changed?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>New Web Database Quota</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2297"/>
-        <source>bytes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2300"/>
-        <source>kB</source>
+        <source>bytes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2303"/>
+        <source>kB</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2306"/>
         <source>MB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1248"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1251"/>
         <source>Scan Link with VirusTotal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1291"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1294"/>
         <source>Scan Image with VirusTotal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1243"/>
         <source>Send Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1276"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1279"/>
         <source>Send Image Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1384"/>
-        <source>This Frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1387"/>
-        <source>Show &amp;only this frame</source>
+        <source>This Frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1390"/>
+        <source>Show &amp;only this frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1393"/>
         <source>Show in new &amp;tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1397"/>
-        <source>&amp;Print</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1400"/>
-        <source>Print Preview</source>
+        <source>&amp;Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1403"/>
+        <source>Print Preview</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1406"/>
         <source>Print as PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1407"/>
-        <source>Zoom &amp;in</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1410"/>
-        <source>Zoom &amp;reset</source>
+        <source>Zoom &amp;in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1413"/>
+        <source>Zoom &amp;reset</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1416"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1417"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1420"/>
         <source>Show frame so&amp;urce</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1430"/>
         <source>Send Page Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1448"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1451"/>
         <source>Send Text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1482"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1485"/>
         <source>Google Translate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1491"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1494"/>
         <source>Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1501"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1504"/>
         <source>Go to web address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1434"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1437"/>
         <source>User Agent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2222"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2225"/>
         <source>Try Again</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1311"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1314"/>
         <source>Play</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1315"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1318"/>
         <source>Pause</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1319"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1322"/>
         <source>Unmute</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1323"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1326"/>
         <source>Mute</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1327"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1330"/>
         <source>Copy Media Address to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1333"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1336"/>
         <source>Send Media Address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1339"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1342"/>
         <source>Save Media</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>eric6 Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5. Please upgrade.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2626"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2629"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5.Please upgrade.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1200"/>
-        <source>Add New Page</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1203"/>
+        <source>Add New Page</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1206"/>
         <source>Configure Speed Dial</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1210"/>
         <source>Reload All Dials</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1214"/>
         <source>Reset to Default Dials</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26301,82 +26301,82 @@
 <context>
     <name>HelpWebPage</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="376"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="379"/>
         <source>Error loading page: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="395"/>
-        <source>When connecting to: {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="398"/>
+        <source>When connecting to: {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="401"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="403"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="406"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="408"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="411"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="414"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="417"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>Resending POST request</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>In order to display the site, the request along with all the data must be sent once again, which may lead to some unexpected behaviour of the site e.g. the same action might be performed once again. Do you want to continue anyway?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="419"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="422"/>
         <source>Try Again</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="351"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="354"/>
         <source>Content blocked by AdBlock Plus</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="352"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="355"/>
         <source>Blocked by rule: &lt;i&gt;{0}&lt;/i&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="309"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="312"/>
         <source>Select files to upload...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>SSL Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>This site does not contain SSL information.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Protocol Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Open external application for {0}-link?
 URL: {1}</source>
         <translation type="unfinished"></translation>
@@ -41967,27 +41967,27 @@
 <context>
     <name>JavaScriptEricObject</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="114"/>
         <source>Search!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="150"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="153"/>
         <source>Search results provided by {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="108"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
         <source>Welcome to eric6 Web Browser!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="110"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="113"/>
         <source>eric6 Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="112"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="115"/>
         <source>About eric6</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44890,12 +44890,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <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>
@@ -49753,22 +49753,22 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="484"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="499"/>
         <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="653"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="668"/>
         <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="597"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="612"/>
         <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="681"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="696"/>
         <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>
@@ -49776,40 +49776,45 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="88"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="76"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="87"/>
         <source>Enable JavaScript</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="83"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="94"/>
         <source>Select to enable support for 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="92"/>
         <source>Enable Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="190"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="205"/>
         <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="252"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="267"/>
         <source>Preview - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="254"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="269"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="70"/>
+        <source>&lt;b&gt;HTML Preview is not available!&lt;br/&gt;Install QtWebEngine or QtWebKit.&lt;/b&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PreviewerQSS</name>
@@ -51929,7 +51934,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="905"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="943"/>
         <source>Abort</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52754,7 +52759,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="777"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="850"/>
         <source>Abort</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61406,280 +61411,280 @@
 <context>
     <name>ShellWindow</name>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>&amp;Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="201"/>
         <source>Quit the Shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="197"/>
+        <location filename="../QScintilla/ShellWindow.py" line="202"/>
         <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="211"/>
+        <location filename="../QScintilla/ShellWindow.py" line="216"/>
         <source>Open a new Shell window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="213"/>
+        <location filename="../QScintilla/ShellWindow.py" line="218"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="220"/>
-        <source>Restart</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="225"/>
+        <source>Restart</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="230"/>
         <source>Restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="227"/>
+        <location filename="../QScintilla/ShellWindow.py" line="232"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="234"/>
-        <source>Restart and Clear</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="239"/>
+        <source>Restart and Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="244"/>
         <source>Clear the window and restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="241"/>
+        <location filename="../QScintilla/ShellWindow.py" line="246"/>
         <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>Show History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>&amp;Show History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="882"/>
+        <location filename="../QScintilla/ShellWindow.py" line="887"/>
         <source>Show the shell history in a dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>Clear History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>&amp;Clear History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="892"/>
+        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Clear the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
+        <location filename="../QScintilla/ShellWindow.py" line="901"/>
         <source>Select History Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
-        <source>Select History &amp;Entry</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
+        <source>Select History &amp;Entry</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="906"/>
         <source>Select an entry of the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>&amp;About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="913"/>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
         <source>Display information about this software</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="915"/>
+        <location filename="../QScintilla/ShellWindow.py" line="920"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="925"/>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="927"/>
+        <location filename="../QScintilla/ShellWindow.py" line="932"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
+        <location filename="../QScintilla/ShellWindow.py" line="945"/>
         <source>Context sensitive help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="941"/>
+        <location filename="../QScintilla/ShellWindow.py" line="946"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>About eric6 Shell Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1105"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1110"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1114"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1119"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1125"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1130"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1132"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
         <source>Histor&amp;y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1139"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1144"/>
         <source>&amp;Start</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1145"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1150"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1180"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1185"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1189"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1194"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1202"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1207"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1209"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1214"/>
         <source>History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1215"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1220"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1241"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="570"/>
+        <location filename="../QScintilla/ShellWindow.py" line="575"/>
         <source>Move forward one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="580"/>
+        <location filename="../QScintilla/ShellWindow.py" line="585"/>
         <source>Move back one history entry</source>
         <translation type="unfinished"></translation>
     </message>
@@ -72446,12 +72451,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="523"/>
+        <location filename="../Tools/TrayStarter.py" line="526"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="550"/>
+        <location filename="../Tools/TrayStarter.py" line="553"/>
         <source>&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73037,7 +73042,7 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>Unittest</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73218,57 +73223,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="205"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="207"/>
         <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="209"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="211"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="269"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="271"/>
         <source>You must enter a test suite file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="277"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="279"/>
         <source>Preparing Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;{1}&lt;br&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="475"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="477"/>
         <source>Running</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="499"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="501"/>
         <source>Ran {0} test in {1:.3f}s</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="503"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="505"/>
         <source>Ran {0} tests in {1:.3f}s</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="520"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="522"/>
         <source>Failure: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="535"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="537"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="640"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="642"/>
         <source>Show Source</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73303,17 +73308,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="550"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="552"/>
         <source>    Skipped: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="565"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="567"/>
         <source>    Expected Failure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="579"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="581"/>
         <source>    Unexpected Success</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73901,7 +73906,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <source>Report Bug</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74001,7 +74006,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <source>Unittest Project</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74286,7 +74291,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5846"/>
+        <location filename="../UI/UserInterface.py" line="5849"/>
         <source>Export Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74306,7 +74311,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Import Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74551,7 +74556,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74601,269 +74606,269 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3259"/>
+        <location filename="../UI/UserInterface.py" line="3262"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6826"/>
+        <location filename="../UI/UserInterface.py" line="6829"/>
         <source>&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <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="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>Restart application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>The application needs to be restarted. Do it now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3673"/>
+        <location filename="../UI/UserInterface.py" line="3676"/>
         <source>Configure Tool Groups ...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3677"/>
+        <location filename="../UI/UserInterface.py" line="3680"/>
         <source>Configure current Tool Group ...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3628"/>
+        <location filename="../UI/UserInterface.py" line="3631"/>
         <source>&amp;Builtin Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3645"/>
+        <location filename="../UI/UserInterface.py" line="3648"/>
         <source>&amp;Plugin Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3793"/>
+        <location filename="../UI/UserInterface.py" line="3796"/>
         <source>&amp;Show all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3795"/>
+        <location filename="../UI/UserInterface.py" line="3798"/>
         <source>&amp;Hide all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt 3 support</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <source>Problem</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <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="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4548"/>
+        <location filename="../UI/UserInterface.py" line="4551"/>
         <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="4615"/>
+        <location filename="../UI/UserInterface.py" line="4618"/>
         <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="4666"/>
+        <location filename="../UI/UserInterface.py" line="4669"/>
         <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="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <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="4708"/>
+        <location filename="../UI/UserInterface.py" line="4711"/>
         <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="4728"/>
+        <location filename="../UI/UserInterface.py" line="4731"/>
         <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="4776"/>
+        <location filename="../UI/UserInterface.py" line="4779"/>
         <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="4831"/>
+        <location filename="../UI/UserInterface.py" line="4834"/>
         <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="4852"/>
+        <location filename="../UI/UserInterface.py" line="4855"/>
         <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="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>External Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4945"/>
+        <location filename="../UI/UserInterface.py" line="4948"/>
         <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="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4993"/>
+        <location filename="../UI/UserInterface.py" line="4996"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <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="5085"/>
+        <location filename="../UI/UserInterface.py" line="5088"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <source>Documentation Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <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="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5303"/>
+        <location filename="../UI/UserInterface.py" line="5306"/>
         <source>&lt;p&gt;The PyQt4 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>Save tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <source>Read tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <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="6165"/>
+        <location filename="../UI/UserInterface.py" line="6168"/>
         <source>Save session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6102"/>
+        <location filename="../UI/UserInterface.py" line="6105"/>
         <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="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <source>Read session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <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="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <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="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>&amp;Cancel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6610"/>
+        <location filename="../UI/UserInterface.py" line="6613"/>
         <source>Trying host {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>Update available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Error during updates check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Could not perform updates check.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6812"/>
+        <location filename="../UI/UserInterface.py" line="6815"/>
         <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="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>First time usage</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74903,27 +74908,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6667"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <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="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <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>
@@ -75009,12 +75014,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4922"/>
+        <location filename="../UI/UserInterface.py" line="4925"/>
         <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="6882"/>
+        <location filename="../UI/UserInterface.py" line="6885"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75389,7 +75394,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5369"/>
+        <location filename="../UI/UserInterface.py" line="5372"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75399,7 +75404,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75419,7 +75424,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6605"/>
+        <location filename="../UI/UserInterface.py" line="6608"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75489,27 +75494,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt v.3 is not supported by eric6.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>Eric6 is up to date</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>You are using the latest version of eric6</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75519,17 +75524,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3648"/>
+        <location filename="../UI/UserInterface.py" line="3651"/>
         <source>&amp;User Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3720"/>
+        <location filename="../UI/UserInterface.py" line="3723"/>
         <source>No User Tools Configured</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6621"/>
+        <location filename="../UI/UserInterface.py" line="6624"/>
         <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75574,7 +75579,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>Load session</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75589,17 +75594,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75614,17 +75619,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <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="6746"/>
+        <location filename="../UI/UserInterface.py" line="6749"/>
         <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75679,7 +75684,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80170,12 +80175,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="55"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="58"/>
         <source>Virtualenv Target Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="60"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="63"/>
         <source>Python Interpreter</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80614,52 +80619,52 @@
 <context>
     <name>VirtualenvManager</name>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>Add Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="173"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="185"/>
         <source>Change Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>Rename Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="270"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="304"/>
         <source>{0} - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Delete Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Do you really want to delete these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Remove Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Do you really want to remove these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -85178,12 +85183,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="388"/>
+        <location filename="../eric6.py" line="391"/>
         <source>Starting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="393"/>
+        <location filename="../eric6.py" line="396"/>
         <source>Generating Main Window...</source>
         <translation type="unfinished"></translation>
     </message>
--- a/i18n/eric6_es.ts	Tue Jun 26 18:39:14 2018 +0200
+++ b/i18n/eric6_es.ts	Tue Jun 26 18:50:04 2018 +0200
@@ -1463,37 +1463,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="130"/>
+        <location filename="../Utilities/BackgroundService.py" line="132"/>
         <source>{0} not configured.</source>
         <translation>{0} no configurado.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <source>Restart background client?</source>
         <translation>¿Reiniciar cliente en background?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <source>Background client disconnected.</source>
         <translation>Cliente en background desconectado.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="423"/>
+        <location filename="../Utilities/BackgroundService.py" line="427"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation type="unfinished">El cliente en background de Eric ha desconectado debido a una razón desconocida.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="212"/>
+        <location filename="../Utilities/BackgroundService.py" line="214"/>
         <source>An error in Erics background client stopped the service.</source>
         <translation>Un error en el cliente en background de Eric ha detenido el servicio.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <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="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <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>
@@ -2980,46 +2980,46 @@
         <translation>&lt;deshabilitado&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="281"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="285"/>
         <source>Main Menu</source>
         <translation>Menú Principal</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="291"/>
-        <source>Rich Text</source>
-        <translation>Texto Rico</translation>
-    </message>
-    <message>
         <location filename="../UI/CodeDocumentationViewer.py" line="296"/>
+        <source>Rich Text</source>
+        <translation>Texto Rico</translation>
+    </message>
+    <message>
+        <location filename="../UI/CodeDocumentationViewer.py" line="304"/>
         <source>Plain Text</source>
         <translation>Texto Plano</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="471"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="480"/>
         <source>No documentation available</source>
         <translation>No hay documentación disponible</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="498"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="507"/>
         <source>Definition: {0}{1}
 </source>
         <translation>Definición: {0}{1}
 </translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="501"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="510"/>
         <source>Definition: {0}
 </source>
         <translation>Definición: {0}
 </translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="548"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="557"/>
         <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="553"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="562"/>
         <source>This function has been disabled.</source>
         <translation>Esta función se ha deshabilitado.</translation>
     </message>
@@ -3041,14 +3041,14 @@
         <translation>&lt;p&gt;&lt;b&gt;Nota:&lt;/b&gt; @NOTE@&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="509"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="518"/>
         <source>Type: {0}
 </source>
         <translation>Tipo: {0}
 </translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="517"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="526"/>
         <source>Note: {0}
 </source>
         <translation>Nota: {0}
@@ -4466,329 +4466,329 @@
 <context>
     <name>ConfigurationWidget</name>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="136"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="143"/>
         <source>Application</source>
         <translation>Aplicación</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="142"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="149"/>
         <source>CORBA</source>
         <translation>CORBA</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="148"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="155"/>
         <source>Email</source>
         <translation>Correo electrónico</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="151"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="158"/>
         <source>Graphics</source>
         <translation>Gráficos</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="157"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="164"/>
         <source>Icons</source>
         <translation>Iconos</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="176"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
         <source>Plugin Manager</source>
         <translation>Gestor de Plugins</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="450"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
         <source>Printer</source>
         <translation>Impresora</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="186"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="193"/>
         <source>Python</source>
         <translation>Python</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="189"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="196"/>
         <source>Qt</source>
         <translation>Qt</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="195"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="202"/>
         <source>Shell</source>
         <translation>Shell</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="198"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="205"/>
         <source>Tasks</source>
         <translation>Tareas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="201"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="208"/>
         <source>Templates</source>
         <translation>Plantillas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="207"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="214"/>
         <source>Version Control Systems</source>
         <translation>Sistemas de Control de Versiones</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="212"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="219"/>
         <source>Debugger</source>
         <translation>Depurador</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="232"/>
         <source>Editor</source>
         <translation>Editor</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="235"/>
         <source>APIs</source>
         <translation>APIs</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="231"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="238"/>
         <source>Autocompletion</source>
         <translation>Autocompletar</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="239"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="246"/>
         <source>Calltips</source>
         <translation>Consejos de llamada (calltips)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="248"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
         <source>General</source>
         <translation>General</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="268"/>
-        <source>Typing</source>
-        <translation>Tecleo de codigo</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="271"/>
-        <source>Exporters</source>
-        <translation>Exportadores</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="275"/>
+        <source>Typing</source>
+        <translation>Tecleo de codigo</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="278"/>
+        <source>Exporters</source>
+        <translation>Exportadores</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="282"/>
         <source>Highlighters</source>
         <translation>Resaltado de código</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="279"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="286"/>
         <source>Filetype Associations</source>
         <translation>Asociación de tipos de archivo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="283"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="290"/>
         <source>Styles</source>
         <translation>Estilos</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="299"/>
-        <source>Help</source>
-        <translation>Ayuda</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
-        <source>Help Documentation</source>
-        <translation>Documentación de Ayuda</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="306"/>
+        <source>Help</source>
+        <translation>Ayuda</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="464"/>
+        <source>Help Documentation</source>
+        <translation>Documentación de Ayuda</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="313"/>
         <source>Help Viewers</source>
         <translation>Visores de Ayuda</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="317"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="324"/>
         <source>Project</source>
         <translation>Proyecto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="314"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="321"/>
         <source>Project Viewer</source>
         <translation>Visor de proyecto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="320"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="327"/>
         <source>Multiproject</source>
         <translation>Multiproyecto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="444"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="451"/>
         <source>Interface</source>
         <translation>Interfaz de Usuario</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="331"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="338"/>
         <source>Viewmanager</source>
         <translation>Gestor de vistas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <source>Configuration Page Error</source>
         <translation>Error de Configuración de Página</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="251"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="258"/>
         <source>Filehandling</source>
         <translation>Gestión de archivos</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
-        <source>Searching</source>
-        <translation>Búsquedas</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="462"/>
-        <source>Appearance</source>
-        <translation>Apariencia</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="242"/>
-        <source>QScintilla</source>
-        <translation>QScintilla</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="262"/>
+        <source>Searching</source>
+        <translation>Búsquedas</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <source>Appearance</source>
+        <translation>Apariencia</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="249"/>
+        <source>QScintilla</source>
+        <translation>QScintilla</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="269"/>
         <source>Style</source>
         <translation>Estilo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="290"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="297"/>
         <source>Properties</source>
         <translation>Propiedades</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="646"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
         <source>Preferences</source>
         <translation>Preferencias</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="651"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="658"/>
         <source>Please select an entry of the list 
 to display the configuration page.</source>
         <translation>Por favor, seleccione una entrada de la lista
 para visualizar la página de configuración.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="447"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="454"/>
         <source>Network</source>
         <translation>Red</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="478"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="485"/>
         <source>Spell checking</source>
         <translation>Corrección ortográfica</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="221"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
         <source>Python3</source>
         <translation>Python3</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <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>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="287"/>
-        <source>Keywords</source>
-        <translation>Palabras clave</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="139"/>
-        <source>Cooperation</source>
-        <translation>Cooperación</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="494"/>
-        <source>Tray Starter</source>
-        <translation>Lanzador de bandeja de sistema</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="473"/>
-        <source>VirusTotal Interface</source>
-        <translation>Interfaz de VirusTotal</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="453"/>
-        <source>Security</source>
-        <translation>Seguridad</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="172"/>
-        <source>Notifications</source>
-        <translation>Notificaciones</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="160"/>
-        <source>IRC</source>
-        <translation>IRC</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="265"/>
-        <source>Code Checkers</source>
-        <translation>Comprobadores de Código</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="465"/>
-        <source>eric6 Web Browser</source>
-        <translation>Navegador Web de eric6</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="163"/>
-        <source>Log-Viewer</source>
-        <translation>Visor de Log</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="166"/>
-        <source>Mimetypes</source>
-        <translation>Mimetypes</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
-        <source>Enter search text...</source>
-        <translation>Introducir texto de búsqueda...</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="294"/>
+        <source>Keywords</source>
+        <translation>Palabras clave</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="146"/>
+        <source>Cooperation</source>
+        <translation>Cooperación</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="501"/>
+        <source>Tray Starter</source>
+        <translation>Lanzador de bandeja de sistema</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="480"/>
+        <source>VirusTotal Interface</source>
+        <translation>Interfaz de VirusTotal</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="460"/>
+        <source>Security</source>
+        <translation>Seguridad</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="179"/>
+        <source>Notifications</source>
+        <translation>Notificaciones</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="167"/>
+        <source>IRC</source>
+        <translation>IRC</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="272"/>
+        <source>Code Checkers</source>
+        <translation>Comprobadores de Código</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="472"/>
+        <source>eric6 Web Browser</source>
+        <translation>Navegador Web de eric6</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="170"/>
+        <source>Log-Viewer</source>
+        <translation>Visor de Log</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="173"/>
+        <source>Mimetypes</source>
+        <translation>Mimetypes</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="591"/>
+        <source>Enter search text...</source>
+        <translation>Introducir texto de búsqueda...</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="301"/>
         <source>Mouse Click Handlers</source>
         <translation>Manejadores de clicks del ratón</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="476"/>
         <source>Flash Cookie Manager</source>
         <translation>Gestor de Cookies de Flash</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="507"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="514"/>
         <source>Hex Editor</source>
         <translation>Editor Hexadecimal</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="364"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="371"/>
         <source>Web Browser</source>
         <translation>Navegador Web</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="145"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="152"/>
         <source>Diff</source>
         <translation>Diff</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="245"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="252"/>
         <source>Documentation Viewer</source>
         <translation>Visor de Documentación</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="190"/>
         <source>Protobuf</source>
         <translation>Protobuf</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="218"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
         <source>Python2</source>
         <translation type="unfinished">Python2</translation>
     </message>
@@ -5540,14 +5540,14 @@
         <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="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1603"/>
         <source>Passive debug connection received
 </source>
         <translation>Recibida conexión pasiva de depuración
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1613"/>
+        <location filename="../Debugger/DebugServer.py" line="1617"/>
         <source>Passive debug connection closed
 </source>
         <translation>Cerrada conexión pasiva de depuración
@@ -19642,22 +19642,22 @@
         <translation>Seleccione el campo de filtrado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
         <source>Author</source>
         <translation>Autor</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
         <source>Committer</source>
         <translation>Autor de commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1812"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1814"/>
         <source>Branch</source>
         <translation>Branch</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="106"/>
         <source>Subject</source>
         <translation>Asunto</translation>
     </message>
@@ -19727,178 +19727,178 @@
         <translation>Seleccionar acción del menú</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
         <source>&amp;Refresh</source>
         <translation>Actualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="92"/>
         <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="198"/>
-        <source>Added</source>
-        <translation>Añadido</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="199"/>
-        <source>Deleted</source>
-        <translation>Borrado</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="200"/>
-        <source>Modified</source>
-        <translation>Modificado</translation>
+        <source>Added</source>
+        <translation>Añadido</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="201"/>
-        <source>Copied</source>
-        <translation>Copiado</translation>
+        <source>Deleted</source>
+        <translation>Borrado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="202"/>
-        <source>Renamed</source>
-        <translation>Renombrado</translation>
+        <source>Modified</source>
+        <translation>Modificado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Type changed</source>
-        <translation>Tipo cambiado</translation>
+        <source>Copied</source>
+        <translation>Copiado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Unmerged</source>
-        <translation>Merge Deshecho</translation>
+        <source>Renamed</source>
+        <translation>Renombrado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
+        <source>Type changed</source>
+        <translation>Tipo cambiado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
+        <source>Unmerged</source>
+        <translation>Merge Deshecho</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
         <source>Unknown</source>
         <translation>Desconocido</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
-        <source>Show Author Columns</source>
-        <translation>Mostrar Columnas de Autor</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="253"/>
+        <source>Show Author Columns</source>
+        <translation>Mostrar Columnas de Autor</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="255"/>
         <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="261"/>
-        <source>Show Committer Columns</source>
-        <translation>Mostrar Columnas de Autor del Commit</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="263"/>
+        <source>Show Committer Columns</source>
+        <translation>Mostrar Columnas de Autor del Commit</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="265"/>
         <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="313"/>
-        <source>Copy Commits</source>
-        <translation>Copiar Commits</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <source>Copy Commits</source>
+        <translation>Copiar Commits</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
         <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="320"/>
-        <source>Tag</source>
-        <translation>Tag</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <source>Tag</source>
+        <translation>Tag</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
         <source>Tag the selected commit</source>
         <translation>Hacer Tag del commit seleccionado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="326"/>
-        <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="328"/>
-        <source>Branch &amp;&amp; Switch</source>
-        <translation>Branch &amp;&amp; Switch</translation>
+        <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"/>
+        <source>Branch &amp;&amp; Switch</source>
+        <translation>Branch &amp;&amp; Switch</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
         <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="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>Switch</source>
         <translation>Hacer switch</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
         <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="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Show Short Log</source>
         <translation>Mostrar Shortlog</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="342"/>
+        <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="345"/>
-        <source>Describe</source>
-        <translation>Describir</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Describe</source>
+        <translation>Describir</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
         <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="648"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="650"/>
         <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="651"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="653"/>
         <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="654"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="656"/>
         <source>Git Error</source>
         <translation>Error de Git</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="771"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation>{0} ({1}%)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <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="1725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1727"/>
         <source>Copy Changesets</source>
         <translation>Copiar Changesets</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>The project should be reread. Do this now?</source>
         <translation>El proyecto debería ser cargado de nuevo. ¿Desea hacerlo ahora?</translation>
     </message>
@@ -19908,17 +19908,17 @@
         <translation>Branches</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Select a branch</source>
         <translation>Seleccionar una branch</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Select a default branch</source>
         <translation>Seleccionar la branch por defecto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Branch &amp; Switch</source>
         <translation>Branch &amp; Switch</translation>
     </message>
@@ -19938,37 +19938,37 @@
         <translation>Pulsar para buscar la siguiente ocurrencia</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
         <source>Commit ID</source>
         <translation>Commit ID</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="98"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="100"/>
         <source>Find</source>
         <translation>Buscar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
         <source>Filter</source>
         <translation>Filtrar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="140"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="142"/>
         <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="143"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="145"/>
         <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="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <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="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <source>Find Commit</source>
         <translation>Buscar Commit</translation>
     </message>
@@ -19978,7 +19978,7 @@
         <translation>Introducir la expresión regular para filtrar o para buscar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>File</source>
         <translation>Archivo</translation>
     </message>
@@ -20003,7 +20003,7 @@
         <translation>Eliminaciones</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2119"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2121"/>
         <source>Differences</source>
         <translation>Diferencias</translation>
     </message>
@@ -20013,97 +20013,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="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="124"/>
         <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="134"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="136"/>
         <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="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="139"/>
         <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="146"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="148"/>
         <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="1275"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1277"/>
         <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="1287"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1289"/>
         <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="2133"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2135"/>
         <source>Differences to Parent {0}</source>
         <translation>Diferencias con Parent {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2148"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
         <source>Diff to Parent {0}</source>
         <translation>Diff con Parent {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2174"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2176"/>
         <source>There is no difference.</source>
         <translation>No hay ninguna diferencia.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <source>Save Diff</source>
         <translation>Guardar Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2303"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2305"/>
         <source>Patch Files (*.diff)</source>
         <translation>Archivos de Parche (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2320"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2322"/>
         <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="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <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="241"/>
-        <source>Show Commit ID Column</source>
-        <translation>Mostrar columna de Commit ID</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="243"/>
+        <source>Show Commit ID Column</source>
+        <translation>Mostrar columna de Commit ID</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="245"/>
         <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="271"/>
-        <source>Show Branches Column</source>
-        <translation>Mostrar Columna de Branches</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="273"/>
+        <source>Show Branches Column</source>
+        <translation>Mostrar Columna de Branches</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="275"/>
         <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="281"/>
-        <source>Show Tags Column</source>
-        <translation>Mostrar Columna de Tags</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="283"/>
+        <source>Show Tags Column</source>
+        <translation>Mostrar Columna de Tags</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="285"/>
         <source>Press to show the Tags column</source>
         <translation>Pulsar para mostrar la columna de autor</translation>
     </message>
@@ -23225,7 +23225,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="395"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="397"/>
         <source>Git Status</source>
         <translation>Git Status</translation>
     </message>
@@ -23247,7 +23247,7 @@
         <translation>Seleccionar el status de las entradas a mostrar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>Commit</source>
         <translation>Commit</translation>
     </message>
@@ -23267,12 +23267,12 @@
         <translation>Ruta</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="199"/>
         <source>Commit the selected changes</source>
         <translation>Hacer commit de los cambios seleccionados</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="200"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="202"/>
         <source>Amend the latest commit with the selected changes</source>
         <translation>Enmendar (amend) el último commit con los cambios seleccionados</translation>
     </message>
@@ -23322,202 +23322,202 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="65"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
         <source>Refresh</source>
         <translation>Actualizar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="69"/>
         <source>Press to refresh the status display</source>
         <translation>Pulsar para actualizar el status visualizado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="202"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
         <source>Select all for commit</source>
         <translation>Seleccionar todo para hacer commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="213"/>
         <source>Stage changes</source>
         <translation>Llevar cambios al área de preparación (stage)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="215"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="217"/>
         <source>Unstage changes</source>
         <translation>Sacar cambios del área de preparación (unstage)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="242"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
         <source>Forget missing</source>
         <translation>Olvidar elementos perdidos</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="248"/>
         <source>Restore missing</source>
         <translation>Restore sobre elementos perdidos</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
         <source>Edit file</source>
         <translation>Editar archivo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="260"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="262"/>
         <source>Adjust column sizes</source>
         <translation>Adjustar tamaño de columnas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
-        <source>added</source>
-        <translation>añadido</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
-        <source>copied</source>
-        <translation>copiado</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
-        <source>deleted</source>
-        <translation>borrado</translation>
+        <source>added</source>
+        <translation>añadido</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="172"/>
-        <source>modified</source>
-        <translation>modificado</translation>
+        <source>copied</source>
+        <translation>copiado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="173"/>
-        <source>renamed</source>
-        <translation>renombrado</translation>
+        <source>deleted</source>
+        <translation>borrado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="174"/>
+        <source>modified</source>
+        <translation>modificado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="175"/>
+        <source>renamed</source>
+        <translation>renombrado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="177"/>
         <source>not tracked</source>
         <translation>sin seguimiento</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="174"/>
-        <source>unmerged</source>
-        <translation>sin merge</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmodified</source>
-        <translation>sin modificar</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="176"/>
+        <source>unmerged</source>
+        <translation>sin merge</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmodified</source>
+        <translation>sin modificar</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="178"/>
         <source>ignored</source>
         <translation>ignorado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <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="596"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="598"/>
         <source>all</source>
         <translation>todo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <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="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <source>Add</source>
         <translation>Añadir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <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="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>Stage</source>
         <translation>Área de Preparación (Stage)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <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="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>Unstage</source>
         <translation>Unstage (sacar del área de preparación)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <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="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
         <source>Forget Missing</source>
         <translation>Olvidar elementos perdidos</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <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="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>Revert</source>
         <translation>Revertir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <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="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <source>Restore Missing</source>
         <translation>Restore sobre elementos perdidos</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>Differences</source>
         <translation>Diferencias</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <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="891"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="893"/>
         <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="870"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872"/>
         <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="892"/>
-        <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="894"/>
+        <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="896"/>
         <source>Side-by-Side Difference</source>
         <translation>Diferencias Lado a Lado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Select the compare method.</source>
         <translation>Seleccioanr el método compare.</translation>
     </message>
@@ -23532,47 +23532,47 @@
         <translation>Diferencia Staging (área de trabajo) con HEAD</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="107"/>
         <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="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="111"/>
         <source>Revert Selected Lines</source>
         <translation>Revertir Líneas Seleccionadas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="115"/>
         <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="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="119"/>
         <source>Revert Hunk</source>
         <translation>Revertir Fragmento (Hunk)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="123"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="125"/>
         <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="127"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="129"/>
         <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="1201"/>
-        <source>Revert selected lines</source>
-        <translation>Revertir Líneas Seleccionadas</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1203"/>
+        <source>Revert selected lines</source>
+        <translation>Revertir Líneas Seleccionadas</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1205"/>
         <source>Revert hunk</source>
         <translation>Revertir Fragmento (Hunk)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1206"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation>¿Realmente desea revertir los cambios seleccionados?</translation>
     </message>
@@ -23582,67 +23582,67 @@
         <translation>Seleccionar acción del menú</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="198"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="200"/>
         <source>Amend</source>
         <translation>Enmendar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
         <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="210"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="212"/>
         <source>Add the selected files</source>
         <translation>Añadir archivos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="215"/>
         <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="217"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="219"/>
         <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="224"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226"/>
         <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="227"/>
-        <source>Differences Side-By-Side</source>
-        <translation>Diferencias Lado a Lado</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="229"/>
+        <source>Differences Side-By-Side</source>
+        <translation>Diferencias Lado a Lado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="231"/>
         <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="237"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
         <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="244"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
         <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="248"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="250"/>
         <source>Restores the selected missing files</source>
         <translation>Restaurar los archivos perdidos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257"/>
         <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="262"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="264"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation>Ajustar el ancho de todas las columnas a su contenido</translation>
     </message>
@@ -24843,357 +24843,357 @@
 <context>
     <name>HelpBrowser</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1220"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1223"/>
         <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation>Abrir enlace en Nueva Pestaña Ctrl+LMB (botón izquierdo del ratón)</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="745"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="748"/>
         <source>&lt;b&gt;Help Window&lt;/b&gt;&lt;p&gt;This window displays the selected help information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ventana de Ayuda&lt;/b&gt;&lt;p&gt;Esta ventana muestra la información de ayuda seleccionada.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1518"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1521"/>
         <source>Web Inspector...</source>
         <translation>Inspector Web...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2202"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2205"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation>Compruebe que la dirección no tenga errores como &lt;b&gt;ww&lt;/b&gt;.ejemplo.org en lugar de &lt;b&gt;www&lt;/b&gt;.ejemplo.org</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2210"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation>Si la dirección es correcta, intente comprobar la conexión de red.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2214"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation>Si el ordenador o la red están protegidos por un firewall o un proxy, asegúrese de que al navegador se le permite acceder a la red.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1424"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
         <source>Bookmark this Page</source>
         <translation>Marcador a esta Página</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1227"/>
-        <source>Save Lin&amp;k</source>
-        <translation>Guardar &amp;Enlace</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1230"/>
+        <source>Save Lin&amp;k</source>
+        <translation>Guardar &amp;Enlace</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1233"/>
         <source>Bookmark this Link</source>
         <translation>Marcador a este Enlace</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1237"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
         <source>Copy Link to Clipboard</source>
         <translation>Copiar Enlace al Portapapeles</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1258"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1261"/>
         <source>Open Image in New Tab</source>
         <translation>Abrir Imagen en Nueva Pestaña</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1265"/>
-        <source>Save Image</source>
-        <translation>Guardar imagen</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1268"/>
+        <source>Save Image</source>
+        <translation>Guardar imagen</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1271"/>
         <source>Copy Image to Clipboard</source>
         <translation>Copiar Imagen al Portapapeles</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1270"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1273"/>
         <source>Copy Image Location to Clipboard</source>
         <translation>Copiar Ubicación de la Imagen al Portapapeles</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1283"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1286"/>
         <source>Block Image</source>
         <translation>Bloquear Imagen</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1457"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1460"/>
         <source>Search with...</source>
         <translation>Buscar con...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="931"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="934"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no existe.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="976"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="979"/>
         <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido ejecutar un visor para el archivo &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="956"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="959"/>
         <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se pudo ejecutar una aplicación para la URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2181"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2184"/>
         <source>Error loading page: {0}</source>
         <translation>Error al cargar la página: {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2199"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2202"/>
         <source>When connecting to: {0}.</source>
         <translation>Al conectar con: {0}.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>Web Database Quota</source>
         <translation>Cuota de base de datos web</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>&lt;p&gt;The database quota of &lt;strong&gt;{0}&lt;/strong&gt; has been exceeded while accessing database &lt;strong&gt;{1}&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Shall it be changed?&lt;/p&gt;</source>
         <translation>&lt;p&gt;La cuota de base de datos de &lt;strong&gt;{0}&lt;/strong&gt; se ha superado mientras se accedía a la base de datos &lt;strong&gt;{1}&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;¿Debe ser cambiada?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>New Web Database Quota</source>
         <translation>Nueva cuota de base de datos web</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2297"/>
-        <source>bytes</source>
-        <translation>bytes</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2300"/>
-        <source>kB</source>
-        <translation>kB</translation>
+        <source>bytes</source>
+        <translation>bytes</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2303"/>
+        <source>kB</source>
+        <translation>kB</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2306"/>
         <source>MB</source>
         <translation>MB</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source>
         <translation>Introducir la nueva cuota en MB (actual = {0}, usados = {1}; tamaño de paso = 5MB):</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1511"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1514"/>
         <source>Add to web search toolbar</source>
         <translation>Añadir a la barra de búsqueda web</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>Method not supported</source>
         <translation>Método no soportado</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>{0} method is not supported.</source>
         <translation>El método {0} no está soportado.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Search engine</source>
         <translation>Motor de búsqueda</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Choose the desired search engine</source>
         <translation>Elegir el motor de búsqueda deseado</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Engine name</source>
         <translation>Nombre de motor</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Enter a name for the engine</source>
         <translation>Introducir el nombre para el motor</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2217"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2220"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation>Si la política de caché está establecida a navegación offline, solamente estarán disponibles las páginas en caché local.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1248"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1251"/>
         <source>Scan Link with VirusTotal</source>
         <translation>Analizar enlace con VirusTotal</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1291"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1294"/>
         <source>Scan Image with VirusTotal</source>
         <translation>Analizar Imagen con VirusTotal</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1243"/>
         <source>Send Link</source>
         <translation>Enviar Enlace</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1276"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1279"/>
         <source>Send Image Link</source>
         <translation>Enviar Enlace de Imagen</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1384"/>
-        <source>This Frame</source>
-        <translation>Este Marco</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1387"/>
-        <source>Show &amp;only this frame</source>
-        <translation>Mostrar s&amp;olo este marco</translation>
+        <source>This Frame</source>
+        <translation>Este Marco</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1390"/>
+        <source>Show &amp;only this frame</source>
+        <translation>Mostrar s&amp;olo este marco</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1393"/>
         <source>Show in new &amp;tab</source>
         <translation>Mostrar en nueva pes&amp;taña</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1397"/>
-        <source>&amp;Print</source>
-        <translation>Im&amp;primir</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1400"/>
-        <source>Print Preview</source>
-        <translation>Presentación preliminar</translation>
+        <source>&amp;Print</source>
+        <translation>Im&amp;primir</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1403"/>
+        <source>Print Preview</source>
+        <translation>Presentación preliminar</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1406"/>
         <source>Print as PDF</source>
         <translation>Imprimir como PDF</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1407"/>
-        <source>Zoom &amp;in</source>
-        <translation>A&amp;umentar Zoom</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1410"/>
-        <source>Zoom &amp;reset</source>
-        <translation>&amp;Restablecer zoom</translation>
+        <source>Zoom &amp;in</source>
+        <translation>A&amp;umentar Zoom</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1413"/>
+        <source>Zoom &amp;reset</source>
+        <translation>&amp;Restablecer zoom</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1416"/>
         <source>Zoom &amp;out</source>
         <translation>Dismi&amp;nuir Zoom</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1417"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1420"/>
         <source>Show frame so&amp;urce</source>
         <translation>Mostrar f&amp;uentes del marco</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1430"/>
         <source>Send Page Link</source>
         <translation>Enviar Enlace de Página</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1448"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1451"/>
         <source>Send Text</source>
         <translation>Enviar Texto</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1482"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1485"/>
         <source>Google Translate</source>
         <translation>Google Translate</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1491"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1494"/>
         <source>Dictionary</source>
         <translation>Diccionario</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1501"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1504"/>
         <source>Go to web address</source>
         <translation>Ir a la dirección web</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1434"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1437"/>
         <source>User Agent</source>
         <translation>Agente de Usuario</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2222"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2225"/>
         <source>Try Again</source>
         <translation>Intentar de nuevo</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1311"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1314"/>
         <source>Play</source>
         <translation>Reproducir</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1315"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1318"/>
         <source>Pause</source>
         <translation>Pausa</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1319"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1322"/>
         <source>Unmute</source>
         <translation>Con sonido</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1323"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1326"/>
         <source>Mute</source>
         <translation>Sin sonido</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1327"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1330"/>
         <source>Copy Media Address to Clipboard</source>
         <translation>Copiar Dirección del Medio al Portapapeles</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1333"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1336"/>
         <source>Send Media Address</source>
         <translation>Enviar Dirección del Medio</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1339"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1342"/>
         <source>Save Media</source>
         <translation>Guardar Medio</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>eric6 Web Browser</source>
         <translation>Navegador Web de eric6</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5. Please upgrade.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Imprimir no esta disponible debido a un bug en PyQt5. Por favor, actualice su versión.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2626"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2629"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5.Please upgrade.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Imprimir no esta disponible debido a un bug en PyQt5. Por favor, actualice su versión.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1200"/>
-        <source>Add New Page</source>
-        <translation>Añadir Página Nueva</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1203"/>
+        <source>Add New Page</source>
+        <translation>Añadir Página Nueva</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1206"/>
         <source>Configure Speed Dial</source>
         <translation>Configurar Marcación Rápida</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1210"/>
         <source>Reload All Dials</source>
         <translation>Recargar todos los marcadores rápidos</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1214"/>
         <source>Reset to Default Dials</source>
         <translation>Restablecer Marcadores por Defecto</translation>
     </message>
@@ -26492,82 +26492,82 @@
 <context>
     <name>HelpWebPage</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="376"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="379"/>
         <source>Error loading page: {0}</source>
         <translation>Error al cargar la página: {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="395"/>
-        <source>When connecting to: {0}.</source>
-        <translation>Al conectar con: {0}.</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="398"/>
+        <source>When connecting to: {0}.</source>
+        <translation>Al conectar con: {0}.</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="401"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation>Compruebe que la dirección no tenga errores como &lt;b&gt;ww&lt;/b&gt;.ejemplo.org en lugar de &lt;b&gt;www&lt;/b&gt;.ejemplo.org</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="403"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="406"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation>Si la dirección es correcta, intente comprobar la conexión de red.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="408"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="411"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation>Si el ordenador o la red están protegidos por un firewall o un proxy, asegúrese de que al navegador se le permite acceder a la red.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="414"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="417"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation>Si la política de caché está establecida a navegación offline, solamente estarán disponibles las páginas en caché local.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>Resending POST request</source>
         <translation>Reenviando solicitud POST</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>In order to display the site, the request along with all the data must be sent once again, which may lead to some unexpected behaviour of the site e.g. the same action might be performed once again. Do you want to continue anyway?</source>
         <translation>Para poder mostrar el sitio, la solicitud con todos los datos debe ser enviada de nuevo, lo cual puede conducir a algún tipo de comportamiento inesperado del sitio, por ejemplo la misma acción podría ser repetida. ¿Desea continuar de todos modos?</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="419"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="422"/>
         <source>Try Again</source>
         <translation>Intentar de nuevo</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="351"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="354"/>
         <source>Content blocked by AdBlock Plus</source>
         <translation>Contenido bloqueado por AdBlock Plus</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="352"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="355"/>
         <source>Blocked by rule: &lt;i&gt;{0}&lt;/i&gt;</source>
         <translation>Bloqueado por la regla: &lt;i&gt;{0}&lt;/i&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="309"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="312"/>
         <source>Select files to upload...</source>
         <translation>Seleccionar archivos a subir...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>SSL Info</source>
         <translation>Información de SSL</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>This site does not contain SSL information.</source>
         <translation>Este sitio no contiene información SSL.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Protocol Error</source>
         <translation>Error de Protocolo</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Open external application for {0}-link?
 URL: {1}</source>
         <translation>¿Abrir aplicación externa para{0}-enlace?
@@ -42204,27 +42204,27 @@
 <context>
     <name>JavaScriptEricObject</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="114"/>
         <source>Search!</source>
         <translation>¡Buscar!</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="150"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="153"/>
         <source>Search results provided by {0}</source>
         <translation>Buscar resultados proporcionados por {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="108"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
         <source>Welcome to eric6 Web Browser!</source>
         <translation>¡Bienvenido al Navegador Web de eric6!</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="110"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="113"/>
         <source>eric6 Web Browser</source>
         <translation>Navegador Web de eric6</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="112"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="115"/>
         <source>About eric6</source>
         <translation>Acerca de eric6</translation>
     </message>
@@ -45129,12 +45129,12 @@
         <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="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <source>EditorConfig Properties</source>
         <translation>Propiedades de EditorConfig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <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>
@@ -50189,22 +50189,22 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="484"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="499"/>
         <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="653"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="668"/>
         <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="597"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="612"/>
         <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="681"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="696"/>
         <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>
@@ -50212,40 +50212,45 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="88"/>
         <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="76"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="87"/>
         <source>Enable JavaScript</source>
         <translation>Habilitar JavaScript</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="83"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="94"/>
         <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="81"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="92"/>
         <source>Enable Server Side Includes</source>
         <translation>Habilitar Includes del Lado del Servidor</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="190"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="205"/>
         <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="252"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="267"/>
         <source>Preview - {0}</source>
         <translation>Vista Previa - {0}</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="254"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="269"/>
         <source>Preview</source>
         <translation>Vista Previa</translation>
     </message>
+    <message>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="70"/>
+        <source>&lt;b&gt;HTML Preview is not available!&lt;br/&gt;Install QtWebEngine or QtWebKit.&lt;/b&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PreviewerQSS</name>
@@ -52340,7 +52345,7 @@
         <translation>Compilando formularios...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="905"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="943"/>
         <source>Abort</source>
         <translation>Abortar</translation>
     </message>
@@ -53165,7 +53170,7 @@
         <translation>Compilando recursos...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="777"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="850"/>
         <source>Abort</source>
         <translation>Abortar</translation>
     </message>
@@ -62053,280 +62058,280 @@
 <context>
     <name>ShellWindow</name>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Quit</source>
         <translation>Salir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>&amp;Quit</source>
         <translation>&amp;Salir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="201"/>
         <source>Quit the Shell</source>
         <translation>Salir de la Shell</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="197"/>
+        <location filename="../QScintilla/ShellWindow.py" line="202"/>
         <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salir de la Shell&lt;/b&gt;&lt;p&gt;Sale de la ventana de Shell.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New Window</source>
         <translation>Nueva Ventana</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New &amp;Window</source>
         <translation>Nueva &amp;Ventana</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="211"/>
+        <location filename="../QScintilla/ShellWindow.py" line="216"/>
         <source>Open a new Shell window</source>
         <translation>Abrir una nueva ventana de Shell</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="213"/>
+        <location filename="../QScintilla/ShellWindow.py" line="218"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nueva Ventana&lt;/b&gt;&lt;p&gt;Abre una nueva instancia de la ventana de Shell.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="220"/>
-        <source>Restart</source>
-        <translation>Reiniciar</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="225"/>
+        <source>Restart</source>
+        <translation>Reiniciar</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="230"/>
         <source>Restart the shell</source>
         <translation>Reiniciar la Shell</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="227"/>
+        <location filename="../QScintilla/ShellWindow.py" line="232"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reiniciar&lt;/b&gt;&lt;p&gt;Reiniciar la shell para el lenguaje actualmente seleccionado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="234"/>
-        <source>Restart and Clear</source>
-        <translation>Restaurar y Limpiar</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="239"/>
+        <source>Restart and Clear</source>
+        <translation>Restaurar y Limpiar</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="244"/>
         <source>Clear the window and restart the shell</source>
         <translation>Limpiar la ventana y reiniciar la shell</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="241"/>
+        <location filename="../QScintilla/ShellWindow.py" line="246"/>
         <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reiniciar y Limpiar&lt;/b&gt;&lt;p&gt;Limpiar la ventana de shell y reiniciar la shell para el lenguaje actualmente seleccionado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>Show History</source>
         <translation>Mostrar Historial</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>&amp;Show History...</source>
         <translation>Mostrar &amp;Historial...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="882"/>
+        <location filename="../QScintilla/ShellWindow.py" line="887"/>
         <source>Show the shell history in a dialog</source>
         <translation>Mostrar el historial de shell en un diálogo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>Clear History</source>
         <translation>Limpiar Historial</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>&amp;Clear History...</source>
         <translation>&amp;Limpiar Historial...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="892"/>
+        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Clear the shell history</source>
         <translation>Limpiar el historial de shell</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
+        <location filename="../QScintilla/ShellWindow.py" line="901"/>
         <source>Select History Entry</source>
         <translation>Seleccionar Entrada del Historial</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
-        <source>Select History &amp;Entry</source>
-        <translation>Seleccionar &amp;Entrada del Historial</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
+        <source>Select History &amp;Entry</source>
+        <translation>Seleccionar &amp;Entrada del Historial</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="906"/>
         <source>Select an entry of the shell history</source>
         <translation>Seleccionar una entrada del historial de shell</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>About</source>
         <translation>Acerca de</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>&amp;About</source>
         <translation>&amp;Acerca de</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="913"/>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
         <source>Display information about this software</source>
         <translation>Mostrar información acerca de este software</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="915"/>
+        <location filename="../QScintilla/ShellWindow.py" line="920"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Acerca de&lt;/b&gt;&lt;p&gt;Mostrar información acerca de este software.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About Qt</source>
         <translation>Acerca de Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About &amp;Qt</source>
         <translation>Acerca de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="925"/>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Mostrar información sobre las herramientas Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="927"/>
+        <location filename="../QScintilla/ShellWindow.py" line="932"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Acerca de Qt&lt;/b&gt;&lt;p&gt;Mostrar información sobre las herramientas Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>What&apos;s This?</source>
         <translation>¿Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>&amp;What&apos;s This?</source>
         <translation>¿&amp;Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
+        <location filename="../QScintilla/ShellWindow.py" line="945"/>
         <source>Context sensitive help</source>
         <translation>Ayuda sensible al contexto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="941"/>
+        <location filename="../QScintilla/ShellWindow.py" line="946"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostrar ayuda sensible al contexto&lt;/b&gt;&lt;p&gt;En modo ¿Qué es esto? el puntero del ratón muestra una flecha con un interrogante, y se puede hacer click en elementos de la interfaz gráfica para obtener una descripción corta de lo que hacen y de cómo se utilizan. En los diálogos, se puede acceder a esta característica utilizando el botón de ayuda de contexto en la barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>About eric6 Shell Window</source>
         <translation>Acerca de la Ventana de Shell de eric6</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation>La Shell de eric6 es una ventana de shell autocontenida. Usa el mismo backend que el depurador de la IDE completa, pero se ejecuta independientemente.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1105"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1110"/>
         <source>&amp;File</source>
         <translation>&amp;Archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1114"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1119"/>
         <source>&amp;Edit</source>
         <translation>&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1125"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1130"/>
         <source>&amp;View</source>
         <translation>&amp;Ver</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1132"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
         <source>Histor&amp;y</source>
         <translation>&amp;Historial</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1139"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1144"/>
         <source>&amp;Start</source>
         <translation>&amp;Iniciar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1145"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1150"/>
         <source>&amp;Help</source>
         <translation>A&amp;yuda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1180"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1185"/>
         <source>File</source>
         <translation>Archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1189"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1194"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
         <source>Find</source>
         <translation>Buscar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1202"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1207"/>
         <source>View</source>
         <translation>Ver</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1209"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1214"/>
         <source>History</source>
         <translation>Historial</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1215"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1220"/>
         <source>Help</source>
         <translation>Ayuda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1241"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado permite hacer zoom de la shell.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="570"/>
+        <location filename="../QScintilla/ShellWindow.py" line="575"/>
         <source>Move forward one history entry</source>
         <translation>Mover hacia adelante una entrada del historial</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="580"/>
+        <location filename="../QScintilla/ShellWindow.py" line="585"/>
         <source>Move back one history entry</source>
         <translation>Mover hacia atrás una entrada del historial</translation>
     </message>
@@ -73268,12 +73273,12 @@
         <translation>Mostrar Versiones</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="523"/>
+        <location filename="../Tools/TrayStarter.py" line="526"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Números de Versiones&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="550"/>
+        <location filename="../Tools/TrayStarter.py" line="553"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
@@ -73859,7 +73864,7 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>Unittest</source>
         <translation>Test Unitario</translation>
     </message>
@@ -74046,57 +74051,57 @@
         <translation>^Error: </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="269"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="271"/>
         <source>You must enter a test suite file.</source>
         <translation>Debe introducir un archivo de suite de tests.</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="277"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="279"/>
         <source>Preparing Testsuite</source>
         <translation>Preparando Suite de Tests</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="475"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="477"/>
         <source>Running</source>
         <translation>Ejecutando</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="640"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="642"/>
         <source>Show Source</source>
         <translation>Mostrar código fuente</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="209"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="211"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>Archivos Python (*.py);;Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="205"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="207"/>
         <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source>
         <translation>Archivos Python3 ({1});;Archivos Python2 ({0});;Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;{1}&lt;br&gt;{2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Imposible ejecutar el test &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="499"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="501"/>
         <source>Ran {0} test in {1:.3f}s</source>
         <translation>Se ha ejecutado {0} test en {1:.3f}s</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="503"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="505"/>
         <source>Ran {0} tests in {1:.3f}s</source>
         <translation>Se han ejecutado {0} tests en {1:.3f}s</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="520"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="522"/>
         <source>Failure: {0}</source>
         <translation>Fallido: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="535"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="537"/>
         <source>Error: {0}</source>
         <translation>Error: {0}</translation>
     </message>
@@ -74131,17 +74136,17 @@
         <translation>Número de tests con éxito inesperado</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="550"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="552"/>
         <source>    Skipped: {0}</source>
         <translation>    Ignorados: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="565"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="567"/>
         <source>    Expected Failure</source>
         <translation>    Fallo Esperado</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="579"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="581"/>
         <source>    Unexpected Success</source>
         <translation>    Éxito Inesperado</translation>
     </message>
@@ -74600,7 +74605,7 @@
         <translation>Mostrar las versiones disponibles para descarga</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <source>Report Bug</source>
         <translation>Enviar informe de bugs</translation>
     </message>
@@ -74680,7 +74685,7 @@
         <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="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <source>Unittest Project</source>
         <translation>Test Unitario de Proyecto</translation>
     </message>
@@ -74860,7 +74865,7 @@
         <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="5846"/>
+        <location filename="../UI/UserInterface.py" line="5849"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Exportar Atajos de Teclado</translation>
     </message>
@@ -74880,7 +74885,7 @@
         <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="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Importar Atajos de Teclado</translation>
     </message>
@@ -75070,7 +75075,7 @@
         <translation>Ajustes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <source>Help</source>
         <translation>Ayuda</translation>
     </message>
@@ -75085,132 +75090,132 @@
         <translation>Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3259"/>
+        <location filename="../UI/UserInterface.py" line="3262"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Números de Versiones&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6826"/>
+        <location filename="../UI/UserInterface.py" line="6829"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <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="3673"/>
+        <location filename="../UI/UserInterface.py" line="3676"/>
         <source>Configure Tool Groups ...</source>
         <translation>Configurar Grupos de Herramientas ...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3677"/>
+        <location filename="../UI/UserInterface.py" line="3680"/>
         <source>Configure current Tool Group ...</source>
         <translation>Configurar Grupo de Herramientas actual ...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3628"/>
+        <location filename="../UI/UserInterface.py" line="3631"/>
         <source>&amp;Builtin Tools</source>
         <translation>Herramientas de serie (&amp;builtin)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3645"/>
+        <location filename="../UI/UserInterface.py" line="3648"/>
         <source>&amp;Plugin Tools</source>
         <translation>Herramientas de Extensión (&amp;Plugin)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3793"/>
+        <location filename="../UI/UserInterface.py" line="3796"/>
         <source>&amp;Show all</source>
         <translation>&amp;Ver todo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3795"/>
+        <location filename="../UI/UserInterface.py" line="3798"/>
         <source>&amp;Hide all</source>
         <translation>&amp;Ocultar todo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <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="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <source>Problem</source>
         <translation>Problema</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <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="4728"/>
+        <location filename="../UI/UserInterface.py" line="4731"/>
         <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="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <source>Documentation Missing</source>
         <translation>Falta documentación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>Documentation</source>
         <translation>Documentación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5303"/>
+        <location filename="../UI/UserInterface.py" line="5306"/>
         <source>&lt;p&gt;The PyQt4 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;P&gt;El punto de entrada de documentación de PyQt4 no ha sido configurado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>Save tasks</source>
         <translation>Guardar tareas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <source>Read tasks</source>
         <translation>Leer tareas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <source>Drop Error</source>
         <translation>Error de volcado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Error during updates check</source>
         <translation>Error durante la verificación de actualización</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Cancelar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>Update available</source>
         <translation>Actualizaciones disponibles</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <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="6812"/>
+        <location filename="../UI/UserInterface.py" line="6815"/>
         <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="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>First time usage</source>
         <translation>Usado por primera vez</translation>
     </message>
@@ -75270,7 +75275,7 @@
         <translation>Restaurando Gestor de Barras de Herramientas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>External Tools</source>
         <translation>Herramientas Externas</translation>
     </message>
@@ -75285,12 +75290,12 @@
         <translation>Visor de &amp;Multiproyecto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6165"/>
+        <location filename="../UI/UserInterface.py" line="6168"/>
         <source>Save session</source>
         <translation>Guardar sesión</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <source>Read session</source>
         <translation>Cargar sesión</translation>
     </message>
@@ -75365,12 +75370,12 @@
         <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="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>Restart application</source>
         <translation>Reiniciar aplicación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>The application needs to be restarted. Do it now?</source>
         <translation>La aplicación necesita ser reiniciada. ¿Desea hacerlo ahora?</translation>
     </message>
@@ -75520,7 +75525,7 @@
         <translation>Editor de &amp;Iconos...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt 3 support</source>
         <translation>Soporte para Qt 3</translation>
     </message>
@@ -75560,106 +75565,106 @@
         <translation>Herramientas Externas/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <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="4548"/>
+        <location filename="../UI/UserInterface.py" line="4551"/>
         <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="4615"/>
+        <location filename="../UI/UserInterface.py" line="4618"/>
         <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="4666"/>
+        <location filename="../UI/UserInterface.py" line="4669"/>
         <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="4708"/>
+        <location filename="../UI/UserInterface.py" line="4711"/>
         <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="4776"/>
+        <location filename="../UI/UserInterface.py" line="4779"/>
         <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="4831"/>
+        <location filename="../UI/UserInterface.py" line="4834"/>
         <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="4852"/>
+        <location filename="../UI/UserInterface.py" line="4855"/>
         <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="4945"/>
+        <location filename="../UI/UserInterface.py" line="4948"/>
         <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="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <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="4993"/>
+        <location filename="../UI/UserInterface.py" line="4996"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Comenzando proceso &apos;{0} {1}&apos;.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <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="5085"/>
+        <location filename="../UI/UserInterface.py" line="5088"/>
         <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="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation>&lt;P&gt;El punto de entrada de documentación &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; no ha podido encontrarse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de tareas &lt;b&gt;{0}&lt;/b&gt; no pudo ser guardado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <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="6102"/>
+        <location filename="../UI/UserInterface.py" line="6105"/>
         <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="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <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="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <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="6610"/>
+        <location filename="../UI/UserInterface.py" line="6613"/>
         <source>Trying host {0}</source>
         <translation>Probando host {0}</translation>
     </message>
@@ -75694,7 +75699,7 @@
         <translation>Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation>Archivo de atajos de teclado (*.e4k)</translation>
     </message>
@@ -75734,27 +75739,27 @@
         <translation>&lt;b&gt;Documentación de Python 2&lt;/b&gt;&lt;p&gt;Mostrar la documentación de Python 2. Si no se ha configurado un directorio con esta documentación, la ubicación de la documentación de Python 2 se asumirá en el directorio de documentación bajo la ubicación del ejecutable configurado de Python 2 en Windows, y en &lt;i&gt;/usr/share/doc/packages/python/html/python-docs-html&lt;/i&gt; para Unix. Establezca el valor de la variable de entorno PYTHON2DOCDIR para sobreescribir estas opciones. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <source>Error getting versions information</source>
         <translation>Error al obtener información de versiones</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6667"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <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="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Open Browser</source>
         <translation>Abrir Navegador</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <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="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <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>
@@ -75840,12 +75845,12 @@
         <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="4922"/>
+        <location filename="../UI/UserInterface.py" line="4925"/>
         <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="6882"/>
+        <location filename="../UI/UserInterface.py" line="6885"/>
         <source>Select Workspace Directory</source>
         <translation>Seleccionar Directorio para el Espacio de Trabajo</translation>
     </message>
@@ -76220,7 +76225,7 @@
         <translation>Abrir Documentación de PyQt5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5369"/>
+        <location filename="../UI/UserInterface.py" line="5372"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;P&gt;El punto de entrada de documentación de PyQt5 no ha sido configurado.&lt;/p&gt;</translation>
     </message>
@@ -76230,7 +76235,7 @@
         <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="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>%v/%m</source>
         <translation>%v/%m</translation>
     </message>
@@ -76250,7 +76255,7 @@
         <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="6605"/>
+        <location filename="../UI/UserInterface.py" line="6608"/>
         <source>Version Check</source>
         <translation>Verificación de Versión</translation>
     </message>
@@ -76320,27 +76325,27 @@
         <translation>&lt;b&gt;Documentación de API de Eric&lt;/b&gt;&lt;p&gt;Muestra la documentación de API de Eric. La ubicación de la documentación es el subdirectorio Documentation/Source del directorio de instalación de eric6.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt v.3 is not supported by eric6.</source>
         <translation>Qt v.3 no está soportado por eric6.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation>La actualización para &lt;b&gt;{0}&lt;/b&gt; de eric6 está disponible en &lt;b&gt;{1}&lt;/b&gt;. ¿Le gustaría obtenerla?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>Eric6 is up to date</source>
         <translation>Eric6 está actualizado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>You are using the latest version of eric6</source>
         <translation>Está utilizando la última versión de eric6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
         <translation>Eric6 todavía no está configurado. El diálogo de configuración va a ser iniciado.</translation>
     </message>
@@ -76350,17 +76355,17 @@
         <translation>Generando Barras de Herramientas para Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3648"/>
+        <location filename="../UI/UserInterface.py" line="3651"/>
         <source>&amp;User Tools</source>
         <translation>Herramientas de &amp;Usuario</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3720"/>
+        <location filename="../UI/UserInterface.py" line="3723"/>
         <source>No User Tools Configured</source>
         <translation>No se han Configurado Herramientas de Usuario</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6621"/>
+        <location filename="../UI/UserInterface.py" line="6624"/>
         <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
         <translation>La información de versiones no se puede descargar porque está &lt;b&gt;sin línea&lt;/b&gt;. Por favor, póngase en línea e inténtelo de nuevo.</translation>
     </message>
@@ -76405,7 +76410,7 @@
         <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="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>Load session</source>
         <translation>Cargar sesión</translation>
     </message>
@@ -76420,17 +76425,17 @@
         <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="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation>Archivos de Sesión de eric6 (*.e5s)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>Crash Session found!</source>
         <translation>¡Se ha hallado una sesión perdida!</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <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>
@@ -76445,17 +76450,17 @@
         <translation>Inicializando Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <source>Update Check</source>
         <translation>Comprobación Actualización</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <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="6746"/>
+        <location filename="../UI/UserInterface.py" line="6749"/>
         <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
         <translation>Ésta es una snapshot release the eric6. Una release estable más reciente podría estar disponible.</translation>
     </message>
@@ -76510,7 +76515,7 @@
         <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="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <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>
@@ -81018,12 +81023,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="55"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="58"/>
         <source>Virtualenv Target Directory</source>
         <translation type="unfinished">Directorio de Destino para el Virtualenv</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="60"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="63"/>
         <source>Python Interpreter</source>
         <translation type="unfinished">Intérprete de Python</translation>
     </message>
@@ -81532,52 +81537,52 @@
 <context>
     <name>VirtualenvManager</name>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>Add Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="173"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="185"/>
         <source>Change Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>Rename Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="270"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="304"/>
         <source>{0} - {1}</source>
         <translation type="unfinished">{0} - {1}</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Delete Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Do you really want to delete these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Remove Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Do you really want to remove these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86120,12 +86125,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="388"/>
+        <location filename="../eric6.py" line="391"/>
         <source>Starting...</source>
         <translation>Comenzando...</translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="393"/>
+        <location filename="../eric6.py" line="396"/>
         <source>Generating Main Window...</source>
         <translation>Generando Ventana Principal...</translation>
     </message>
--- a/i18n/eric6_fr.ts	Tue Jun 26 18:39:14 2018 +0200
+++ b/i18n/eric6_fr.ts	Tue Jun 26 18:50:04 2018 +0200
@@ -1530,37 +1530,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="130"/>
+        <location filename="../Utilities/BackgroundService.py" line="132"/>
         <source>{0} not configured.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <source>Restart background client?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="212"/>
+        <location filename="../Utilities/BackgroundService.py" line="214"/>
         <source>An error in Erics background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="423"/>
+        <location filename="../Utilities/BackgroundService.py" line="427"/>
         <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="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <source>Background client disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <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="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <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>
@@ -3103,44 +3103,44 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="281"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="285"/>
         <source>Main Menu</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="291"/>
-        <source>Rich Text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/CodeDocumentationViewer.py" line="296"/>
+        <source>Rich Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/CodeDocumentationViewer.py" line="304"/>
         <source>Plain Text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="471"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="480"/>
         <source>No documentation available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="498"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="507"/>
         <source>Definition: {0}{1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="501"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="510"/>
         <source>Definition: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="548"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="557"/>
         <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="553"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="562"/>
         <source>This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3162,13 +3162,13 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="509"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="518"/>
         <source>Type: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="517"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="526"/>
         <source>Note: {0}
 </source>
         <translation type="unfinished"></translation>
@@ -4591,72 +4591,72 @@
 <context>
     <name>ConfigurationWidget</name>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="136"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="143"/>
         <source>Application</source>
         <translation>Application</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="142"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="149"/>
         <source>CORBA</source>
         <translation>CORBA</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="148"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="155"/>
         <source>Email</source>
         <translation>Email</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="151"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="158"/>
         <source>Graphics</source>
         <translation>Graphiques</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="157"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="164"/>
         <source>Icons</source>
         <translation>Icônes</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="176"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
         <source>Plugin Manager</source>
         <translation>Gestionnaire de plugins</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="450"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
         <source>Printer</source>
         <translation>Impression</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="186"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="193"/>
         <source>Python</source>
         <translation>Python</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="189"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="196"/>
         <source>Qt</source>
         <translation>Qt</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="195"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="202"/>
         <source>Shell</source>
         <translation>Shell</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="198"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="205"/>
         <source>Tasks</source>
         <translation>Tâches</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="201"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="208"/>
         <source>Templates</source>
         <translation>Gabarits</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="207"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="214"/>
         <source>Version Control Systems</source>
         <translation>Contrôle de versions</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="212"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="219"/>
         <source>Debugger</source>
         <translation>Débogueur</translation>
     </message>
@@ -4666,259 +4666,259 @@
         <translation type="obsolete">Ruby</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="232"/>
         <source>Editor</source>
         <translation>Éditeur</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="235"/>
         <source>APIs</source>
         <translation>APIs</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="231"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="238"/>
         <source>Autocompletion</source>
         <translation>Autocomplétion</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="239"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="246"/>
         <source>Calltips</source>
         <translation>Calltips</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="248"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
         <source>General</source>
         <translation>Général</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="268"/>
-        <source>Typing</source>
-        <translation>Autoformat</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="271"/>
-        <source>Exporters</source>
-        <translation>Exportation</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="275"/>
+        <source>Typing</source>
+        <translation>Autoformat</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="278"/>
+        <source>Exporters</source>
+        <translation>Exportation</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="282"/>
         <source>Highlighters</source>
         <translation>Analyseurs syntaxiques</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="279"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="286"/>
         <source>Filetype Associations</source>
         <translation>Types de fichiers</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="283"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="290"/>
         <source>Styles</source>
         <translation>Styles</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="299"/>
-        <source>Help</source>
-        <translation>Aide</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
-        <source>Help Documentation</source>
-        <translation>Sources de documentation</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="306"/>
+        <source>Help</source>
+        <translation>Aide</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="464"/>
+        <source>Help Documentation</source>
+        <translation>Sources de documentation</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="313"/>
         <source>Help Viewers</source>
         <translation>Visionneurs d&apos;aide</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="317"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="324"/>
         <source>Project</source>
         <translation>Projet</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="314"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="321"/>
         <source>Project Viewer</source>
         <translation>Gestionnaire de projet</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="320"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="327"/>
         <source>Multiproject</source>
         <translation>Multi-projet</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="444"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="451"/>
         <source>Interface</source>
         <translation>Interface</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="331"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="338"/>
         <source>Viewmanager</source>
         <translation>Gestionnaire d&apos;affichage</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <source>Configuration Page Error</source>
         <translation>Erreur de la page de configuration</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="251"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="258"/>
         <source>Filehandling</source>
         <translation>Gestion des fichiers</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
-        <source>Searching</source>
-        <translation>Recherche</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="462"/>
-        <source>Appearance</source>
-        <translation>Apparence</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="242"/>
-        <source>QScintilla</source>
-        <translation>QScintilla</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="262"/>
+        <source>Searching</source>
+        <translation>Recherche</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <source>Appearance</source>
+        <translation>Apparence</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="249"/>
+        <source>QScintilla</source>
+        <translation>QScintilla</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="269"/>
         <source>Style</source>
         <translation>Style</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="290"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="297"/>
         <source>Properties</source>
         <translation>Propriétés</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="646"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
         <source>Preferences</source>
         <translation>Préférences</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="651"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="658"/>
         <source>Please select an entry of the list 
 to display the configuration page.</source>
         <translation>Choisir une entrée dans la liste
 pour afficher la page de configuration.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="447"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="454"/>
         <source>Network</source>
         <translation>Réseau</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="478"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="485"/>
         <source>Spell checking</source>
         <translation>Correction orthographique</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="221"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
         <source>Python3</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <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>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="287"/>
-        <source>Keywords</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="139"/>
-        <source>Cooperation</source>
-        <translation type="unfinished">Coopération</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="494"/>
-        <source>Tray Starter</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="473"/>
-        <source>VirusTotal Interface</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="453"/>
-        <source>Security</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="160"/>
-        <source>IRC</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="172"/>
-        <source>Notifications</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="265"/>
-        <source>Code Checkers</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="465"/>
-        <source>eric6 Web Browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="163"/>
-        <source>Log-Viewer</source>
-        <translation type="unfinished">Fenêtre de log</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="166"/>
-        <source>Mimetypes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
-        <source>Enter search text...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="294"/>
+        <source>Keywords</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="146"/>
+        <source>Cooperation</source>
+        <translation type="unfinished">Coopération</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="501"/>
+        <source>Tray Starter</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="480"/>
+        <source>VirusTotal Interface</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="460"/>
+        <source>Security</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="167"/>
+        <source>IRC</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="179"/>
+        <source>Notifications</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="272"/>
+        <source>Code Checkers</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="472"/>
+        <source>eric6 Web Browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="170"/>
+        <source>Log-Viewer</source>
+        <translation type="unfinished">Fenêtre de log</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="173"/>
+        <source>Mimetypes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="591"/>
+        <source>Enter search text...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="301"/>
         <source>Mouse Click Handlers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="476"/>
         <source>Flash Cookie Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="507"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="514"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="364"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="371"/>
         <source>Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="145"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="152"/>
         <source>Diff</source>
         <translation type="unfinished">Diff</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="245"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="252"/>
         <source>Documentation Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="190"/>
         <source>Protobuf</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="218"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
         <source>Python2</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5672,13 +5672,13 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1603"/>
         <source>Passive debug connection received
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1613"/>
+        <location filename="../Debugger/DebugServer.py" line="1617"/>
         <source>Passive debug connection closed
 </source>
         <translation type="unfinished"></translation>
@@ -20087,12 +20087,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
         <source>Commit ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
         <source>Author</source>
         <translation type="unfinished">Auteur</translation>
     </message>
@@ -20102,7 +20102,7 @@
         <translation type="unfinished">Date</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
         <source>Committer</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20112,7 +20112,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="106"/>
         <source>Subject</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20187,7 +20187,7 @@
         <translation type="unfinished">Copie depuis</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2119"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2121"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20247,328 +20247,328 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="92"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="98"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="100"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
         <source>Filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>File</source>
         <translation type="unfinished">Fichier</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="124"/>
         <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="134"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="136"/>
         <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;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="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="139"/>
         <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="140"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="142"/>
         <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="143"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="145"/>
         <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;É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="146"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="148"/>
         <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="198"/>
-        <source>Added</source>
-        <translation type="unfinished">Ajouté</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="199"/>
-        <source>Deleted</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="200"/>
-        <source>Modified</source>
-        <translation type="unfinished">Modifié</translation>
+        <source>Added</source>
+        <translation type="unfinished">Ajouté</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="201"/>
-        <source>Copied</source>
+        <source>Deleted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="202"/>
-        <source>Renamed</source>
-        <translation type="unfinished"></translation>
+        <source>Modified</source>
+        <translation type="unfinished">Modifié</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Type changed</source>
+        <source>Copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Unmerged</source>
+        <source>Renamed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
+        <source>Type changed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
+        <source>Unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
         <source>Unknown</source>
         <translation type="unfinished">Inconnu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="241"/>
-        <source>Show Commit ID Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="243"/>
+        <source>Show Commit ID Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="245"/>
         <source>Press to show the commit ID column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
-        <source>Show Author Columns</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="253"/>
+        <source>Show Author Columns</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="255"/>
         <source>Press to show the author columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
-        <source>Show Committer Columns</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="263"/>
+        <source>Show Committer Columns</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="265"/>
         <source>Press to show the committer columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
-        <source>Show Branches Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="273"/>
+        <source>Show Branches Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="275"/>
         <source>Press to show the branches column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
-        <source>Show Tags Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="283"/>
+        <source>Show Tags Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="285"/>
         <source>Press to show the Tags column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="313"/>
-        <source>Copy Commits</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <source>Copy Commits</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
         <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="320"/>
-        <source>Tag</source>
-        <translation type="unfinished">Tag</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <source>Tag</source>
+        <translation type="unfinished">Tag</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
         <source>Tag the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1812"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1814"/>
         <source>Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="326"/>
-        <source>Create a new branch at the selected commit.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
-        <source>Branch &amp;&amp; Switch</source>
+        <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"/>
+        <source>Branch &amp;&amp; Switch</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
         <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="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>Switch</source>
         <translation type="unfinished">Basculer de version</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
         <source>Switch the working directory to the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Show Short Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="342"/>
+        <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="345"/>
-        <source>Describe</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Describe</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
         <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="648"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="650"/>
         <source>The git process did not finish within 30s.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="651"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="653"/>
         <source>Could not start the git executable.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="654"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="656"/>
         <source>Git Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="771"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">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="1275"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1277"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1287"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1289"/>
         <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="1725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1727"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Select a branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Select a default branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Branch &amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2133"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2135"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2148"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
         <source>Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2174"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2176"/>
         <source>There is no difference.</source>
         <translation type="unfinished">Aucune différence.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <source>Save Diff</source>
         <translation type="unfinished">Enregistrer Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2303"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2305"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">Fichiers Patch (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2320"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2322"/>
         <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="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <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>
@@ -23685,7 +23685,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="395"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="397"/>
         <source>Git Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23711,7 +23711,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>Commit</source>
         <translation type="unfinished">Commit</translation>
     </message>
@@ -23786,322 +23786,322 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="65"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
         <source>Refresh</source>
         <translation type="unfinished">Rafraichir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="69"/>
         <source>Press to refresh the status display</source>
         <translation type="unfinished">Cliquer pour rafraichir l&apos;affichage</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="107"/>
         <source>Stage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="111"/>
         <source>Revert Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="115"/>
         <source>Stage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="119"/>
         <source>Revert Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="123"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="125"/>
         <source>Unstage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="127"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="129"/>
         <source>Unstage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
-        <source>added</source>
-        <translation type="unfinished">ajouté</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
-        <source>copied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
-        <source>deleted</source>
-        <translation type="unfinished">effacé</translation>
+        <source>added</source>
+        <translation type="unfinished">ajouté</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="172"/>
-        <source>modified</source>
-        <translation type="unfinished">modifié</translation>
+        <source>copied</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="173"/>
-        <source>renamed</source>
-        <translation type="unfinished"></translation>
+        <source>deleted</source>
+        <translation type="unfinished">effacé</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="174"/>
+        <source>modified</source>
+        <translation type="unfinished">modifié</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="175"/>
+        <source>renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="177"/>
         <source>not tracked</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="174"/>
-        <source>unmerged</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmodified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="176"/>
+        <source>unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmodified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="178"/>
         <source>ignored</source>
         <translation type="unfinished">ignoré</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="199"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="198"/>
-        <source>Amend</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="200"/>
-        <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="202"/>
-        <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="204"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
         <source>Unselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <source>Add</source>
         <translation type="unfinished">Ajouter</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="212"/>
         <source>Add the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="211"/>
-        <source>Stage changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="213"/>
-        <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="215"/>
-        <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="217"/>
+        <source>Unstage changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="219"/>
         <source>Unstages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="224"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226"/>
         <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="227"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="229"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="231"/>
         <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="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>Revert</source>
         <translation type="unfinished">Recouvrir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="242"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
-        <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="246"/>
-        <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="248"/>
+        <source>Restore missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="250"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
-        <source>Edit file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
+        <source>Edit file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257"/>
         <source>Edit the selected conflicting file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="260"/>
-        <source>Adjust column sizes</source>
-        <translation type="unfinished">Ajuster la largeur des colonnes</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="262"/>
+        <source>Adjust column sizes</source>
+        <translation type="unfinished">Ajuster la largeur des colonnes</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="264"/>
         <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="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">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="596"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="598"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished">Aucune entrée &quot;non-versionnée&quot; disponible/sélectionnée.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>Stage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>There are no stageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>Unstage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
         <source>Forget Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <source>Restore Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished">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="891"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="893"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="870"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872"/>
         <source>Staging Area to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="892"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <source>Working Tree to HEAD Commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Side-by-Side Difference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Select the compare method.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1201"/>
-        <source>Revert selected lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1203"/>
+        <source>Revert selected lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1205"/>
         <source>Revert hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1206"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25306,357 +25306,357 @@
 <context>
     <name>HelpBrowser</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1220"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1223"/>
         <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation>Ouvrir le lien dans un nouvel onglet<byte value="x9"/>Ctrl+LMB</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="745"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="748"/>
         <source>&lt;b&gt;Help Window&lt;/b&gt;&lt;p&gt;This window displays the selected help information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fenêtre d&apos;aide&lt;/b&gt;&lt;p&gt;Cette fenêtre affiche l&apos;aide sélectionnée&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1518"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1521"/>
         <source>Web Inspector...</source>
         <translation>Inspecteur Web...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2202"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2205"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2210"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2214"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1424"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
         <source>Bookmark this Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1227"/>
-        <source>Save Lin&amp;k</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1230"/>
+        <source>Save Lin&amp;k</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1233"/>
         <source>Bookmark this Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1237"/>
-        <source>Copy Link to Clipboard</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1258"/>
-        <source>Open Image in New Tab</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1265"/>
-        <source>Save Image</source>
-        <translation type="unfinished">Enregistrer l&apos;image</translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1268"/>
-        <source>Copy Image to Clipboard</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1270"/>
-        <source>Copy Image Location to Clipboard</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1283"/>
-        <source>Block Image</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1457"/>
-        <source>Search with...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="931"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="976"/>
-        <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="956"/>
-        <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2181"/>
-        <source>Error loading page: {0}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2199"/>
-        <source>When connecting to: {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
-        <source>Web Database Quota</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
-        <source>&lt;p&gt;The database quota of &lt;strong&gt;{0}&lt;/strong&gt; has been exceeded while accessing database &lt;strong&gt;{1}&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Shall it be changed?&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
-        <source>New Web Database Quota</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2297"/>
-        <source>bytes</source>
-        <translation type="unfinished">octets</translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2300"/>
-        <source>kB</source>
-        <translation type="unfinished">kB</translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2303"/>
-        <source>MB</source>
-        <translation type="unfinished">MB</translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
-        <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1511"/>
-        <source>Add to web search toolbar</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
-        <source>Method not supported</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
-        <source>{0} method is not supported.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
-        <source>Search engine</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
-        <source>Choose the desired search engine</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
-        <source>Engine name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
-        <source>Enter a name for the engine</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2217"/>
-        <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1248"/>
-        <source>Scan Link with VirusTotal</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1291"/>
-        <source>Scan Image with VirusTotal</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
+        <source>Copy Link to Clipboard</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1261"/>
+        <source>Open Image in New Tab</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1268"/>
+        <source>Save Image</source>
+        <translation type="unfinished">Enregistrer l&apos;image</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1271"/>
+        <source>Copy Image to Clipboard</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1273"/>
+        <source>Copy Image Location to Clipboard</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1286"/>
+        <source>Block Image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1460"/>
+        <source>Search with...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="934"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="979"/>
+        <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="959"/>
+        <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2184"/>
+        <source>Error loading page: {0}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2202"/>
+        <source>When connecting to: {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
+        <source>Web Database Quota</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
+        <source>&lt;p&gt;The database quota of &lt;strong&gt;{0}&lt;/strong&gt; has been exceeded while accessing database &lt;strong&gt;{1}&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Shall it be changed?&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
+        <source>New Web Database Quota</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2300"/>
+        <source>bytes</source>
+        <translation type="unfinished">octets</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2303"/>
+        <source>kB</source>
+        <translation type="unfinished">kB</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2306"/>
+        <source>MB</source>
+        <translation type="unfinished">MB</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
+        <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1514"/>
+        <source>Add to web search toolbar</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
+        <source>Method not supported</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
+        <source>{0} method is not supported.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
+        <source>Search engine</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
+        <source>Choose the desired search engine</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
+        <source>Engine name</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
+        <source>Enter a name for the engine</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2220"/>
+        <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1251"/>
+        <source>Scan Link with VirusTotal</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1294"/>
+        <source>Scan Image with VirusTotal</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1243"/>
         <source>Send Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1276"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1279"/>
         <source>Send Image Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1384"/>
-        <source>This Frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1387"/>
-        <source>Show &amp;only this frame</source>
+        <source>This Frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1390"/>
+        <source>Show &amp;only this frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1393"/>
         <source>Show in new &amp;tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1397"/>
-        <source>&amp;Print</source>
-        <translation type="unfinished">&amp;Imprimer</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1400"/>
-        <source>Print Preview</source>
-        <translation type="unfinished">Aperçu avant impression</translation>
+        <source>&amp;Print</source>
+        <translation type="unfinished">&amp;Imprimer</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1403"/>
+        <source>Print Preview</source>
+        <translation type="unfinished">Aperçu avant impression</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1406"/>
         <source>Print as PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1407"/>
-        <source>Zoom &amp;in</source>
-        <translation type="unfinished">Zoom a&amp;vant</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1410"/>
-        <source>Zoom &amp;reset</source>
-        <translation type="unfinished">Annulation du &amp;zoom</translation>
+        <source>Zoom &amp;in</source>
+        <translation type="unfinished">Zoom a&amp;vant</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1413"/>
+        <source>Zoom &amp;reset</source>
+        <translation type="unfinished">Annulation du &amp;zoom</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1416"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished">Zoom a&amp;rrière</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1417"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1420"/>
         <source>Show frame so&amp;urce</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1430"/>
         <source>Send Page Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1448"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1451"/>
         <source>Send Text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1482"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1485"/>
         <source>Google Translate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1491"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1494"/>
         <source>Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1501"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1504"/>
         <source>Go to web address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1434"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1437"/>
         <source>User Agent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2222"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2225"/>
         <source>Try Again</source>
         <translation type="unfinished">Essayer à nouveau</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1311"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1314"/>
         <source>Play</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1315"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1318"/>
         <source>Pause</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1319"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1322"/>
         <source>Unmute</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1323"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1326"/>
         <source>Mute</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1327"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1330"/>
         <source>Copy Media Address to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1333"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1336"/>
         <source>Send Media Address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1339"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1342"/>
         <source>Save Media</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>eric6 Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5. Please upgrade.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2626"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2629"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5.Please upgrade.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;L&apos;impression n&apos;est pas disponible à cause d&apos;un bug de PyQt4. Merci de mettre à jour PyQt.&lt;/p&gt; {5.?}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1200"/>
-        <source>Add New Page</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1203"/>
+        <source>Add New Page</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1206"/>
         <source>Configure Speed Dial</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1210"/>
         <source>Reload All Dials</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1214"/>
         <source>Reset to Default Dials</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26999,82 +26999,82 @@
 <context>
     <name>HelpWebPage</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="376"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="379"/>
         <source>Error loading page: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="395"/>
-        <source>When connecting to: {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="398"/>
+        <source>When connecting to: {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="401"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="403"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="406"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="408"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="411"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="414"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="417"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>Resending POST request</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>In order to display the site, the request along with all the data must be sent once again, which may lead to some unexpected behaviour of the site e.g. the same action might be performed once again. Do you want to continue anyway?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="419"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="422"/>
         <source>Try Again</source>
         <translation type="unfinished">Essayer à nouveau</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="351"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="354"/>
         <source>Content blocked by AdBlock Plus</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="352"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="355"/>
         <source>Blocked by rule: &lt;i&gt;{0}&lt;/i&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="309"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="312"/>
         <source>Select files to upload...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>SSL Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>This site does not contain SSL information.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Protocol Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Open external application for {0}-link?
 URL: {1}</source>
         <translation type="unfinished"></translation>
@@ -42897,27 +42897,27 @@
 <context>
     <name>JavaScriptEricObject</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="114"/>
         <source>Search!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="150"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="153"/>
         <source>Search results provided by {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="108"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
         <source>Welcome to eric6 Web Browser!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="110"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="113"/>
         <source>eric6 Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="112"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="115"/>
         <source>About eric6</source>
         <translation type="unfinished"></translation>
     </message>
@@ -45825,12 +45825,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <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>
@@ -50747,22 +50747,22 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="484"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="499"/>
         <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="653"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="668"/>
         <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="597"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="612"/>
         <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="681"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="696"/>
         <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>
@@ -50770,40 +50770,45 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="88"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="76"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="87"/>
         <source>Enable JavaScript</source>
         <translation type="unfinished">Activer JavaScript</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="83"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="94"/>
         <source>Select to enable support for 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="92"/>
         <source>Enable Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="190"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="205"/>
         <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="252"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="267"/>
         <source>Preview - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="254"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="269"/>
         <source>Preview</source>
         <translation type="unfinished">Aperçu</translation>
     </message>
+    <message>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="70"/>
+        <source>&lt;b&gt;HTML Preview is not available!&lt;br/&gt;Install QtWebEngine or QtWebKit.&lt;/b&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PreviewerQSS</name>
@@ -52843,7 +52848,7 @@
         <translation>Compilation des feuilles...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="905"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="943"/>
         <source>Abort</source>
         <translation>Abandon</translation>
     </message>
@@ -53743,7 +53748,7 @@
         <translation>Compilation des ressources...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="777"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="850"/>
         <source>Abort</source>
         <translation>Abandonner</translation>
     </message>
@@ -62663,275 +62668,275 @@
 <context>
     <name>ShellWindow</name>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Quit</source>
         <translation type="unfinished">Quitter</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">&amp;Quitter</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished">Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="201"/>
         <source>Quit the Shell</source>
         <translation type="unfinished">Quitter l&apos;IDE</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="197"/>
+        <location filename="../QScintilla/ShellWindow.py" line="202"/>
         <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New Window</source>
         <translation type="unfinished">Nouvelle fenêtre</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="211"/>
+        <location filename="../QScintilla/ShellWindow.py" line="216"/>
         <source>Open a new Shell window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="213"/>
+        <location filename="../QScintilla/ShellWindow.py" line="218"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="220"/>
-        <source>Restart</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="225"/>
+        <source>Restart</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="230"/>
         <source>Restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="227"/>
+        <location filename="../QScintilla/ShellWindow.py" line="232"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="234"/>
-        <source>Restart and Clear</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="239"/>
+        <source>Restart and Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="244"/>
         <source>Clear the window and restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="241"/>
+        <location filename="../QScintilla/ShellWindow.py" line="246"/>
         <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>Show History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>&amp;Show History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="882"/>
+        <location filename="../QScintilla/ShellWindow.py" line="887"/>
         <source>Show the shell history in a dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>Clear History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>&amp;Clear History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="892"/>
+        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Clear the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
+        <location filename="../QScintilla/ShellWindow.py" line="901"/>
         <source>Select History Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
-        <source>Select History &amp;Entry</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
+        <source>Select History &amp;Entry</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="906"/>
         <source>Select an entry of the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>About</source>
         <translation type="unfinished">À propos de</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>&amp;About</source>
         <translation type="unfinished">&amp;À propos de </translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="913"/>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
         <source>Display information about this software</source>
         <translation type="unfinished">Affiche les informations concernant le logiciel</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="915"/>
+        <location filename="../QScintilla/ShellWindow.py" line="920"/>
         <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;À propos de&lt;/b&gt;&lt;p&gt;Affiche certaines informations concernant le logiciel.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About Qt</source>
         <translation type="unfinished">À propos de Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished">À propos de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="925"/>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished">Affiche les informations concernant Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="927"/>
+        <location filename="../QScintilla/ShellWindow.py" line="932"/>
         <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;À propos de Qt&lt;/b&gt;&lt;p&gt;Affiche les informations concernant Qt&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished">Qu&apos;est-ce que c&apos;est ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished">&amp;Qu&apos;est-ce que c&apos;est?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
+        <location filename="../QScintilla/ShellWindow.py" line="945"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">Aide contextuelle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="941"/>
+        <location filename="../QScintilla/ShellWindow.py" line="946"/>
         <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;Affiche l&apos;aide contextuelle&lt;/b&gt;&lt;p&gt;Dans le mode &quot;Qu&apos;est-ce que c&apos;est?&quot;, la souris est affichée avec un point d&apos;interrogation, et on peut cliquer sur les éléments de  l&apos;interface pour obtenir une courte description de l&apos;élément. Cette fonction peut être obtenue avec le bouton d&apos;aide contextuelle de la barre principale.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>About eric6 Shell Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1105"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1110"/>
         <source>&amp;File</source>
         <translation type="unfinished">&amp;Fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1114"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1119"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">&amp;Edition</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1125"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1130"/>
         <source>&amp;View</source>
         <translation type="unfinished">&amp;Affichage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1132"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
         <source>Histor&amp;y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1139"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1144"/>
         <source>&amp;Start</source>
         <translation type="unfinished">&amp;Lancer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1145"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1150"/>
         <source>&amp;Help</source>
         <translation type="unfinished">A&amp;ide</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1180"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1185"/>
         <source>File</source>
         <translation type="unfinished">Fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1189"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1194"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1202"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1207"/>
         <source>View</source>
         <translation type="unfinished">Affichage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1209"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1214"/>
         <source>History</source>
         <translation type="unfinished">Historique</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1215"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1220"/>
         <source>Help</source>
         <translation type="unfinished">Aide</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1241"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="570"/>
+        <location filename="../QScintilla/ShellWindow.py" line="575"/>
         <source>Move forward one history entry</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62941,7 +62946,7 @@
         <translation type="obsolete">Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="580"/>
+        <location filename="../QScintilla/ShellWindow.py" line="585"/>
         <source>Move back one history entry</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74120,12 +74125,12 @@
         <translation type="unfinished">Afficher les versions</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="523"/>
+        <location filename="../Tools/TrayStarter.py" line="526"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation type="unfinished">&lt;h3&gt;Numéros de version&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="550"/>
+        <location filename="../Tools/TrayStarter.py" line="553"/>
         <source>&lt;/table&gt;</source>
         <translation type="unfinished">&lt;/table&gt;</translation>
     </message>
@@ -74711,7 +74716,7 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>Unittest</source>
         <translation>Tests unitaires</translation>
     </message>
@@ -74726,17 +74731,17 @@
         <translation>^Erreur:</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="269"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="271"/>
         <source>You must enter a test suite file.</source>
         <translation>Vous devez entrer un fichier test correct.</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="277"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="279"/>
         <source>Preparing Testsuite</source>
         <translation>Préparation de Testsuite</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="475"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="477"/>
         <source>Running</source>
         <translation>En cours d&apos;execution</translation>
     </message>
@@ -74916,42 +74921,42 @@
         <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="640"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="642"/>
         <source>Show Source</source>
         <translation>Afficher les sources</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="209"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="211"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="205"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="207"/>
         <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;{1}&lt;br&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="499"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="501"/>
         <source>Ran {0} test in {1:.3f}s</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="503"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="505"/>
         <source>Ran {0} tests in {1:.3f}s</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="520"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="522"/>
         <source>Failure: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="535"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="537"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74986,17 +74991,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="550"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="552"/>
         <source>    Skipped: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="565"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="567"/>
         <source>    Expected Failure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="579"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="581"/>
         <source>    Unexpected Success</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75288,7 +75293,7 @@
         <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="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <source>Report Bug</source>
         <translation>Rapport de bogue</translation>
     </message>
@@ -75363,7 +75368,7 @@
         <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="5846"/>
+        <location filename="../UI/UserInterface.py" line="5849"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Exporter les raccourcis clavier</translation>
     </message>
@@ -75383,7 +75388,7 @@
         <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="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Importer des raccourcis clavier</translation>
     </message>
@@ -75428,7 +75433,7 @@
         <translation>Outils</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <source>Help</source>
         <translation>Aide</translation>
     </message>
@@ -75443,12 +75448,12 @@
         <translation>&amp;Barres d&apos;Outils</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <source>Problem</source>
         <translation>Problème</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
@@ -75504,7 +75509,7 @@
         <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="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <source>Unittest Project</source>
         <translation>Projet de tests unitaires</translation>
     </message>
@@ -75559,12 +75564,12 @@
         <translation>Tests &amp;unitaires</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <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="../UI/UserInterface.py" line="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <source>Drop Error</source>
         <translation>Erreur de suppression</translation>
     </message>
@@ -75699,27 +75704,27 @@
         <translation>Visualisueur de tâches</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>Save tasks</source>
         <translation>Enregistrement des tâches</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <source>Read tasks</source>
         <translation>Lecture des tâches</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <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="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <source>Documentation Missing</source>
         <translation>Documentation Manquante</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <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>
@@ -75814,7 +75819,7 @@
         <translation>Ouvre la documentation sur les APIs Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4728"/>
+        <location filename="../UI/UserInterface.py" line="4731"/>
         <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>
@@ -75890,57 +75895,57 @@
         <translation>Profils</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3628"/>
+        <location filename="../UI/UserInterface.py" line="3631"/>
         <source>&amp;Builtin Tools</source>
         <translation>Outils &amp;internes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>Documentation</source>
         <translation>Documentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5303"/>
+        <location filename="../UI/UserInterface.py" line="5306"/>
         <source>&lt;p&gt;The PyQt4 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&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="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Error during updates check</source>
         <translation>Erreur durant la recherche de mises à jour</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>Update available</source>
         <translation>Mise à jour disponible</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3259"/>
+        <location filename="../UI/UserInterface.py" line="3262"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Numéros de version&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6826"/>
+        <location filename="../UI/UserInterface.py" line="6829"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Open Browser</source>
         <translation type="unfinished">Ouverture du navigateur</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished">Impossible de lancer le navigateur web</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3673"/>
+        <location filename="../UI/UserInterface.py" line="3676"/>
         <source>Configure Tool Groups ...</source>
         <translation>Configuration des groupes d&apos;outils...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3677"/>
+        <location filename="../UI/UserInterface.py" line="3680"/>
         <source>Configure current Tool Group ...</source>
         <translation>Configuration du groupe d&apos;outils courant...</translation>
     </message>
@@ -75955,17 +75960,17 @@
         <translation>Afficher les &amp;outils externes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Annuler</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Could not perform updates check.</source>
         <translation>Impossible de vérifier les mises à jour.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>First time usage</source>
         <translation>Première utilisation</translation>
     </message>
@@ -76005,7 +76010,7 @@
         <translation>Infos &amp;Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3645"/>
+        <location filename="../UI/UserInterface.py" line="3648"/>
         <source>&amp;Plugin Tools</source>
         <translation>Outils &amp;plugins</translation>
     </message>
@@ -76035,12 +76040,12 @@
         <translation>As&amp;sistants</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3793"/>
+        <location filename="../UI/UserInterface.py" line="3796"/>
         <source>&amp;Show all</source>
         <translation>Tout &amp;afficher</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3795"/>
+        <location filename="../UI/UserInterface.py" line="3798"/>
         <source>&amp;Hide all</source>
         <translation>Tout &amp;masquer</translation>
     </message>
@@ -76060,7 +76065,7 @@
         <translation>Affiche les versions disponibles pour le téléchargement</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6812"/>
+        <location filename="../UI/UserInterface.py" line="6815"/>
         <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>
@@ -76150,17 +76155,17 @@
         <translation>Gestionnaire de &amp;multi-projet</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>External Tools</source>
         <translation>Outils externes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6165"/>
+        <location filename="../UI/UserInterface.py" line="6168"/>
         <source>Save session</source>
         <translation>Enregistrer la session</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <source>Read session</source>
         <translation>Chargement de session</translation>
     </message>
@@ -76235,12 +76240,12 @@
         <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="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>Restart application</source>
         <translation>Redémarrage de l&apos;application</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <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>
@@ -76390,7 +76395,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt 3 support</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76430,104 +76435,104 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <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="4548"/>
+        <location filename="../UI/UserInterface.py" line="4551"/>
         <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="4615"/>
+        <location filename="../UI/UserInterface.py" line="4618"/>
         <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="4666"/>
+        <location filename="../UI/UserInterface.py" line="4669"/>
         <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="4708"/>
+        <location filename="../UI/UserInterface.py" line="4711"/>
         <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="4776"/>
+        <location filename="../UI/UserInterface.py" line="4779"/>
         <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="4831"/>
+        <location filename="../UI/UserInterface.py" line="4834"/>
         <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="4852"/>
+        <location filename="../UI/UserInterface.py" line="4855"/>
         <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="4945"/>
+        <location filename="../UI/UserInterface.py" line="4948"/>
         <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="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4993"/>
+        <location filename="../UI/UserInterface.py" line="4996"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <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="5085"/>
+        <location filename="../UI/UserInterface.py" line="5088"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <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="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <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="6102"/>
+        <location filename="../UI/UserInterface.py" line="6105"/>
         <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="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <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="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <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="6610"/>
+        <location filename="../UI/UserInterface.py" line="6613"/>
         <source>Trying host {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76562,7 +76567,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76602,17 +76607,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6667"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <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="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <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>
@@ -76698,12 +76703,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4922"/>
+        <location filename="../UI/UserInterface.py" line="4925"/>
         <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="6882"/>
+        <location filename="../UI/UserInterface.py" line="6885"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77078,7 +77083,7 @@
         <translation type="unfinished">Lance la documentation PyQt4 {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5369"/>
+        <location filename="../UI/UserInterface.py" line="5372"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;L&apos;emplacement de la documentation PyQt4 n&apos;a pas été configuré.&lt;/p&gt; {5 ?}</translation>
     </message>
@@ -77088,7 +77093,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77108,7 +77113,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6605"/>
+        <location filename="../UI/UserInterface.py" line="6608"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77178,27 +77183,27 @@
         <translation type="unfinished">&lt;b&gt;Documentation de l&apos;API Eric&lt;/b&gt;&lt;p&gt;Affiche la do. The location for the documentation is the Documentation/Source subdirectory of the eric4 installation directory.&lt;/p&gt; {5 ?} {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt v.3 is not supported by eric6.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>Eric6 is up to date</source>
         <translation type="unfinished">Eric4 est à jour {5 ?} {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>You are using the latest version of eric6</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
         <translation type="unfinished">eric4 n&apos;a pas encore été configuré. La fenêtre de configuration va être ouverte. {5 ?} {6 ?}</translation>
     </message>
@@ -77208,17 +77213,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3648"/>
+        <location filename="../UI/UserInterface.py" line="3651"/>
         <source>&amp;User Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3720"/>
+        <location filename="../UI/UserInterface.py" line="3723"/>
         <source>No User Tools Configured</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6621"/>
+        <location filename="../UI/UserInterface.py" line="6624"/>
         <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77263,7 +77268,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>Load session</source>
         <translation type="unfinished">Charger la session</translation>
     </message>
@@ -77278,17 +77283,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77303,17 +77308,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <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="6746"/>
+        <location filename="../UI/UserInterface.py" line="6749"/>
         <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77368,7 +77373,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81917,12 +81922,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="55"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="58"/>
         <source>Virtualenv Target Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="60"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="63"/>
         <source>Python Interpreter</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82361,52 +82366,52 @@
 <context>
     <name>VirtualenvManager</name>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>Add Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="173"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="185"/>
         <source>Change Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>Rename Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="270"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="304"/>
         <source>{0} - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Delete Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Do you really want to delete these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Remove Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Do you really want to remove these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86961,12 +86966,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="388"/>
+        <location filename="../eric6.py" line="391"/>
         <source>Starting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="393"/>
+        <location filename="../eric6.py" line="396"/>
         <source>Generating Main Window...</source>
         <translation type="unfinished">Création de la fenêtre principale...</translation>
     </message>
--- a/i18n/eric6_it.ts	Tue Jun 26 18:39:14 2018 +0200
+++ b/i18n/eric6_it.ts	Tue Jun 26 18:50:04 2018 +0200
@@ -1460,37 +1460,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="130"/>
+        <location filename="../Utilities/BackgroundService.py" line="132"/>
         <source>{0} not configured.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <source>Restart background client?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="212"/>
+        <location filename="../Utilities/BackgroundService.py" line="214"/>
         <source>An error in Erics background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="423"/>
+        <location filename="../Utilities/BackgroundService.py" line="427"/>
         <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="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <source>Background client disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <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="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <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>
@@ -3016,44 +3016,44 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="281"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="285"/>
         <source>Main Menu</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="291"/>
-        <source>Rich Text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/CodeDocumentationViewer.py" line="296"/>
+        <source>Rich Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/CodeDocumentationViewer.py" line="304"/>
         <source>Plain Text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="471"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="480"/>
         <source>No documentation available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="498"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="507"/>
         <source>Definition: {0}{1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="501"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="510"/>
         <source>Definition: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="548"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="557"/>
         <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="553"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="562"/>
         <source>This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3075,13 +3075,13 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="509"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="518"/>
         <source>Type: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="517"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="526"/>
         <source>Note: {0}
 </source>
         <translation type="unfinished"></translation>
@@ -4503,329 +4503,329 @@
 <context>
     <name>ConfigurationWidget</name>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="136"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="143"/>
         <source>Application</source>
         <translation>Applicazione</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="142"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="149"/>
         <source>CORBA</source>
         <translation>CORBA</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="148"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="155"/>
         <source>Email</source>
         <translation>Email</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="151"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="158"/>
         <source>Graphics</source>
         <translation>Grafica</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="157"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="164"/>
         <source>Icons</source>
         <translation>Icone</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="176"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
         <source>Plugin Manager</source>
         <translation>Gestore plugin</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="450"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
         <source>Printer</source>
         <translation>Stampante</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="186"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="193"/>
         <source>Python</source>
         <translation>Python</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="189"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="196"/>
         <source>Qt</source>
         <translation>Qt</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="195"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="202"/>
         <source>Shell</source>
         <translation>Shell</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="198"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="205"/>
         <source>Tasks</source>
         <translation>Task</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="201"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="208"/>
         <source>Templates</source>
         <translation>Modello</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="207"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="214"/>
         <source>Version Control Systems</source>
         <translation>Controllo di versione</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="212"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="219"/>
         <source>Debugger</source>
         <translation>Debugger</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="232"/>
         <source>Editor</source>
         <translation>Editor</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="235"/>
         <source>APIs</source>
         <translation>APIs</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="231"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="238"/>
         <source>Autocompletion</source>
         <translation>Autocompletamento</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="239"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="246"/>
         <source>Calltips</source>
         <translation>Calltips</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="248"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
         <source>General</source>
         <translation>Generale</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="268"/>
-        <source>Typing</source>
-        <translation>Digitazione</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="271"/>
-        <source>Exporters</source>
-        <translation>Esportatori</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="275"/>
+        <source>Typing</source>
+        <translation>Digitazione</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="278"/>
+        <source>Exporters</source>
+        <translation>Esportatori</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="282"/>
         <source>Highlighters</source>
         <translation>Evidenziatori</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="279"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="286"/>
         <source>Filetype Associations</source>
         <translation>Associazione tipi file</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="283"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="290"/>
         <source>Styles</source>
         <translation>Stili</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="299"/>
-        <source>Help</source>
-        <translation>Aiuto</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
-        <source>Help Documentation</source>
-        <translation>Aiuto Documentazione</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="306"/>
+        <source>Help</source>
+        <translation>Aiuto</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="464"/>
+        <source>Help Documentation</source>
+        <translation>Aiuto Documentazione</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="313"/>
         <source>Help Viewers</source>
         <translation>Aiuto visualizzatori</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="317"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="324"/>
         <source>Project</source>
         <translation>Progetto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="314"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="321"/>
         <source>Project Viewer</source>
         <translation>Visualizzatore progetto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="320"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="327"/>
         <source>Multiproject</source>
         <translation>Multiprogetto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="444"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="451"/>
         <source>Interface</source>
         <translation>Interfaccia</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="331"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="338"/>
         <source>Viewmanager</source>
         <translation>Gestrore viste</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <source>Configuration Page Error</source>
         <translation>Configurazione pagine errore</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="251"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="258"/>
         <source>Filehandling</source>
         <translation>Gestione file</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
-        <source>Searching</source>
-        <translation>Ricerca</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="462"/>
-        <source>Appearance</source>
-        <translation>Aspetto</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="242"/>
-        <source>QScintilla</source>
-        <translation>QScintilla</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="262"/>
+        <source>Searching</source>
+        <translation>Ricerca</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <source>Appearance</source>
+        <translation>Aspetto</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="249"/>
+        <source>QScintilla</source>
+        <translation>QScintilla</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="269"/>
         <source>Style</source>
         <translation>Stile</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="290"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="297"/>
         <source>Properties</source>
         <translation>Proprietà</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="646"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
         <source>Preferences</source>
         <translation>Preferenze</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="651"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="658"/>
         <source>Please select an entry of the list 
 to display the configuration page.</source>
         <translation>Selezionare un elemento della lista
 da mostrare nella pagina di configurazione.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="447"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="454"/>
         <source>Network</source>
         <translation>Rete</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="478"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="485"/>
         <source>Spell checking</source>
         <translation>Correzione automatica</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="221"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
         <source>Python3</source>
         <translation>Python3</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <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>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="287"/>
-        <source>Keywords</source>
-        <translation>Parole chiave</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="139"/>
-        <source>Cooperation</source>
-        <translation>Cooperazione</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="494"/>
-        <source>Tray Starter</source>
-        <translation>Tray Starter</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="473"/>
-        <source>VirusTotal Interface</source>
-        <translation>Interfaccia VirusTotal</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="453"/>
-        <source>Security</source>
-        <translation>Sicurezza</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="172"/>
-        <source>Notifications</source>
-        <translation>Notificazioni</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="160"/>
-        <source>IRC</source>
-        <translation>IRC</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="265"/>
-        <source>Code Checkers</source>
-        <translation>Correttori di codice</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="465"/>
-        <source>eric6 Web Browser</source>
-        <translation type="unfinished">Web Browser di eric6</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="163"/>
-        <source>Log-Viewer</source>
-        <translation type="unfinished">Log-Viewer</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="166"/>
-        <source>Mimetypes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
-        <source>Enter search text...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="294"/>
+        <source>Keywords</source>
+        <translation>Parole chiave</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="146"/>
+        <source>Cooperation</source>
+        <translation>Cooperazione</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="501"/>
+        <source>Tray Starter</source>
+        <translation>Tray Starter</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="480"/>
+        <source>VirusTotal Interface</source>
+        <translation>Interfaccia VirusTotal</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="460"/>
+        <source>Security</source>
+        <translation>Sicurezza</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="179"/>
+        <source>Notifications</source>
+        <translation>Notificazioni</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="167"/>
+        <source>IRC</source>
+        <translation>IRC</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="272"/>
+        <source>Code Checkers</source>
+        <translation>Correttori di codice</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="472"/>
+        <source>eric6 Web Browser</source>
+        <translation type="unfinished">Web Browser di eric6</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="170"/>
+        <source>Log-Viewer</source>
+        <translation type="unfinished">Log-Viewer</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="173"/>
+        <source>Mimetypes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="591"/>
+        <source>Enter search text...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="301"/>
         <source>Mouse Click Handlers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="476"/>
         <source>Flash Cookie Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="507"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="514"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="364"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="371"/>
         <source>Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="145"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="152"/>
         <source>Diff</source>
         <translation type="unfinished">Diff</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="245"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="252"/>
         <source>Documentation Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="190"/>
         <source>Protobuf</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="218"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
         <source>Python2</source>
         <translation type="unfinished">Python2</translation>
     </message>
@@ -5575,13 +5575,13 @@
         <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="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1603"/>
         <source>Passive debug connection received
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1613"/>
+        <location filename="../Debugger/DebugServer.py" line="1617"/>
         <source>Passive debug connection closed
 </source>
         <translation type="unfinished"></translation>
@@ -19641,12 +19641,12 @@
         <translation type="unfinished">Graph</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
         <source>Commit ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
         <source>Author</source>
         <translation type="unfinished">Autore</translation>
     </message>
@@ -19656,7 +19656,7 @@
         <translation type="unfinished">Data</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
         <source>Committer</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19666,7 +19666,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="106"/>
         <source>Subject</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19741,7 +19741,7 @@
         <translation type="unfinished">Copia da</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2119"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2121"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19801,328 +19801,328 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="92"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="98"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="100"/>
         <source>Find</source>
         <translation type="unfinished">Trova</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
         <source>Filter</source>
         <translation type="unfinished">Filtro</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="124"/>
         <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="134"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="136"/>
         <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="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="139"/>
         <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="140"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="142"/>
         <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="143"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="145"/>
         <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="146"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="148"/>
         <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="198"/>
-        <source>Added</source>
-        <translation type="unfinished">Aggiunto</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="199"/>
-        <source>Deleted</source>
-        <translation type="unfinished">Cancellato</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="200"/>
-        <source>Modified</source>
-        <translation type="unfinished">Modificato</translation>
+        <source>Added</source>
+        <translation type="unfinished">Aggiunto</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="201"/>
-        <source>Copied</source>
-        <translation type="unfinished"></translation>
+        <source>Deleted</source>
+        <translation type="unfinished">Cancellato</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="202"/>
-        <source>Renamed</source>
-        <translation type="unfinished"></translation>
+        <source>Modified</source>
+        <translation type="unfinished">Modificato</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Type changed</source>
+        <source>Copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Unmerged</source>
+        <source>Renamed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
+        <source>Type changed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
+        <source>Unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
         <source>Unknown</source>
         <translation type="unfinished">Sconosciuto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="241"/>
-        <source>Show Commit ID Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="243"/>
+        <source>Show Commit ID Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="245"/>
         <source>Press to show the commit ID column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
-        <source>Show Author Columns</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="253"/>
+        <source>Show Author Columns</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="255"/>
         <source>Press to show the author columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
-        <source>Show Committer Columns</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="263"/>
+        <source>Show Committer Columns</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="265"/>
         <source>Press to show the committer columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
-        <source>Show Branches Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="273"/>
+        <source>Show Branches Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="275"/>
         <source>Press to show the branches column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
-        <source>Show Tags Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="283"/>
+        <source>Show Tags Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="285"/>
         <source>Press to show the Tags column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="313"/>
-        <source>Copy Commits</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <source>Copy Commits</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
         <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="320"/>
-        <source>Tag</source>
-        <translation type="unfinished">Tag</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <source>Tag</source>
+        <translation type="unfinished">Tag</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
         <source>Tag the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1812"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1814"/>
         <source>Branch</source>
         <translation type="unfinished">Branch</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="326"/>
-        <source>Create a new branch at the selected commit.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
-        <source>Branch &amp;&amp; Switch</source>
+        <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"/>
+        <source>Branch &amp;&amp; Switch</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
         <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="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
         <source>Switch the working directory to the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Show Short Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="342"/>
+        <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="345"/>
-        <source>Describe</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Describe</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
         <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="648"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="650"/>
         <source>The git process did not finish within 30s.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="651"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="653"/>
         <source>Could not start the git executable.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="654"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="656"/>
         <source>Git Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="771"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <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="1275"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1277"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1287"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1289"/>
         <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="1725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1727"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <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="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Select a branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Select a default branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Branch &amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <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="2133"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2135"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2148"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
         <source>Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2174"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2176"/>
         <source>There is no difference.</source>
         <translation type="unfinished">Non ci sono differenze.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <source>Save Diff</source>
         <translation type="unfinished">Salva Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2303"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2305"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">File Patch (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2320"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2322"/>
         <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="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <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>
@@ -23240,7 +23240,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="395"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="397"/>
         <source>Git Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23266,7 +23266,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>Commit</source>
         <translation type="unfinished">Commit</translation>
     </message>
@@ -23341,322 +23341,322 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="65"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
         <source>Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="69"/>
         <source>Press to refresh the status display</source>
         <translation type="unfinished">Premi per aggiornare lo stato</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="107"/>
         <source>Stage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="111"/>
         <source>Revert Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="115"/>
         <source>Stage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="119"/>
         <source>Revert Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="123"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="125"/>
         <source>Unstage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="127"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="129"/>
         <source>Unstage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
-        <source>added</source>
-        <translation type="unfinished">aggiunto</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
-        <source>copied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
-        <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="172"/>
-        <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="173"/>
-        <source>renamed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="175"/>
-        <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="174"/>
-        <source>unmerged</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <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="175"/>
+        <source>renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="177"/>
+        <source>not tracked</source>
+        <translation type="unfinished">non tracciato</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="176"/>
+        <source>unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmodified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="178"/>
         <source>ignored</source>
         <translation type="unfinished">ignorato</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="199"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="198"/>
-        <source>Amend</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="200"/>
-        <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="202"/>
-        <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="204"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
         <source>Unselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <source>Add</source>
         <translation type="unfinished">Aggiungi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="212"/>
         <source>Add the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="211"/>
-        <source>Stage changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="213"/>
-        <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="215"/>
-        <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="217"/>
+        <source>Unstage changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="219"/>
         <source>Unstages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="224"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226"/>
         <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="227"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="229"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="231"/>
         <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="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>Revert</source>
         <translation type="unfinished">Inverti</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="242"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
-        <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="246"/>
-        <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="248"/>
+        <source>Restore missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="250"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
-        <source>Edit file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
+        <source>Edit file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257"/>
         <source>Edit the selected conflicting file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="260"/>
-        <source>Adjust column sizes</source>
-        <translation type="unfinished">Adatta dimensione colonne</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="262"/>
+        <source>Adjust column sizes</source>
+        <translation type="unfinished">Adatta dimensione colonne</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="264"/>
         <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="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <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="596"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="598"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <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="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>Stage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>There are no stageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>Unstage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
         <source>Forget Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <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="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <source>Restore Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <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="891"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="893"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="870"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872"/>
         <source>Staging Area to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="892"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <source>Working Tree to HEAD Commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Side-by-Side Difference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Select the compare method.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1201"/>
-        <source>Revert selected lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1203"/>
+        <source>Revert selected lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1205"/>
         <source>Revert hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1206"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -24852,357 +24852,357 @@
 <context>
     <name>HelpBrowser</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1220"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1223"/>
         <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation>Apri link in una Nuova Scheda<byte value="x9"/>Ctrl+LMB</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="745"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="748"/>
         <source>&lt;b&gt;Help Window&lt;/b&gt;&lt;p&gt;This window displays the selected help information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Finestra di help&lt;/b&gt;&lt;p&gt;Questa finestra mostra le informazioni di aiuto selezionate.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1518"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1521"/>
         <source>Web Inspector...</source>
         <translation>Web Inspector...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2202"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2205"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation>Controlla l&apos;indirizzo per errori tipo &lt;b&gt;ww&lt;/b&gt;.example.org invece di &lt;b&gt;www&lt;/b&gt;.example.org</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2210"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation>Se l&apos;indirizzo è corretto, prova  a controllare la connessione di rete.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2214"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation>Se il tuo computer o la rete sono protetti da un firewall o un proxy, assicurati che il browser possa accedere alla rete.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1424"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
         <source>Bookmark this Page</source>
         <translation>Inserisci nei segnalibri questa pagina</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1227"/>
-        <source>Save Lin&amp;k</source>
-        <translation>Salva lin&amp;k</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1230"/>
+        <source>Save Lin&amp;k</source>
+        <translation>Salva lin&amp;k</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1233"/>
         <source>Bookmark this Link</source>
         <translation>Insersci nei bookmark questo link</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1237"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
         <source>Copy Link to Clipboard</source>
         <translation>Copia il link nella Clipboard</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1258"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1261"/>
         <source>Open Image in New Tab</source>
         <translation>Apri immagine in una nuova linguetta</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1265"/>
-        <source>Save Image</source>
-        <translation>Salva immagine</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1268"/>
+        <source>Save Image</source>
+        <translation>Salva immagine</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1271"/>
         <source>Copy Image to Clipboard</source>
         <translation>Copia immagine nella Clipboard</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1270"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1273"/>
         <source>Copy Image Location to Clipboard</source>
         <translation>Copia la posizione dell&apos;immagine nella Clipboard</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1283"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1286"/>
         <source>Block Image</source>
         <translation>Blocca immagine</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1457"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1460"/>
         <source>Search with...</source>
         <translation>Cerca con...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="931"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="934"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non esiste.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="976"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="979"/>
         <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso avviare un visualizzatore per il file &lt;b&gt;{0}&lt;/b&gt;.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="956"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="959"/>
         <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso lanciare un&apos;applicazione per l&apos;URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2181"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2184"/>
         <source>Error loading page: {0}</source>
         <translation>Errore nel caricamento della pagina: {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2199"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2202"/>
         <source>When connecting to: {0}.</source>
         <translation>Nella connessione a: {0}.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>Web Database Quota</source>
         <translation>Quota Web Database</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>&lt;p&gt;The database quota of &lt;strong&gt;{0}&lt;/strong&gt; has been exceeded while accessing database &lt;strong&gt;{1}&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Shall it be changed?&lt;/p&gt;</source>
         <translation>&lt;p&gt;La quota per il database &lt;strong&gt;{0}&lt;/strong&gt; è stata superata durante l&apos;accesso al database &lt;strong&gt;{1}&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Deve essere cambiata?&lt;/P&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>New Web Database Quota</source>
         <translation>Nuova quota Web Database</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source>
         <translation>Inserisci la nuova quota in MB (corrente = {0}, usata = {1}; incremento = 5MB):</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2297"/>
-        <source>bytes</source>
-        <translation>bytes</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2300"/>
-        <source>kB</source>
-        <translation>kB</translation>
+        <source>bytes</source>
+        <translation>bytes</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2303"/>
+        <source>kB</source>
+        <translation>kB</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2306"/>
         <source>MB</source>
         <translation>MB</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1511"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1514"/>
         <source>Add to web search toolbar</source>
         <translation>Aggiungi alla toolbar delle ricerche web</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>Method not supported</source>
         <translation>Metodo non supportato</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>{0} method is not supported.</source>
         <translation>il metodo {0} non è supportato.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Search engine</source>
         <translation>Motore di ricerca</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Choose the desired search engine</source>
         <translation>Scegli il motore di ricerca</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Engine name</source>
         <translation>Nome motore</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Enter a name for the engine</source>
         <translation>Inserisci un nome per il motore</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2217"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2220"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation>Se la tua politica di chaching è impostata su navigazione offline, saranno disponibili solo le pagine nella cache locale.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1248"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1251"/>
         <source>Scan Link with VirusTotal</source>
         <translation>Scansiona il collegamento con VirusTotal</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1291"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1294"/>
         <source>Scan Image with VirusTotal</source>
         <translation>Scansiona l&apos;immagine con VirusTotal</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1243"/>
         <source>Send Link</source>
         <translation>Invia il collegamento</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1276"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1279"/>
         <source>Send Image Link</source>
         <translation>Invia il collegamento dell&apos;immagine</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1384"/>
-        <source>This Frame</source>
-        <translation>Questa cornice</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1387"/>
-        <source>Show &amp;only this frame</source>
-        <translation>Visualizza s&amp;olo questa cornice</translation>
+        <source>This Frame</source>
+        <translation>Questa cornice</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1390"/>
+        <source>Show &amp;only this frame</source>
+        <translation>Visualizza s&amp;olo questa cornice</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1393"/>
         <source>Show in new &amp;tab</source>
         <translation>Visualizza in una nuova &amp;Scheda</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1397"/>
-        <source>&amp;Print</source>
-        <translation>Stam&amp;pa</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1400"/>
-        <source>Print Preview</source>
-        <translation>Anteprima Stampa</translation>
+        <source>&amp;Print</source>
+        <translation>Stam&amp;pa</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1403"/>
+        <source>Print Preview</source>
+        <translation>Anteprima Stampa</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1406"/>
         <source>Print as PDF</source>
         <translation>Stampa come PDF</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1407"/>
-        <source>Zoom &amp;in</source>
-        <translation>&amp;Ingrandisci</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1410"/>
-        <source>Zoom &amp;reset</source>
-        <translation>&amp;Resetta zoom</translation>
+        <source>Zoom &amp;in</source>
+        <translation>&amp;Ingrandisci</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1413"/>
+        <source>Zoom &amp;reset</source>
+        <translation>&amp;Resetta zoom</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1416"/>
         <source>Zoom &amp;out</source>
         <translation>Rimpicci&amp;olisci</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1417"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1420"/>
         <source>Show frame so&amp;urce</source>
         <translation>Visualizza cornice sorge&amp;nte</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1430"/>
         <source>Send Page Link</source>
         <translation>Invia collegamento pagina</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1448"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1451"/>
         <source>Send Text</source>
         <translation>Invia testo</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1482"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1485"/>
         <source>Google Translate</source>
         <translation>Traduttore Google</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1491"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1494"/>
         <source>Dictionary</source>
         <translation>Dizionario</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1501"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1504"/>
         <source>Go to web address</source>
         <translation>Vai all&apos;indirizzo di rete</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1434"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1437"/>
         <source>User Agent</source>
         <translation>User Agent</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2222"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2225"/>
         <source>Try Again</source>
         <translation>Ritenta</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1311"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1314"/>
         <source>Play</source>
         <translation>Riproduci</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1315"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1318"/>
         <source>Pause</source>
         <translation>Pausa</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1319"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1322"/>
         <source>Unmute</source>
         <translation>Parlante</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1323"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1326"/>
         <source>Mute</source>
         <translation>Muto</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1327"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1330"/>
         <source>Copy Media Address to Clipboard</source>
         <translation>Copia l&apos;indirizzo del Media nella Clipboard</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1333"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1336"/>
         <source>Send Media Address</source>
         <translation>Invia indirizzo del Media</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1339"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1342"/>
         <source>Save Media</source>
         <translation>Salva Media</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>eric6 Web Browser</source>
         <translation type="unfinished">Web Browser di eric6</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5. Please upgrade.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;La stampa non è disponibile a causa di un bug in PyQt4. Si consiglia di aggiornare la versione installata.&lt;/p&gt; {5.?}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2626"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2629"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5.Please upgrade.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;La stampa non è disponibile a causa di un bug in PyQt4. Si consiglia di aggiornare la versione installata.&lt;/p&gt; {5.?}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1200"/>
-        <source>Add New Page</source>
-        <translation type="unfinished">Aggiungi una nuova pagina</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1203"/>
+        <source>Add New Page</source>
+        <translation type="unfinished">Aggiungi una nuova pagina</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1206"/>
         <source>Configure Speed Dial</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1210"/>
         <source>Reload All Dials</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1214"/>
         <source>Reset to Default Dials</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26498,82 +26498,82 @@
 <context>
     <name>HelpWebPage</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="376"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="379"/>
         <source>Error loading page: {0}</source>
         <translation>Errore nel caricamento della pagina: {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="395"/>
-        <source>When connecting to: {0}.</source>
-        <translation>Nella connessione a: {0}.</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="398"/>
+        <source>When connecting to: {0}.</source>
+        <translation>Nella connessione a: {0}.</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="401"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation>Controlla l&apos;indirizzo per errori tipo &lt;b&gt;ww&lt;/b&gt;.example.org invece di &lt;b&gt;www&lt;/b&gt;.example.org</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="403"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="406"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation>Se l&apos;indirizzo è corretto, prova  a controllare la connessione di rete.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="408"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="411"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation>Se il tuo computer o la rete sono protetti da un firewall o un proxy, assicurati che il browser possa accedere alla rete.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="414"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="417"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation>Se la tua politica di chaching è impostata su navigazione offline, saranno disponibili solo le pagine nella cache locale.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>Resending POST request</source>
         <translation>Reinvio richiesta POST</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>In order to display the site, the request along with all the data must be sent once again, which may lead to some unexpected behaviour of the site e.g. the same action might be performed once again. Do you want to continue anyway?</source>
         <translation>Per poter visualizzare questo stio, la richiesta con tutti i dati deve essere spedita un&apos;altra volta, cosa che può portare a qualche comportamento non previsto del sito es. la stessa azione può essere eseguita nuovamente. Vuoi continuare comunque ?</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="419"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="422"/>
         <source>Try Again</source>
         <translation>Ritenta</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="351"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="354"/>
         <source>Content blocked by AdBlock Plus</source>
         <translation>Contenuto bloccato da AdBlock Plus</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="352"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="355"/>
         <source>Blocked by rule: &lt;i&gt;{0}&lt;/i&gt;</source>
         <translation>Bloccato dalla regola: &lt;i&gt;{0}&lt;/i&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="309"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="312"/>
         <source>Select files to upload...</source>
         <translation>Seleziona i file da caricare...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>SSL Info</source>
         <translation>Informazioni SSL</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>This site does not contain SSL information.</source>
         <translation>Questo sito non contiene informazioni SSL.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Protocol Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Open external application for {0}-link?
 URL: {1}</source>
         <translation type="unfinished"></translation>
@@ -42183,27 +42183,27 @@
 <context>
     <name>JavaScriptEricObject</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="114"/>
         <source>Search!</source>
         <translation>Cerca!</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="150"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="153"/>
         <source>Search results provided by {0}</source>
         <translation>Risultati della ricerca forniti da {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="108"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
         <source>Welcome to eric6 Web Browser!</source>
         <translation type="unfinished">Benvenuto nel navigatore Web di Eric! {6 ?}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="110"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="113"/>
         <source>eric6 Web Browser</source>
         <translation type="unfinished">Web Browser di eric6</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="112"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="115"/>
         <source>About eric6</source>
         <translation type="unfinished">Informazioni su Eric6</translation>
     </message>
@@ -45116,12 +45116,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <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>
@@ -50019,22 +50019,22 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="484"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="499"/>
         <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="653"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="668"/>
         <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="597"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="612"/>
         <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="681"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="696"/>
         <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>
@@ -50042,40 +50042,45 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="88"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="76"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="87"/>
         <source>Enable JavaScript</source>
         <translation type="unfinished">Abilita Javascript</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="83"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="94"/>
         <source>Select to enable support for 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="92"/>
         <source>Enable Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="190"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="205"/>
         <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="252"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="267"/>
         <source>Preview - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="254"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="269"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="70"/>
+        <source>&lt;b&gt;HTML Preview is not available!&lt;br/&gt;Install QtWebEngine or QtWebKit.&lt;/b&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PreviewerQSS</name>
@@ -52115,7 +52120,7 @@
         <translation>Compilazione form in corso...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="905"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="943"/>
         <source>Abort</source>
         <translation>Termina</translation>
     </message>
@@ -53015,7 +53020,7 @@
         <translation>Compilazione risorse in corso...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="777"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="850"/>
         <source>Abort</source>
         <translation>Termina</translation>
     </message>
@@ -61832,280 +61837,280 @@
 <context>
     <name>ShellWindow</name>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Quit</source>
         <translation type="unfinished">Esci</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">&amp;Esci</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished">Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="201"/>
         <source>Quit the Shell</source>
         <translation type="unfinished">Esci dall&apos;IDE</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="197"/>
+        <location filename="../QScintilla/ShellWindow.py" line="202"/>
         <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New Window</source>
         <translation type="unfinished">Nuova finestra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New &amp;Window</source>
         <translation type="unfinished">Nuova &amp;Finestra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="211"/>
+        <location filename="../QScintilla/ShellWindow.py" line="216"/>
         <source>Open a new Shell window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="213"/>
+        <location filename="../QScintilla/ShellWindow.py" line="218"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="220"/>
-        <source>Restart</source>
-        <translation type="unfinished">Riavvio</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="225"/>
+        <source>Restart</source>
+        <translation type="unfinished">Riavvio</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="230"/>
         <source>Restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="227"/>
+        <location filename="../QScintilla/ShellWindow.py" line="232"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="234"/>
-        <source>Restart and Clear</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="239"/>
+        <source>Restart and Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="244"/>
         <source>Clear the window and restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="241"/>
+        <location filename="../QScintilla/ShellWindow.py" line="246"/>
         <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>Show History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>&amp;Show History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="882"/>
+        <location filename="../QScintilla/ShellWindow.py" line="887"/>
         <source>Show the shell history in a dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>Clear History</source>
         <translation type="unfinished">Pulisci la history</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>&amp;Clear History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="892"/>
+        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Clear the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
+        <location filename="../QScintilla/ShellWindow.py" line="901"/>
         <source>Select History Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
-        <source>Select History &amp;Entry</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
+        <source>Select History &amp;Entry</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="906"/>
         <source>Select an entry of the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>About</source>
         <translation type="unfinished">About</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>&amp;About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="913"/>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
         <source>Display information about this software</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="915"/>
+        <location filename="../QScintilla/ShellWindow.py" line="920"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Mostra alcune informazioni su questo software.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="925"/>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="927"/>
+        <location filename="../QScintilla/ShellWindow.py" line="932"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished">Cos&apos;è questo ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished">C&amp;os&apos;è Questo ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
+        <location filename="../QScintilla/ShellWindow.py" line="945"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">Help sensibile al contesto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="941"/>
+        <location filename="../QScintilla/ShellWindow.py" line="946"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>About eric6 Shell Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1105"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1110"/>
         <source>&amp;File</source>
         <translation type="unfinished">&amp;File</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1114"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1119"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">&amp;Edita</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1125"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1130"/>
         <source>&amp;View</source>
         <translation type="unfinished">&amp;Visualizza</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1132"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
         <source>Histor&amp;y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1139"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1144"/>
         <source>&amp;Start</source>
         <translation type="unfinished">&amp;Avvia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1145"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1150"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1180"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1185"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1189"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1194"/>
         <source>Edit</source>
         <translation type="unfinished">Modifica</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
         <source>Find</source>
         <translation type="unfinished">Trova</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1202"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1207"/>
         <source>View</source>
         <translation type="unfinished">Visualizza</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1209"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1214"/>
         <source>History</source>
         <translation type="unfinished">Cronologia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1215"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1220"/>
         <source>Help</source>
         <translation type="unfinished">Aiuto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1241"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="570"/>
+        <location filename="../QScintilla/ShellWindow.py" line="575"/>
         <source>Move forward one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="580"/>
+        <location filename="../QScintilla/ShellWindow.py" line="585"/>
         <source>Move back one history entry</source>
         <translation type="unfinished"></translation>
     </message>
@@ -72978,12 +72983,12 @@
         <translation type="unfinished">Mostra versione</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="523"/>
+        <location filename="../Tools/TrayStarter.py" line="526"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation type="unfinished">&lt;h3&gt;Numeri di versione&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="550"/>
+        <location filename="../Tools/TrayStarter.py" line="553"/>
         <source>&lt;/table&gt;</source>
         <translation type="unfinished">&lt;/table&gt;</translation>
     </message>
@@ -73569,7 +73574,7 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>Unittest</source>
         <translation>Unittest</translation>
     </message>
@@ -73584,17 +73589,17 @@
         <translation>^Error: </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="269"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="271"/>
         <source>You must enter a test suite file.</source>
         <translation>Devi inserire il file di una suite di test.</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="277"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="279"/>
         <source>Preparing Testsuite</source>
         <translation>Preparazione Testsuite</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="475"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="477"/>
         <source>Running</source>
         <translation>In esecuzione</translation>
     </message>
@@ -73771,42 +73776,42 @@
         <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="640"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="642"/>
         <source>Show Source</source>
         <translation>Mostra sorgenti</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="209"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="211"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>File Python (*.py);;Tutti i File (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="205"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="207"/>
         <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source>
         <translation>File Python3 ({0});;File Python1({1});;Tutti i File (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;{1}&lt;br&gt;{2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Impossibile eseguire test &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="499"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="501"/>
         <source>Ran {0} test in {1:.3f}s</source>
         <translation>Eseguiti {0} test in {1:.3f} s</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="503"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="505"/>
         <source>Ran {0} tests in {1:.3f}s</source>
         <translation>Eseguiti {0} test in {1:.3f} s</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="520"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="522"/>
         <source>Failure: {0}</source>
         <translation>Fallimenti: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="535"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="537"/>
         <source>Error: {0}</source>
         <translation>Errori: {0}</translation>
     </message>
@@ -73841,17 +73846,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="550"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="552"/>
         <source>    Skipped: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="565"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="567"/>
         <source>    Expected Failure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="579"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="581"/>
         <source>    Unexpected Success</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74143,7 +74148,7 @@
         <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="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <source>Report Bug</source>
         <translation>Segnala Bug</translation>
     </message>
@@ -74218,7 +74223,7 @@
         <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="5846"/>
+        <location filename="../UI/UserInterface.py" line="5849"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Esporta scorciatoie da tastiera</translation>
     </message>
@@ -74238,7 +74243,7 @@
         <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="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Importa scorciatoie da tastiera</translation>
     </message>
@@ -74278,7 +74283,7 @@
         <translation>Strumenti</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <source>Help</source>
         <translation>Aiuto</translation>
     </message>
@@ -74293,12 +74298,12 @@
         <translation>&amp;Toolbar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <source>Problem</source>
         <translation>Problema</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
@@ -74353,7 +74358,7 @@
         <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="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <source>Unittest Project</source>
         <translation>Progetto Unittest</translation>
     </message>
@@ -74408,12 +74413,12 @@
         <translation>&amp;Unittest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <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="../UI/UserInterface.py" line="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <source>Drop Error</source>
         <translation>Errore Drop</translation>
     </message>
@@ -74548,27 +74553,27 @@
         <translation>Task-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>Save tasks</source>
         <translation>Salva task</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <source>Read tasks</source>
         <translation>Leggi task</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <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="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <source>Documentation Missing</source>
         <translation>Documentazione mancante</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <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>
@@ -74663,7 +74668,7 @@
         <translation>Apri documentazione API di Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4728"/>
+        <location filename="../UI/UserInterface.py" line="4731"/>
         <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>
@@ -74739,47 +74744,47 @@
         <translation>Profili</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3628"/>
+        <location filename="../UI/UserInterface.py" line="3631"/>
         <source>&amp;Builtin Tools</source>
         <translation>Tool &amp;Builtin</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>Documentation</source>
         <translation>Documentazione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5303"/>
+        <location filename="../UI/UserInterface.py" line="5306"/>
         <source>&lt;p&gt;The PyQt4 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;inizio della documentazione di PyQt4 non è stato configurato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Error during updates check</source>
         <translation>Errore nel controllo per gli update</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>Update available</source>
         <translation>Aggiornamento disponibile</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3259"/>
+        <location filename="../UI/UserInterface.py" line="3262"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Numeri di versione&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6826"/>
+        <location filename="../UI/UserInterface.py" line="6829"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3673"/>
+        <location filename="../UI/UserInterface.py" line="3676"/>
         <source>Configure Tool Groups ...</source>
         <translation>Configura Tools Groups...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3677"/>
+        <location filename="../UI/UserInterface.py" line="3680"/>
         <source>Configure current Tool Group ...</source>
         <translation>Configura Tools Groups correnti...</translation>
     </message>
@@ -74794,17 +74799,17 @@
         <translation>Mostra toll &amp;esterni</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Cancella</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Could not perform updates check.</source>
         <translation>Non posso controllare per gli update.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>First time usage</source>
         <translation>Primo avvio</translation>
     </message>
@@ -74844,7 +74849,7 @@
         <translation>Informazioni su &amp;Plugin...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3645"/>
+        <location filename="../UI/UserInterface.py" line="3648"/>
         <source>&amp;Plugin Tools</source>
         <translation>Informazioni sui &amp;Plugin Tools</translation>
     </message>
@@ -74874,12 +74879,12 @@
         <translation>Wi&amp;zards</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3793"/>
+        <location filename="../UI/UserInterface.py" line="3796"/>
         <source>&amp;Show all</source>
         <translation>Mo&amp;stra tutti</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3795"/>
+        <location filename="../UI/UserInterface.py" line="3798"/>
         <source>&amp;Hide all</source>
         <translation>Nascondi &amp;tutti</translation>
     </message>
@@ -74899,7 +74904,7 @@
         <translation>Mostra le versioni disponibili per il download</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6812"/>
+        <location filename="../UI/UserInterface.py" line="6815"/>
         <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>
@@ -74989,17 +74994,17 @@
         <translation>&amp;Multiproject-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>External Tools</source>
         <translation>Tool esterni</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6165"/>
+        <location filename="../UI/UserInterface.py" line="6168"/>
         <source>Save session</source>
         <translation>Salva sessione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <source>Read session</source>
         <translation>Leggi sessione</translation>
     </message>
@@ -75074,12 +75079,12 @@
         <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="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>Restart application</source>
         <translation>Riavvia applicazione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>The application needs to be restarted. Do it now?</source>
         <translation>L&apos;applicazione necessita di un riavvio. Farlo ora ?</translation>
     </message>
@@ -75229,7 +75234,7 @@
         <translation>Editor di &amp;icone...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt 3 support</source>
         <translation>Supporto Qt3</translation>
     </message>
@@ -75274,105 +75279,105 @@
         <translation>Tool Esterni/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <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="4548"/>
+        <location filename="../UI/UserInterface.py" line="4551"/>
         <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="4615"/>
+        <location filename="../UI/UserInterface.py" line="4618"/>
         <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="4666"/>
+        <location filename="../UI/UserInterface.py" line="4669"/>
         <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="4708"/>
+        <location filename="../UI/UserInterface.py" line="4711"/>
         <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="4776"/>
+        <location filename="../UI/UserInterface.py" line="4779"/>
         <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="4831"/>
+        <location filename="../UI/UserInterface.py" line="4834"/>
         <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="4852"/>
+        <location filename="../UI/UserInterface.py" line="4855"/>
         <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="4945"/>
+        <location filename="../UI/UserInterface.py" line="4948"/>
         <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="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <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="4993"/>
+        <location filename="../UI/UserInterface.py" line="4996"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Avvio processo &apos;{0} {1}&apos;.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <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="5085"/>
+        <location filename="../UI/UserInterface.py" line="5088"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>Il processo &apos;{0}&apos; è terminato.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;inizio della documentazione &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; non viene trovato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file task &lt;b&gt;{0}&lt;/b&gt; non può essere scritto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <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="6102"/>
+        <location filename="../UI/UserInterface.py" line="6105"/>
         <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="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <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="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <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="6610"/>
+        <location filename="../UI/UserInterface.py" line="6613"/>
         <source>Trying host {0}</source>
         <translation>Tento su host {0}</translation>
     </message>
@@ -75407,7 +75412,7 @@
         <translation>Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation>File scorciatoi tastiera (*.e4k)</translation>
     </message>
@@ -75447,27 +75452,27 @@
         <translation>&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="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6667"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <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="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <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>
@@ -75553,12 +75558,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4922"/>
+        <location filename="../UI/UserInterface.py" line="4925"/>
         <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="6882"/>
+        <location filename="../UI/UserInterface.py" line="6885"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished">Seleziona cartella di lavoro</translation>
     </message>
@@ -75933,7 +75938,7 @@
         <translation type="unfinished">Apri documentazione su PyQt4 {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5369"/>
+        <location filename="../UI/UserInterface.py" line="5372"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;L&apos;inizio della documentazione di PyQt4 non è stato configurato.&lt;/p&gt; {5 ?}</translation>
     </message>
@@ -75943,7 +75948,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75963,7 +75968,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6605"/>
+        <location filename="../UI/UserInterface.py" line="6608"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76033,27 +76038,27 @@
         <translation type="unfinished">&lt;b&gt;Documentazione API Eric&lt;/b&gt;&lt;p&gt;Mostra la documentazione delle API di Eric. La posizione della documentazione è la subdirectory Documentation/Source della directory in cui è installato eric6.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt v.3 is not supported by eric6.</source>
         <translation type="unfinished">Le Qt v.3 non sono supportate da eric6.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation type="unfinished">L&apos;update alla versione &lt;b&gt;{0}&lt;/b&gt; di eric6 è disponibile presso &lt;b&gt;{1}&lt;/b&gt;. Vuoi prenderlo?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>Eric6 is up to date</source>
         <translation type="unfinished">Eric6 è aggiornato</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>You are using the latest version of eric6</source>
         <translation type="unfinished">Stai usando l&apos;ultima versione di eric6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
         <translation type="unfinished">eric6 non è ancora stato configurato. Il dialogo di configurazione verrà avviato.</translation>
     </message>
@@ -76063,17 +76068,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3648"/>
+        <location filename="../UI/UserInterface.py" line="3651"/>
         <source>&amp;User Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3720"/>
+        <location filename="../UI/UserInterface.py" line="3723"/>
         <source>No User Tools Configured</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6621"/>
+        <location filename="../UI/UserInterface.py" line="6624"/>
         <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76118,7 +76123,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>Load session</source>
         <translation type="unfinished">Carica sessione</translation>
     </message>
@@ -76133,17 +76138,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76158,17 +76163,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <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="6746"/>
+        <location filename="../UI/UserInterface.py" line="6749"/>
         <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76223,7 +76228,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80737,12 +80742,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="55"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="58"/>
         <source>Virtualenv Target Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="60"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="63"/>
         <source>Python Interpreter</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81181,52 +81186,52 @@
 <context>
     <name>VirtualenvManager</name>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>Add Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="173"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="185"/>
         <source>Change Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>Rename Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="270"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="304"/>
         <source>{0} - {1}</source>
         <translation type="unfinished">{0} - {1}</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Delete Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Do you really want to delete these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Remove Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Do you really want to remove these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -85759,12 +85764,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="388"/>
+        <location filename="../eric6.py" line="391"/>
         <source>Starting...</source>
         <translation type="unfinished">Inizio...</translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="393"/>
+        <location filename="../eric6.py" line="396"/>
         <source>Generating Main Window...</source>
         <translation type="unfinished">Generazione Main Window...</translation>
     </message>
--- a/i18n/eric6_pt.ts	Tue Jun 26 18:39:14 2018 +0200
+++ b/i18n/eric6_pt.ts	Tue Jun 26 18:50:04 2018 +0200
@@ -1533,32 +1533,32 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="130"/>
+        <location filename="../Utilities/BackgroundService.py" line="132"/>
         <source>{0} not configured.</source>
         <translation>{0} sem configurar.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <source>Restart background client?</source>
         <translation>Reiniciar cliente de fundo?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <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>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="212"/>
+        <location filename="../Utilities/BackgroundService.py" line="214"/>
         <source>An error in Erics background client stopped the service.</source>
         <translation>Um erro no cliente de fundo de Eric parou o serviço.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="423"/>
+        <location filename="../Utilities/BackgroundService.py" line="427"/>
         <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="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <source>Background client disconnected.</source>
         <translation>Cliente de fundo desconectado.</translation>
     </message>
@@ -1568,7 +1568,7 @@
         <translation type="obsolete">O cliente de fundo para &lt;b&gt;{0}&lt;/b&gt; desconectou-se por um motivo desconhecido.&lt;br&gt;Deverá ser reiniciado?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <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>
@@ -3117,44 +3117,44 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="281"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="285"/>
         <source>Main Menu</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="291"/>
-        <source>Rich Text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/CodeDocumentationViewer.py" line="296"/>
+        <source>Rich Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/CodeDocumentationViewer.py" line="304"/>
         <source>Plain Text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="471"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="480"/>
         <source>No documentation available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="498"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="507"/>
         <source>Definition: {0}{1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="501"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="510"/>
         <source>Definition: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="548"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="557"/>
         <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="553"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="562"/>
         <source>This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3176,13 +3176,13 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="509"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="518"/>
         <source>Type: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="517"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="526"/>
         <source>Note: {0}
 </source>
         <translation type="unfinished"></translation>
@@ -4645,254 +4645,254 @@
 <context>
     <name>ConfigurationWidget</name>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="136"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="143"/>
         <source>Application</source>
         <translation>Aplicação</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="139"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="146"/>
         <source>Cooperation</source>
         <translation>Colaboração</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="142"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="149"/>
         <source>CORBA</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="148"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="155"/>
         <source>Email</source>
         <translation>Correio Eletrónico</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="151"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="158"/>
         <source>Graphics</source>
         <translation>Gráficos</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="157"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="164"/>
         <source>Icons</source>
         <translation>Ícones</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="447"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="454"/>
         <source>Network</source>
         <translation>Rede</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="176"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
         <source>Plugin Manager</source>
         <translation>Gestor de Plugins</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="450"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
         <source>Printer</source>
         <translation>Impressora</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="186"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="193"/>
         <source>Python</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="189"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="196"/>
         <source>Qt</source>
         <translation>Qt</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="195"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="202"/>
         <source>Shell</source>
         <translation>Shell</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="198"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="205"/>
         <source>Tasks</source>
         <translation>Tarefas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="201"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="208"/>
         <source>Templates</source>
         <translation>Modelos</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="207"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="214"/>
         <source>Version Control Systems</source>
         <translation>Sistemas de Control de Versão</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="212"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="219"/>
         <source>Debugger</source>
         <translation>Depurador</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="248"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
         <source>General</source>
         <translation>Geral</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="221"/>
-        <source>Python3</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
-        <source>Editor</source>
-        <translation></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
+        <source>Python3</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="232"/>
+        <source>Editor</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="235"/>
         <source>APIs</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="231"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="238"/>
         <source>Autocompletion</source>
         <translation>Autocompletar</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="242"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="249"/>
         <source>QScintilla</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="239"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="246"/>
         <source>Calltips</source>
         <translation>Dicas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="251"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="258"/>
         <source>Filehandling</source>
         <translation>Tratamento de Ficheiros</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
-        <source>Searching</source>
-        <translation>Pesquisa</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="478"/>
-        <source>Spell checking</source>
-        <translation>Verificação ortográfica</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="262"/>
+        <source>Searching</source>
+        <translation>Pesquisa</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="485"/>
+        <source>Spell checking</source>
+        <translation>Verificação ortográfica</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="269"/>
         <source>Style</source>
         <translation>Estilo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="268"/>
-        <source>Typing</source>
-        <translation>Digitação</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="271"/>
-        <source>Exporters</source>
-        <translation>Exportadores</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="275"/>
+        <source>Typing</source>
+        <translation>Digitação</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="278"/>
+        <source>Exporters</source>
+        <translation>Exportadores</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="282"/>
         <source>Highlighters</source>
         <translation>Realçadores</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="279"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="286"/>
         <source>Filetype Associations</source>
         <translation>Associações de Tipos de Ficheiros</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="283"/>
-        <source>Styles</source>
-        <translation>Estilos</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="287"/>
-        <source>Keywords</source>
-        <translation>Palavras Chave</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="290"/>
+        <source>Styles</source>
+        <translation>Estilos</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="294"/>
+        <source>Keywords</source>
+        <translation>Palavras Chave</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="297"/>
         <source>Properties</source>
         <translation>Propriedades</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="299"/>
-        <source>Help</source>
-        <translation>Ajuda</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="462"/>
-        <source>Appearance</source>
-        <translation>Aparência</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
-        <source>Help Documentation</source>
-        <translation>Documentação de Ajuda</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="306"/>
+        <source>Help</source>
+        <translation>Ajuda</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <source>Appearance</source>
+        <translation>Aparência</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="464"/>
+        <source>Help Documentation</source>
+        <translation>Documentação de Ajuda</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="313"/>
         <source>Help Viewers</source>
         <translation>Visores de Ajuda</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="317"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="324"/>
         <source>Project</source>
         <translation>Projeto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="314"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="321"/>
         <source>Project Viewer</source>
         <translation>Visor de Projeto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="320"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="327"/>
         <source>Multiproject</source>
         <translation>Multiprojeto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="444"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="451"/>
         <source>Interface</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="331"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="338"/>
         <source>Viewmanager</source>
         <translation>Gestor de Vista</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="646"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
         <source>Preferences</source>
         <translation>Preferências</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="651"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="658"/>
         <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="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <source>Configuration Page Error</source>
         <translation>Erro na Página de Configuração</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <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>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="494"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="501"/>
         <source>Tray Starter</source>
         <translation>Iniciador de Bandeja de Sistema</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="473"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="480"/>
         <source>VirusTotal Interface</source>
         <translation>Interface de VirusTotal</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="453"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="460"/>
         <source>Security</source>
         <translation>Segurança</translation>
     </message>
@@ -4902,77 +4902,77 @@
         <translation type="obsolete">Introduzir texto do filtro...</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="172"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="179"/>
         <source>Notifications</source>
         <translation>Notificações</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="160"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="167"/>
         <source>IRC</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="265"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="272"/>
         <source>Code Checkers</source>
         <translation>Verificadores de Código</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="465"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="472"/>
         <source>eric6 Web Browser</source>
         <translation>Navegador Web de eric6</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="163"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="170"/>
         <source>Log-Viewer</source>
         <translation>Visor de Registos</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="166"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="173"/>
         <source>Mimetypes</source>
         <translation>Tipos MIME</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="591"/>
         <source>Enter search text...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="294"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="301"/>
         <source>Mouse Click Handlers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="476"/>
         <source>Flash Cookie Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="507"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="514"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="364"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="371"/>
         <source>Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="145"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="152"/>
         <source>Diff</source>
         <translation type="unfinished">Diff</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="245"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="252"/>
         <source>Documentation Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="190"/>
         <source>Protobuf</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="218"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
         <source>Python2</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5729,14 +5729,14 @@
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1603"/>
         <source>Passive debug connection received
 </source>
         <translation>Conexão de depuração passiva recebida
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1613"/>
+        <location filename="../Debugger/DebugServer.py" line="1617"/>
         <source>Passive debug connection closed
 </source>
         <translation>Conexão de depuração passiva fechada
@@ -20323,12 +20323,12 @@
         <translation type="unfinished">Gráfico</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
         <source>Commit ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
         <source>Author</source>
         <translation type="unfinished">Autor</translation>
     </message>
@@ -20338,7 +20338,7 @@
         <translation type="unfinished">Data</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
         <source>Committer</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20348,7 +20348,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="106"/>
         <source>Subject</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20423,7 +20423,7 @@
         <translation type="unfinished">Copiar de</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2119"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2121"/>
         <source>Differences</source>
         <translation type="unfinished">Diferenças</translation>
     </message>
@@ -20483,328 +20483,328 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished">Atualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="92"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="98"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="100"/>
         <source>Find</source>
         <translation type="unfinished">Encontrar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
         <source>Filter</source>
         <translation type="unfinished">Filtro</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>File</source>
         <translation type="unfinished">Ficheiro</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="124"/>
         <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="134"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="136"/>
         <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="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="139"/>
         <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="140"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="142"/>
         <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="143"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="145"/>
         <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="146"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="148"/>
         <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="198"/>
-        <source>Added</source>
-        <translation type="unfinished">Adicionado</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="199"/>
-        <source>Deleted</source>
-        <translation type="unfinished">Apagado</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="200"/>
-        <source>Modified</source>
-        <translation type="unfinished">Alterado</translation>
+        <source>Added</source>
+        <translation type="unfinished">Adicionado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="201"/>
-        <source>Copied</source>
-        <translation type="unfinished"></translation>
+        <source>Deleted</source>
+        <translation type="unfinished">Apagado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="202"/>
-        <source>Renamed</source>
-        <translation type="unfinished"></translation>
+        <source>Modified</source>
+        <translation type="unfinished">Alterado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Type changed</source>
+        <source>Copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Unmerged</source>
+        <source>Renamed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
+        <source>Type changed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
+        <source>Unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
         <source>Unknown</source>
         <translation type="unfinished">Desconhecido</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="241"/>
-        <source>Show Commit ID Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="243"/>
+        <source>Show Commit ID Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="245"/>
         <source>Press to show the commit ID column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
-        <source>Show Author Columns</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="253"/>
+        <source>Show Author Columns</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="255"/>
         <source>Press to show the author columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
-        <source>Show Committer Columns</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="263"/>
+        <source>Show Committer Columns</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="265"/>
         <source>Press to show the committer columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
-        <source>Show Branches Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="273"/>
+        <source>Show Branches Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="275"/>
         <source>Press to show the branches column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
-        <source>Show Tags Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="283"/>
+        <source>Show Tags Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="285"/>
         <source>Press to show the Tags column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="313"/>
-        <source>Copy Commits</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <source>Copy Commits</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
         <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="320"/>
-        <source>Tag</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <source>Tag</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
         <source>Tag the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1812"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1814"/>
         <source>Branch</source>
         <translation type="unfinished">Ramo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="326"/>
-        <source>Create a new branch at the selected commit.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
-        <source>Branch &amp;&amp; Switch</source>
+        <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"/>
+        <source>Branch &amp;&amp; Switch</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
         <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="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>Switch</source>
         <translation type="unfinished">Mudar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
         <source>Switch the working directory to the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Show Short Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="342"/>
+        <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="345"/>
-        <source>Describe</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Describe</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
         <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="648"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="650"/>
         <source>The git process did not finish within 30s.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="651"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="653"/>
         <source>Could not start the git executable.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="654"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="656"/>
         <source>Git Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="771"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <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="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <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="1275"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1277"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1287"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1289"/>
         <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="1725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1727"/>
         <source>Copy Changesets</source>
         <translation type="unfinished">Copiar Conjuntos de Alterações</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Select a branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Select a default branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Branch &amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2133"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2135"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2148"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
         <source>Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2174"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2176"/>
         <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="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <source>Save Diff</source>
         <translation type="unfinished">Gravar Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2303"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2305"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2320"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2322"/>
         <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="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <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>
@@ -23922,7 +23922,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="395"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="397"/>
         <source>Git Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23948,7 +23948,7 @@
         <translation type="unfinished">Selecionar estado das entradas a mostrar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>Commit</source>
         <translation type="unfinished">Cometido</translation>
     </message>
@@ -24023,322 +24023,322 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="65"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
         <source>Refresh</source>
         <translation type="unfinished">Atualizar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="69"/>
         <source>Press to refresh the status display</source>
         <translation type="unfinished">Pressionar para atualizar o visor de estado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="107"/>
         <source>Stage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="111"/>
         <source>Revert Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="115"/>
         <source>Stage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="119"/>
         <source>Revert Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="123"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="125"/>
         <source>Unstage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="127"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="129"/>
         <source>Unstage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
-        <source>added</source>
-        <translation type="unfinished">adicionado</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
-        <source>copied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
-        <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="172"/>
-        <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="173"/>
-        <source>renamed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="175"/>
-        <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="174"/>
-        <source>unmerged</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <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="175"/>
+        <source>renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="177"/>
+        <source>not tracked</source>
+        <translation type="unfinished">sem rastrear</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="176"/>
+        <source>unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmodified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="178"/>
         <source>ignored</source>
         <translation type="unfinished">ignorado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="199"/>
         <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="198"/>
-        <source>Amend</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="200"/>
-        <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="202"/>
-        <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="204"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished">Selecionar tudo para cometer</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
         <source>Unselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <source>Add</source>
         <translation type="unfinished">Adicionar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="212"/>
         <source>Add the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="211"/>
-        <source>Stage changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="213"/>
-        <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="215"/>
-        <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="217"/>
+        <source>Unstage changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="219"/>
         <source>Unstages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>Differences</source>
         <translation type="unfinished">Diferenças</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="224"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226"/>
         <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="227"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="229"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="231"/>
         <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="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>Revert</source>
         <translation type="unfinished">Anular</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="242"/>
-        <source>Forget missing</source>
-        <translation type="unfinished">Esquecer desaparecidos</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
-        <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="246"/>
-        <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="248"/>
+        <source>Restore missing</source>
+        <translation type="unfinished">Restaurar desaparecidos</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="250"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
-        <source>Edit file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
+        <source>Edit file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257"/>
         <source>Edit the selected conflicting file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="260"/>
-        <source>Adjust column sizes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="262"/>
+        <source>Adjust column sizes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="264"/>
         <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="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <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="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <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="596"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="598"/>
         <source>all</source>
         <translation type="unfinished">tudo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <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="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <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="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>Stage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>There are no stageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>Unstage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
         <source>Forget Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <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="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <source>Restore Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <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="891"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="893"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="870"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872"/>
         <source>Staging Area to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="892"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <source>Working Tree to HEAD Commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Side-by-Side Difference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Select the compare method.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1201"/>
-        <source>Revert selected lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1203"/>
+        <source>Revert selected lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1205"/>
         <source>Revert hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1206"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25545,357 +25545,357 @@
 <context>
     <name>HelpBrowser</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="745"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="748"/>
         <source>&lt;b&gt;Help Window&lt;/b&gt;&lt;p&gt;This window displays the selected help information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Janela de Ajuda&lt;/b&gt;&lt;p&gt;Esta janela mostra a informação da ajuda selecionada.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="931"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="934"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não existe o ficheiro &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="976"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="979"/>
         <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não pode abrir um visor para o ficheiro &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="956"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="959"/>
         <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não pode começar uma aplicação para URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1220"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1223"/>
         <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation>Abrir Vínculo num Separador Novo<byte value="x9"/>Ctrl+LMB</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1227"/>
-        <source>Save Lin&amp;k</source>
-        <translation>Gravar &amp;Vínculo</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1230"/>
+        <source>Save Lin&amp;k</source>
+        <translation>Gravar &amp;Vínculo</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1233"/>
         <source>Bookmark this Link</source>
         <translation>Marcar este Vínculo</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1237"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
         <source>Copy Link to Clipboard</source>
         <translation>Copiar Vínculo para a Área de Transferência</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1258"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1261"/>
         <source>Open Image in New Tab</source>
         <translation>Abrir imagem num Separador Novo</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1265"/>
-        <source>Save Image</source>
-        <translation>Gravar Imagem</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1268"/>
+        <source>Save Image</source>
+        <translation>Gravar Imagem</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1271"/>
         <source>Copy Image to Clipboard</source>
         <translation>Copiar Imagem para a Área de Transferência</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1270"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1273"/>
         <source>Copy Image Location to Clipboard</source>
         <translation>Copiar Localização da Imagem para a Área de Transferência</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1283"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1286"/>
         <source>Block Image</source>
         <translation>Bloquear Imagem</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1424"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
         <source>Bookmark this Page</source>
         <translation>Marcar esta Página</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1457"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1460"/>
         <source>Search with...</source>
         <translation>Procurar com...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1511"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1514"/>
         <source>Add to web search toolbar</source>
         <translation>Adicionar á barra de pesquisa web</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1518"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1521"/>
         <source>Web Inspector...</source>
         <translation>Inspetor Web...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>Method not supported</source>
         <translation>Método não suportado</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>{0} method is not supported.</source>
         <translation>Método {0} não está suportado.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Search engine</source>
         <translation>Motor de pesquisa</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Choose the desired search engine</source>
         <translation>Escolha o motor de pesquisa desejado</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Engine name</source>
         <translation>Nome do Motor</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Enter a name for the engine</source>
         <translation>Introduzir um nome para o motor</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2181"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2184"/>
         <source>Error loading page: {0}</source>
         <translation>Erro ao carregar a página: {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2199"/>
-        <source>When connecting to: {0}.</source>
-        <translation>Ao conectar com: {0}.</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2202"/>
+        <source>When connecting to: {0}.</source>
+        <translation>Ao conectar com: {0}.</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2205"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation>Verifique se a direção tem erros como &lt;b&gt;ww&lt;/b&gt;.exemplo.org em lugar de &lt;b&gt;www&lt;/b&gt;.exemplo.org</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2210"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation>Se a direção está correcta, verifique a conexão da rede.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2214"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation>Se um firewall ou proxy protegem o seu computador ou rede, certifique-se de que o navegador tem permissão para aceder à rede.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2217"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2220"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>Web Database Quota</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>&lt;p&gt;The database quota of &lt;strong&gt;{0}&lt;/strong&gt; has been exceeded while accessing database &lt;strong&gt;{1}&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Shall it be changed?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>New Web Database Quota</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2297"/>
-        <source>bytes</source>
-        <translation></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2300"/>
-        <source>kB</source>
+        <source>bytes</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2303"/>
+        <source>kB</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2306"/>
         <source>MB</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1248"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1251"/>
         <source>Scan Link with VirusTotal</source>
         <translation>Escanear Vínculo com VirusTotal</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1291"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1294"/>
         <source>Scan Image with VirusTotal</source>
         <translation>Escanear Imagem com VirusTotal</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1243"/>
         <source>Send Link</source>
         <translation>Enviar Vínculo</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1276"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1279"/>
         <source>Send Image Link</source>
         <translation>Enviar Vínculo da Imagem</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1384"/>
-        <source>This Frame</source>
-        <translation>Este Marco</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1387"/>
-        <source>Show &amp;only this frame</source>
-        <translation>M&amp;ostrar apenas este marco</translation>
+        <source>This Frame</source>
+        <translation>Este Marco</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1390"/>
+        <source>Show &amp;only this frame</source>
+        <translation>M&amp;ostrar apenas este marco</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1393"/>
         <source>Show in new &amp;tab</source>
         <translation>Mostrar num &amp;separador novo</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1397"/>
-        <source>&amp;Print</source>
-        <translation>Im&amp;primir</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1400"/>
-        <source>Print Preview</source>
-        <translation>Antevisão da Impressão</translation>
+        <source>&amp;Print</source>
+        <translation>Im&amp;primir</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1403"/>
+        <source>Print Preview</source>
+        <translation>Antevisão da Impressão</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1406"/>
         <source>Print as PDF</source>
         <translation>Imprimir como PDF</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1407"/>
-        <source>Zoom &amp;in</source>
-        <translation>Apro&amp;ximar</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1410"/>
-        <source>Zoom &amp;reset</source>
-        <translation>&amp;Repor Zoom</translation>
+        <source>Zoom &amp;in</source>
+        <translation>Apro&amp;ximar</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1413"/>
+        <source>Zoom &amp;reset</source>
+        <translation>&amp;Repor Zoom</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1416"/>
         <source>Zoom &amp;out</source>
         <translation>A&amp;fastar</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1417"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1420"/>
         <source>Show frame so&amp;urce</source>
         <translation>Mostrar código do ma&amp;rco</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1430"/>
         <source>Send Page Link</source>
         <translation>Enviar o Vínculo da Página</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1448"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1451"/>
         <source>Send Text</source>
         <translation>Enviar Texto</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1482"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1485"/>
         <source>Google Translate</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1491"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1494"/>
         <source>Dictionary</source>
         <translation>Dicionário</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1501"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1504"/>
         <source>Go to web address</source>
         <translation>Ir à direção web</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1434"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1437"/>
         <source>User Agent</source>
         <translation>Agente de Usuario</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2222"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2225"/>
         <source>Try Again</source>
         <translation>Tentar de Novo</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1311"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1314"/>
         <source>Play</source>
         <translation>Reproduzir</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1315"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1318"/>
         <source>Pause</source>
         <translation>Pausa</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1319"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1322"/>
         <source>Unmute</source>
         <translation>Com som</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1323"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1326"/>
         <source>Mute</source>
         <translation>Sem som</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1327"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1330"/>
         <source>Copy Media Address to Clipboard</source>
         <translation>Opiar Direção da Media à Area de Transferência</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1333"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1336"/>
         <source>Send Media Address</source>
         <translation>Enviar Direção da Media</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1339"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1342"/>
         <source>Save Media</source>
         <translation>Gravar Media</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>eric6 Web Browser</source>
         <translation>Navegador Web de eric6</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5. Please upgrade.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Imprimir não está disponível devido a um falho em PyQt5. Por favor atualize.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2626"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2629"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5.Please upgrade.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Imprimir não está disponível devido a um falho em PyQt5.Por favor atualize.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1200"/>
-        <source>Add New Page</source>
-        <translation type="unfinished">Adicionar Nova Página</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1203"/>
+        <source>Add New Page</source>
+        <translation type="unfinished">Adicionar Nova Página</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1206"/>
         <source>Configure Speed Dial</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1210"/>
         <source>Reload All Dials</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1214"/>
         <source>Reset to Default Dials</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27292,82 +27292,82 @@
 <context>
     <name>HelpWebPage</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="376"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="379"/>
         <source>Error loading page: {0}</source>
         <translation>Erro ao carregar a página: {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="395"/>
-        <source>When connecting to: {0}.</source>
-        <translation>Ao conectar com: {0}.</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="398"/>
+        <source>When connecting to: {0}.</source>
+        <translation>Ao conectar com: {0}.</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="401"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation type="unfinished">Verifique se a direção tem erros como &lt;b&gt;ww&lt;/b&gt;.exemplo.org em lugar de &lt;b&gt;www&lt;/b&gt;.exemplo.org</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="403"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="406"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation type="unfinished">Se a direção está correcta, verifique a conexão da rede.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="408"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="411"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation>Se um firewall ou proxy protegem o seu computador ou rede, certifique-se de que o navegador tem permissão para aceder à rede.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="414"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="417"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>Resending POST request</source>
         <translation>A reenviar solicitude POST</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>In order to display the site, the request along with all the data must be sent once again, which may lead to some unexpected behaviour of the site e.g. the same action might be performed once again. Do you want to continue anyway?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="419"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="422"/>
         <source>Try Again</source>
         <translation>Tentar de Novo</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="351"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="354"/>
         <source>Content blocked by AdBlock Plus</source>
         <translation>Conteúdo bloqueado por AdBlock Plus</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="352"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="355"/>
         <source>Blocked by rule: &lt;i&gt;{0}&lt;/i&gt;</source>
         <translation>Bloqueado pela regra: &lt;i&gt;{0}&lt;/i&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="309"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="312"/>
         <source>Select files to upload...</source>
         <translation>Selecionar ficheiros a subir...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>SSL Info</source>
         <translation>Informação SSL</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>This site does not contain SSL information.</source>
         <translation>Este sítio não tem informação SSL.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Protocol Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Open external application for {0}-link?
 URL: {1}</source>
         <translation type="unfinished"></translation>
@@ -43601,27 +43601,27 @@
 <context>
     <name>JavaScriptEricObject</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="114"/>
         <source>Search!</source>
         <translation>Procurar!</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="150"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="153"/>
         <source>Search results provided by {0}</source>
         <translation>Procurar resultados fornecidos por {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="108"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
         <source>Welcome to eric6 Web Browser!</source>
         <translation>Bem-vindo ao Navegador Web de eric6!</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="110"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="113"/>
         <source>eric6 Web Browser</source>
         <translation>Navegador Web de eric6</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="112"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="115"/>
         <source>About eric6</source>
         <translation>Acerca do eric6</translation>
     </message>
@@ -46553,12 +46553,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <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>
@@ -51473,22 +51473,22 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="484"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="499"/>
         <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="597"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="612"/>
         <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="653"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="668"/>
         <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="681"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="696"/>
         <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>
@@ -51496,40 +51496,45 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="88"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="76"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="87"/>
         <source>Enable JavaScript</source>
         <translation>Habilitar JavaScript</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="83"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="94"/>
         <source>Select to enable support for 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="92"/>
         <source>Enable Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="190"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="205"/>
         <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="252"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="267"/>
         <source>Preview - {0}</source>
         <translation>Antevisão - {0}</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="254"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="269"/>
         <source>Preview</source>
         <translation>Antevisão</translation>
     </message>
+    <message>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="70"/>
+        <source>&lt;b&gt;HTML Preview is not available!&lt;br/&gt;Install QtWebEngine or QtWebKit.&lt;/b&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PreviewerQSS</name>
@@ -53659,7 +53664,7 @@
         <translation>A compilar formulários...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="905"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="943"/>
         <source>Abort</source>
         <translation>Terminar</translation>
     </message>
@@ -54484,7 +54489,7 @@
         <translation>A compilar recursos...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="777"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="850"/>
         <source>Abort</source>
         <translation>Cancelar</translation>
     </message>
@@ -63235,280 +63240,280 @@
 <context>
     <name>ShellWindow</name>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Quit</source>
         <translation type="unfinished">Sair</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">Sai&amp;r</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="201"/>
         <source>Quit the Shell</source>
         <translation type="unfinished">Sair do IDE</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="197"/>
+        <location filename="../QScintilla/ShellWindow.py" line="202"/>
         <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New Window</source>
         <translation type="unfinished">Nova Janela</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New &amp;Window</source>
         <translation type="unfinished">Nova &amp;Janela</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished">Ctrl+Shift+N</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="211"/>
+        <location filename="../QScintilla/ShellWindow.py" line="216"/>
         <source>Open a new Shell window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="213"/>
+        <location filename="../QScintilla/ShellWindow.py" line="218"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="220"/>
-        <source>Restart</source>
-        <translation type="unfinished">Reiniciar</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="225"/>
+        <source>Restart</source>
+        <translation type="unfinished">Reiniciar</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="230"/>
         <source>Restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="227"/>
+        <location filename="../QScintilla/ShellWindow.py" line="232"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="234"/>
-        <source>Restart and Clear</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="239"/>
+        <source>Restart and Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="244"/>
         <source>Clear the window and restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="241"/>
+        <location filename="../QScintilla/ShellWindow.py" line="246"/>
         <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>Show History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>&amp;Show History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="882"/>
+        <location filename="../QScintilla/ShellWindow.py" line="887"/>
         <source>Show the shell history in a dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>Clear History</source>
         <translation type="unfinished">Limpar Histórico</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>&amp;Clear History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="892"/>
+        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Clear the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
+        <location filename="../QScintilla/ShellWindow.py" line="901"/>
         <source>Select History Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
-        <source>Select History &amp;Entry</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
+        <source>Select History &amp;Entry</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="906"/>
         <source>Select an entry of the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>About</source>
         <translation type="unfinished">Acerca</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>&amp;About</source>
         <translation type="unfinished">A&amp;cerca</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="913"/>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
         <source>Display information about this software</source>
         <translation type="unfinished">Mostra a informação acerca deste software</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="915"/>
+        <location filename="../QScintilla/ShellWindow.py" line="920"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Acerca&lt;/b&gt;&lt;p&gt;Mostra alguma informação acerca deste software.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About Qt</source>
         <translation type="unfinished">Acerca de Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished">Acerca de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="925"/>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished">Mostra informação acerca das Ferramentas de Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="927"/>
+        <location filename="../QScintilla/ShellWindow.py" line="932"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Acerca de Qt&lt;/b&gt;&lt;p&gt;Mostra alguma informação acerca das Ferramentas de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
+        <location filename="../QScintilla/ShellWindow.py" line="945"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">Ajuda sensível ao contexto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="941"/>
+        <location filename="../QScintilla/ShellWindow.py" line="946"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Mostrar ajuda sensível a contexto&lt;/b&gt;&lt;p&gt;No modo &apos;Que é Isto?&apos; o cursor do rato mostra uma flecha com um ponto de  interrogação, e pode clicar nos elementos da interface para ver uma breve descrição do que fazem e como se usam. Nas caixas de diálogo, pode-se aceder a esta característica através do botão de ajuda contextual da barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>About eric6 Shell Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1105"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1110"/>
         <source>&amp;File</source>
         <translation type="unfinished">&amp;Ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1114"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1119"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1125"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1130"/>
         <source>&amp;View</source>
         <translation type="unfinished">&amp;Vista</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1132"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
         <source>Histor&amp;y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1139"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1144"/>
         <source>&amp;Start</source>
         <translation type="unfinished">&amp;Iniciar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1145"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1150"/>
         <source>&amp;Help</source>
         <translation type="unfinished">&amp;Ajuda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1180"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1185"/>
         <source>File</source>
         <translation type="unfinished">Ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1189"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1194"/>
         <source>Edit</source>
         <translation type="unfinished">Editar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
         <source>Find</source>
         <translation type="unfinished">Encontrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1202"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1207"/>
         <source>View</source>
         <translation type="unfinished">Vista</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1209"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1214"/>
         <source>History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1215"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1220"/>
         <source>Help</source>
         <translation type="unfinished">Ajuda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1241"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="570"/>
+        <location filename="../QScintilla/ShellWindow.py" line="575"/>
         <source>Move forward one history entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="580"/>
+        <location filename="../QScintilla/ShellWindow.py" line="585"/>
         <source>Move back one history entry</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74616,12 +74621,12 @@
         <translation type="unfinished">Mostrar Versões</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="523"/>
+        <location filename="../Tools/TrayStarter.py" line="526"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation type="unfinished">&lt;h3&gt;Números de Versão&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="550"/>
+        <location filename="../Tools/TrayStarter.py" line="553"/>
         <source>&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75207,7 +75212,7 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>Unittest</source>
         <translation>Teste Unitário</translation>
     </message>
@@ -75398,57 +75403,57 @@
         <translation>^Erro:</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="205"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="207"/>
         <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source>
         <translation>Ficheiros Python3 ({1});;Ficheiros Python2 ({0});;Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="209"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="211"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>Ficheiros Python (*.py);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="269"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="271"/>
         <source>You must enter a test suite file.</source>
         <translation>Deve introduzir um ficheiro de suite de testes.</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="277"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="279"/>
         <source>Preparing Testsuite</source>
         <translation>A preparar Suite de Testes</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;{1}&lt;br&gt;{2}&lt;/p&gt;</source>
         <translation>&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="475"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="477"/>
         <source>Running</source>
         <translation>A executar</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="499"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="501"/>
         <source>Ran {0} test in {1:.3f}s</source>
         <translation>Executado {0} teste em {1:.3f}s</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="503"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="505"/>
         <source>Ran {0} tests in {1:.3f}s</source>
         <translation>Executados {0} testes em {1:.3f}s</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="520"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="522"/>
         <source>Failure: {0}</source>
         <translation>Falho: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="535"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="537"/>
         <source>Error: {0}</source>
         <translation>Erro: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="640"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="642"/>
         <source>Show Source</source>
         <translation>Mostrar Fonte</translation>
     </message>
@@ -75483,17 +75488,17 @@
         <translation>Número de testes com êxito imprevistos</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="550"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="552"/>
         <source>    Skipped: {0}</source>
         <translation>    Saltado: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="565"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="567"/>
         <source>    Expected Failure</source>
         <translation>    Falhos esperados</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="579"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="581"/>
         <source>    Unexpected Success</source>
         <translation>    Sucessos Inesperados</translation>
     </message>
@@ -76081,7 +76086,7 @@
         <translation>Mostrar as versões disponíveis para descarregar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <source>Report Bug</source>
         <translation>Reportar Falho</translation>
     </message>
@@ -76181,7 +76186,7 @@
         <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="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <source>Unittest Project</source>
         <translation>Teste Unitário ao Projeto</translation>
     </message>
@@ -76466,7 +76471,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5846"/>
+        <location filename="../UI/UserInterface.py" line="5849"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Exportar Atalhos de Teclado</translation>
     </message>
@@ -76486,7 +76491,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Importar Atalhos de Teclado</translation>
     </message>
@@ -76736,7 +76741,7 @@
         <translation>Definições</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <source>Help</source>
         <translation>Ajuda</translation>
     </message>
@@ -76786,270 +76791,270 @@
         <translation>Ferramentas Externas/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3259"/>
+        <location filename="../UI/UserInterface.py" line="3262"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Números de Versão&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6826"/>
+        <location filename="../UI/UserInterface.py" line="6829"/>
         <source>&lt;/table&gt;</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <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="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>Restart application</source>
         <translation>Reiniciar a aplicação</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <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="3673"/>
+        <location filename="../UI/UserInterface.py" line="3676"/>
         <source>Configure Tool Groups ...</source>
         <translation>Configurar Grupos de Ferramentas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3677"/>
+        <location filename="../UI/UserInterface.py" line="3680"/>
         <source>Configure current Tool Group ...</source>
         <translation>Configurar o atual Grupo de Ferramentas ...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3628"/>
+        <location filename="../UI/UserInterface.py" line="3631"/>
         <source>&amp;Builtin Tools</source>
         <translation>Ferramentas &amp;Internas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3645"/>
+        <location filename="../UI/UserInterface.py" line="3648"/>
         <source>&amp;Plugin Tools</source>
         <translation>Ferramentas dos &amp;Complementos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3793"/>
+        <location filename="../UI/UserInterface.py" line="3796"/>
         <source>&amp;Show all</source>
         <translation>&amp;Mostrar tudo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3795"/>
+        <location filename="../UI/UserInterface.py" line="3798"/>
         <source>&amp;Hide all</source>
         <translation>&amp;Esconder tudo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <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="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt 3 support</source>
         <translation>Suporte Qt3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <source>Problem</source>
         <translation>Problema</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <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="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4548"/>
+        <location filename="../UI/UserInterface.py" line="4551"/>
         <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="4615"/>
+        <location filename="../UI/UserInterface.py" line="4618"/>
         <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="4666"/>
+        <location filename="../UI/UserInterface.py" line="4669"/>
         <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="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <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="4708"/>
+        <location filename="../UI/UserInterface.py" line="4711"/>
         <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="4728"/>
+        <location filename="../UI/UserInterface.py" line="4731"/>
         <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="4776"/>
+        <location filename="../UI/UserInterface.py" line="4779"/>
         <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="4831"/>
+        <location filename="../UI/UserInterface.py" line="4834"/>
         <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="4852"/>
+        <location filename="../UI/UserInterface.py" line="4855"/>
         <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="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>External Tools</source>
         <translation>Ferramentas Externas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4945"/>
+        <location filename="../UI/UserInterface.py" line="4948"/>
         <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="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4993"/>
+        <location filename="../UI/UserInterface.py" line="4996"/>
         <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="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <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="5085"/>
+        <location filename="../UI/UserInterface.py" line="5088"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>Processo &apos;{0}&apos; saiu.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <source>Documentation Missing</source>
         <translation>Falta a Documentação</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <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="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>Documentation</source>
         <translation>Documentação</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5303"/>
+        <location filename="../UI/UserInterface.py" line="5306"/>
         <source>&lt;p&gt;The PyQt4 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation>Ficheiro de atalhos de teclado (*.e4k)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>Save tasks</source>
         <translation>Gravar tarefas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <source>Read tasks</source>
         <translation>Ler tarefas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <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="6165"/>
+        <location filename="../UI/UserInterface.py" line="6168"/>
         <source>Save session</source>
         <translation>Guargar sessão</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6102"/>
+        <location filename="../UI/UserInterface.py" line="6105"/>
         <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="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <source>Read session</source>
         <translation>Sessão de leitura</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <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="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <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="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Cancelar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6610"/>
+        <location filename="../UI/UserInterface.py" line="6613"/>
         <source>Trying host {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>Update available</source>
         <translation>Atualização disponível</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Error during updates check</source>
         <translation>Erro na verificação de atualizações</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Could not perform updates check.</source>
         <translation>Não procurar atualizações.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6812"/>
+        <location filename="../UI/UserInterface.py" line="6815"/>
         <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="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>First time usage</source>
         <translation>Usado a primeira vez</translation>
     </message>
@@ -77089,27 +77094,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <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="6667"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <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="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Open Browser</source>
         <translation>Abrir Navegador</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <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="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <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>
@@ -77195,12 +77200,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4922"/>
+        <location filename="../UI/UserInterface.py" line="4925"/>
         <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="6882"/>
+        <location filename="../UI/UserInterface.py" line="6885"/>
         <source>Select Workspace Directory</source>
         <translation>Selecionar o Diretório de Trabalho</translation>
     </message>
@@ -77575,7 +77580,7 @@
         <translation>Abrir a Documentação de PyQt5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5369"/>
+        <location filename="../UI/UserInterface.py" line="5372"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77585,7 +77590,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>%v/%m</source>
         <translation></translation>
     </message>
@@ -77670,32 +77675,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt v.3 is not supported by eric6.</source>
         <translation>Qt v.3 não está suportado por eric6.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6605"/>
+        <location filename="../UI/UserInterface.py" line="6608"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation>Atualização a &lt;b&gt;{0}&lt;/b&gt; de eric6 já está disponível em &lt;b&gt;{1}&lt;/b&gt;. Quere-a descarregar?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>Eric6 is up to date</source>
         <translation>Eric6 está atualizado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>You are using the latest version of eric6</source>
         <translation>Utiliza a última versão do eric6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
         <translation>eric6 ainda não foi configurado. A caixa de diálogo de configuração vai iniciar-se.</translation>
     </message>
@@ -77705,17 +77710,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3648"/>
+        <location filename="../UI/UserInterface.py" line="3651"/>
         <source>&amp;User Tools</source>
         <translation>Ferramentas de &amp;Utilizador</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3720"/>
+        <location filename="../UI/UserInterface.py" line="3723"/>
         <source>No User Tools Configured</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6621"/>
+        <location filename="../UI/UserInterface.py" line="6624"/>
         <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77760,7 +77765,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>Load session</source>
         <translation type="unfinished">Carregar sessão</translation>
     </message>
@@ -77775,17 +77780,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77800,17 +77805,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <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="6746"/>
+        <location filename="../UI/UserInterface.py" line="6749"/>
         <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77865,7 +77870,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82357,12 +82362,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="55"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="58"/>
         <source>Virtualenv Target Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="60"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="63"/>
         <source>Python Interpreter</source>
         <translation type="unfinished">Intérprete de Python</translation>
     </message>
@@ -82824,52 +82829,52 @@
 <context>
     <name>VirtualenvManager</name>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>Add Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="173"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="185"/>
         <source>Change Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>Rename Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="270"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="304"/>
         <source>{0} - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Delete Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Do you really want to delete these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Remove Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Do you really want to remove these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -87502,12 +87507,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="388"/>
+        <location filename="../eric6.py" line="391"/>
         <source>Starting...</source>
         <translation>A iniciar...</translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="393"/>
+        <location filename="../eric6.py" line="396"/>
         <source>Generating Main Window...</source>
         <translation>A criar a Janela Principal...</translation>
     </message>
--- a/i18n/eric6_ru.ts	Tue Jun 26 18:39:14 2018 +0200
+++ b/i18n/eric6_ru.ts	Tue Jun 26 18:50:04 2018 +0200
@@ -1463,37 +1463,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="130"/>
+        <location filename="../Utilities/BackgroundService.py" line="132"/>
         <source>{0} not configured.</source>
         <translation>{0} не сконфигурирован.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <source>Restart background client?</source>
         <translation>Перезапустить клиента в фоновом режиме?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="212"/>
+        <location filename="../Utilities/BackgroundService.py" line="214"/>
         <source>An error in Erics background client stopped the service.</source>
         <translation>Ошибка фонового клиента остановила сервис.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="423"/>
+        <location filename="../Utilities/BackgroundService.py" line="427"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation>Фоновый клиент Eric&apos;а прервал соединение по неизвестной причине.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <source>Background client disconnected.</source>
         <translation>Соединение фонового клиента прервано.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <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;&apos;Да&apos;&lt;/b&gt; чтобы перезапустить его и отменить последнее задание &lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Повторить&apos;&lt;/b&gt; чтобы перезапустить его и последнее задание &lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Нет&apos;&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="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <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>
@@ -2982,46 +2982,46 @@
         <translation>&lt;disabled&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="281"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="285"/>
         <source>Main Menu</source>
         <translation>Основное меню</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="291"/>
-        <source>Rich Text</source>
-        <translation>RTF-формат</translation>
-    </message>
-    <message>
         <location filename="../UI/CodeDocumentationViewer.py" line="296"/>
+        <source>Rich Text</source>
+        <translation>RTF-формат</translation>
+    </message>
+    <message>
+        <location filename="../UI/CodeDocumentationViewer.py" line="304"/>
         <source>Plain Text</source>
         <translation>Простой текст</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="471"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="480"/>
         <source>No documentation available</source>
         <translation>Документация недоступна</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="498"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="507"/>
         <source>Definition: {0}{1}
 </source>
         <translation>Определение: {0} {1}
 </translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="501"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="510"/>
         <source>Definition: {0}
 </source>
         <translation>Определение: {0}
 </translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="548"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="557"/>
         <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="553"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="562"/>
         <source>This function has been disabled.</source>
         <translation>Эта функция отключена.</translation>
     </message>
@@ -3043,14 +3043,14 @@
         <translation>&lt;p&gt;&lt;b&gt;Примечание:&lt;/b&gt; @NOTE@&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="509"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="518"/>
         <source>Type: {0}
 </source>
         <translation>Тип: {0}
 </translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="517"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="526"/>
         <source>Note: {0}
 </source>
         <translation>Примечание: {0}
@@ -4476,329 +4476,329 @@
 <context>
     <name>ConfigurationWidget</name>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="136"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="143"/>
         <source>Application</source>
         <translation>Приложения</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="139"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="146"/>
         <source>Cooperation</source>
         <translation>Кооперация</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="142"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="149"/>
         <source>CORBA</source>
         <translation>CORBA</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="148"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="155"/>
         <source>Email</source>
         <translation>Email</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="151"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="158"/>
         <source>Graphics</source>
         <translation>Графика</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="157"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="164"/>
         <source>Icons</source>
         <translation>Пиктограммы</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="447"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="454"/>
         <source>Network</source>
         <translation>Сеть</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="176"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
         <source>Plugin Manager</source>
         <translation>Менеджер плагинов</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="450"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
         <source>Printer</source>
         <translation>Печать</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="186"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="193"/>
         <source>Python</source>
         <translation>Python</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="189"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="196"/>
         <source>Qt</source>
         <translation>Qt</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="195"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="202"/>
         <source>Shell</source>
         <translation>Оболочка</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="198"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="205"/>
         <source>Tasks</source>
         <translation>Задачи</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="201"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="208"/>
         <source>Templates</source>
         <translation>Шаблоны</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="207"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="214"/>
         <source>Version Control Systems</source>
         <translation>Системы контроля версий</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="212"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="219"/>
         <source>Debugger</source>
         <translation>Отладка</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="248"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
         <source>General</source>
         <translation>Основные параметры</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="221"/>
-        <source>Python3</source>
-        <translation>Python3</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
-        <source>Editor</source>
-        <translation>Редактор</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
+        <source>Python3</source>
+        <translation>Python3</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="232"/>
+        <source>Editor</source>
+        <translation>Редактор</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="235"/>
         <source>APIs</source>
         <translation>APIs</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="231"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="238"/>
         <source>Autocompletion</source>
         <translation>Автодополнение</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="242"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="249"/>
         <source>QScintilla</source>
         <translation>QScintilla</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="239"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="246"/>
         <source>Calltips</source>
         <translation>Подсказки</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="251"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="258"/>
         <source>Filehandling</source>
         <translation>Работа с файлами</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
-        <source>Searching</source>
-        <translation>Поиск</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="478"/>
-        <source>Spell checking</source>
-        <translation>Проверка орфографии</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="262"/>
+        <source>Searching</source>
+        <translation>Поиск</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="485"/>
+        <source>Spell checking</source>
+        <translation>Проверка орфографии</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="269"/>
         <source>Style</source>
         <translation>Стиль</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="268"/>
-        <source>Typing</source>
-        <translation>Набор текста</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="271"/>
-        <source>Exporters</source>
-        <translation>Экспортёры</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="275"/>
+        <source>Typing</source>
+        <translation>Набор текста</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="278"/>
+        <source>Exporters</source>
+        <translation>Экспортёры</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="282"/>
         <source>Highlighters</source>
         <translation>Подсветка синтаксиса</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="279"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="286"/>
         <source>Filetype Associations</source>
         <translation>Ассоциации типа файлов</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="283"/>
-        <source>Styles</source>
-        <translation>Стили</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="287"/>
-        <source>Keywords</source>
-        <translation>Ключевые слова</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="290"/>
+        <source>Styles</source>
+        <translation>Стили</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="294"/>
+        <source>Keywords</source>
+        <translation>Ключевые слова</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="297"/>
         <source>Properties</source>
         <translation>Свойства</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="299"/>
-        <source>Help</source>
-        <translation>Справка</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="462"/>
-        <source>Appearance</source>
-        <translation>Стили</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
-        <source>Help Documentation</source>
-        <translation>Справочная документация</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="306"/>
+        <source>Help</source>
+        <translation>Справка</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <source>Appearance</source>
+        <translation>Стили</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="464"/>
+        <source>Help Documentation</source>
+        <translation>Справочная документация</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="313"/>
         <source>Help Viewers</source>
         <translation>Просмотр справки</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="317"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="324"/>
         <source>Project</source>
         <translation>Проект</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="314"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="321"/>
         <source>Project Viewer</source>
         <translation>Просмотр проектов</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="320"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="327"/>
         <source>Multiproject</source>
         <translation>Мультипроект</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="444"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="451"/>
         <source>Interface</source>
         <translation>Интерфейс</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="331"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="338"/>
         <source>Viewmanager</source>
         <translation>Менеджер видов</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="646"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
         <source>Preferences</source>
         <translation>Предпочтения</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="651"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="658"/>
         <source>Please select an entry of the list 
 to display the configuration page.</source>
         <translation>Выберите элемент в списке слева,
 чтобы отобразить страницу настройки.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <source>Configuration Page Error</source>
         <translation>Ошибка страницы конфигурации</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <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>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="494"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="501"/>
         <source>Tray Starter</source>
         <translation>Tray Starter</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="473"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="480"/>
         <source>VirusTotal Interface</source>
         <translation>Интерфейс VirusTotal</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="453"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="460"/>
         <source>Security</source>
         <translation>Безопасность</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="172"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="179"/>
         <source>Notifications</source>
         <translation>Уведомления</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="160"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="167"/>
         <source>IRC</source>
         <translation>IRC</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="265"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="272"/>
         <source>Code Checkers</source>
         <translation>Проверка кода</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="465"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="472"/>
         <source>eric6 Web Browser</source>
         <translation>Eric6 Web браузер</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="163"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="170"/>
         <source>Log-Viewer</source>
         <translation>Просмотр журнала</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="166"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="173"/>
         <source>Mimetypes</source>
         <translation>Mimetypes</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="591"/>
         <source>Enter search text...</source>
         <translation>Введите искомый текст...</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="294"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="301"/>
         <source>Mouse Click Handlers</source>
         <translation>Обработка кликов мышки</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="476"/>
         <source>Flash Cookie Manager</source>
         <translation>Менеджер флэш-куки</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="507"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="514"/>
         <source>Hex Editor</source>
         <translation>Hex-редактор</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="364"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="371"/>
         <source>Web Browser</source>
         <translation>Web браузер</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="145"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="152"/>
         <source>Diff</source>
         <translation>Diff</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="245"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="252"/>
         <source>Documentation Viewer</source>
         <translation>Просмотр документации</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="190"/>
         <source>Protobuf</source>
         <translation>Protobuf</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="218"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
         <source>Python2</source>
         <translation>Python2</translation>
     </message>
@@ -5550,14 +5550,14 @@
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1603"/>
         <source>Passive debug connection received
 </source>
         <translation>Получен запрос на соединение для пассивной отладки
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1613"/>
+        <location filename="../Debugger/DebugServer.py" line="1617"/>
         <source>Passive debug connection closed
 </source>
         <translation>Соединение для пассивной отладки закрыто
@@ -19663,22 +19663,22 @@
         <translation>Задайте поле с фильтром</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
         <source>Author</source>
         <translation>Автор</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
         <source>Committer</source>
         <translation>Коммиттер</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1812"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1814"/>
         <source>Branch</source>
         <translation>Ветвь</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="106"/>
         <source>Subject</source>
         <translation>Сообщение</translation>
     </message>
@@ -19748,178 +19748,178 @@
         <translation>Выберите действие из меню</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
         <source>&amp;Refresh</source>
         <translation>&amp;Освежить</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="92"/>
         <source>Press to refresh the list of commits</source>
         <translation>Освежить список коммитов</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="198"/>
-        <source>Added</source>
-        <translation>Добавлен</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="199"/>
-        <source>Deleted</source>
-        <translation>Удален</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="200"/>
-        <source>Modified</source>
-        <translation>Модифицирован</translation>
+        <source>Added</source>
+        <translation>Добавлен</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="201"/>
-        <source>Copied</source>
-        <translation>Скопирован</translation>
+        <source>Deleted</source>
+        <translation>Удален</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="202"/>
-        <source>Renamed</source>
-        <translation>Переименован</translation>
+        <source>Modified</source>
+        <translation>Модифицирован</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Type changed</source>
-        <translation>Изменен тип</translation>
+        <source>Copied</source>
+        <translation>Скопирован</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Unmerged</source>
-        <translation>Не слито</translation>
+        <source>Renamed</source>
+        <translation>Переименован</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
+        <source>Type changed</source>
+        <translation>Изменен тип</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
+        <source>Unmerged</source>
+        <translation>Не слито</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
         <source>Unknown</source>
         <translation>Неизвестно</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
-        <source>Show Author Columns</source>
-        <translation>Показать колонки автора</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="253"/>
+        <source>Show Author Columns</source>
+        <translation>Показать колонки автора</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="255"/>
         <source>Press to show the author columns</source>
         <translation>Показать колонки автора</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
-        <source>Show Committer Columns</source>
-        <translation>Показать колонки коммиттера</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="263"/>
+        <source>Show Committer Columns</source>
+        <translation>Показать колонки коммиттера</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="265"/>
         <source>Press to show the committer columns</source>
         <translation>Показать колонки коммиттера</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="313"/>
-        <source>Copy Commits</source>
-        <translation>Копировать коммиты</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <source>Copy Commits</source>
+        <translation>Копировать коммиты</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
         <source>Cherry-pick the selected commits to the current branch</source>
         <translation>Скопировать выборку коммитов в текущую ветвь</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="320"/>
-        <source>Tag</source>
-        <translation>Тег</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <source>Tag</source>
+        <translation>Тег</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
         <source>Tag the selected commit</source>
         <translation>Тег выбранного коммита</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="326"/>
-        <source>Create a new branch at the selected commit.</source>
-        <translation>Ветвь на выбранном коммите.</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
-        <source>Branch &amp;&amp; Switch</source>
-        <translation>Создать ветвь &amp;&amp; Переключиться</translation>
+        <source>Create a new branch at the selected commit.</source>
+        <translation>Ветвь на выбранном коммите.</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="330"/>
+        <source>Branch &amp;&amp; Switch</source>
+        <translation>Создать ветвь &amp;&amp; Переключиться</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
         <source>Create a new branch at the selected commit and switch the work tree to it.</source>
         <translation>Создать новую ветвь на выбранном коммите и переключиться на нее.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>Switch</source>
         <translation>Переключиться</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
         <source>Switch the working directory to the selected commit</source>
         <translation>Переключить рабочую директорию на выбранный коммит</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Show Short Log</source>
         <translation>Показать краткую сводку</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="342"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="344"/>
         <source>Show a dialog with a log output for release notes</source>
         <translation>Показать краткую сводку примечаний для релиза</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="345"/>
-        <source>Describe</source>
-        <translation>Генерация номера релиза</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Describe</source>
+        <translation>Генерация номера релиза</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
         <source>Show the most recent tag reachable from a commit</source>
         <translation>Показать имя ближайшего тега, дополненное данными из коммита</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="648"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="650"/>
         <source>The git process did not finish within 30s.</source>
         <translation>Процесс Git  не завершился в течении 30 сек.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="651"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="653"/>
         <source>Could not start the git executable.</source>
         <translation>Невозможно запустить Git.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="654"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="656"/>
         <source>Git Error</source>
         <translation>Ошибка Git</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="771"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation>{0} ({1}%)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <source>Process Generation Error</source>
         <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <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/vcsGit/GitLogBrowserDialog.py" line="1725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1727"/>
         <source>Copy Changesets</source>
         <translation>Копировать набор изменений</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>The project should be reread. Do this now?</source>
         <translation>Проект должен быть перепрочитан. Сделать это сейчас?</translation>
     </message>
@@ -19929,17 +19929,17 @@
         <translation>Ветви</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Select a branch</source>
         <translation>Выберите ветвь</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Select a default branch</source>
         <translation>Выберите ветвь по умолчанию</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Branch &amp; Switch</source>
         <translation>Создать ветвь &amp;&amp; Переключиться на нее</translation>
     </message>
@@ -19959,37 +19959,37 @@
         <translation>Перейти к следующему вхождению</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
         <source>Commit ID</source>
         <translation>ID коммита</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="98"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="100"/>
         <source>Find</source>
         <translation>Найти</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
         <source>Filter</source>
         <translation>Фильтр</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="140"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="142"/>
         <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;Ветви&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"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="145"/>
         <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;Теги&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="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>&apos;{0}&apos; не найдено.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <source>Find Commit</source>
         <translation>Поиск коммита</translation>
     </message>
@@ -19999,7 +19999,7 @@
         <translation>Введите регулярное выражение для фильтра или поиска</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>File</source>
         <translation>Файл</translation>
     </message>
@@ -20024,7 +20024,7 @@
         <translation>Удалений</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2119"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2121"/>
         <source>Differences</source>
         <translation>Различия</translation>
     </message>
@@ -20034,97 +20034,97 @@
         <translation>&lt;a href=&quot;save:me&quot;&gt;Сохранить&lt;/a&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="124"/>
         <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 коммита&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;Дата&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;Автор&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;Дата подачи&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;Коммитер&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;Сообщение&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="134"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="136"/>
         <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;Предки&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="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="139"/>
         <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;Потомки&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"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="148"/>
         <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;Сообщения&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="1275"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1277"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation>Построчные различия с предком {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1287"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1289"/>
         <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;Построчное сравнение&lt;/a&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2133"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2135"/>
         <source>Differences to Parent {0}</source>
         <translation>Различия с предком {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2148"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
         <source>Diff to Parent {0}</source>
         <translation>Различия с предком {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2174"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2176"/>
         <source>There is no difference.</source>
         <translation>Различий нет.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <source>Save Diff</source>
         <translation>Сохранить различия</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2303"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2305"/>
         <source>Patch Files (*.diff)</source>
         <translation>Файлы изменений (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2320"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2322"/>
         <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/vcsGit/GitLogBrowserDialog.py" line="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <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/vcsGit/GitLogBrowserDialog.py" line="241"/>
-        <source>Show Commit ID Column</source>
-        <translation>Показать колонку ID коммита</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="243"/>
+        <source>Show Commit ID Column</source>
+        <translation>Показать колонку ID коммита</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="245"/>
         <source>Press to show the commit ID column</source>
         <translation>Показать колонку ID коммита</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
-        <source>Show Branches Column</source>
-        <translation>Показать колонку ветвей</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="273"/>
+        <source>Show Branches Column</source>
+        <translation>Показать колонку ветвей</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="275"/>
         <source>Press to show the branches column</source>
         <translation>Показать колонку ветвей</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
-        <source>Show Tags Column</source>
-        <translation>Показать колонку тегов</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="283"/>
+        <source>Show Tags Column</source>
+        <translation>Показать колонку тегов</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="285"/>
         <source>Press to show the Tags column</source>
         <translation>Показать колонку тегов</translation>
     </message>
@@ -23247,7 +23247,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="395"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="397"/>
         <source>Git Status</source>
         <translation>Git: Статус</translation>
     </message>
@@ -23269,7 +23269,7 @@
         <translation>Выберите статус записей для показа</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>Commit</source>
         <translation>Зафиксировать</translation>
     </message>
@@ -23289,12 +23289,12 @@
         <translation>Путь</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="199"/>
         <source>Commit the selected changes</source>
         <translation>Зафиксировать выбранные изменения</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="200"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="202"/>
         <source>Amend the latest commit with the selected changes</source>
         <translation>Поправить (amend) последний коммит с выбранными изменениями</translation>
     </message>
@@ -23344,202 +23344,202 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="65"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
         <source>Refresh</source>
         <translation>Освежить</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="69"/>
         <source>Press to refresh the status display</source>
         <translation>Освежить отображение статуса</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="202"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
         <source>Select all for commit</source>
         <translation>Выбрать все для фиксации</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="213"/>
         <source>Stage changes</source>
         <translation>Индексировать изменения</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="215"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="217"/>
         <source>Unstage changes</source>
         <translation>Отменить индексирование изменений</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="242"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
         <source>Forget missing</source>
         <translation>Забыть об утерянных</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="248"/>
         <source>Restore missing</source>
         <translation>Восстановить утерянные</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
         <source>Edit file</source>
         <translation>Редактировать файл</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="260"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="262"/>
         <source>Adjust column sizes</source>
         <translation>Уточнить размеры колонок</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
-        <source>added</source>
-        <translation>добавлено</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
-        <source>copied</source>
-        <translation>скопировано</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
-        <source>deleted</source>
-        <translation>удалено</translation>
+        <source>added</source>
+        <translation>добавлено</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="172"/>
-        <source>modified</source>
-        <translation>модифицировано</translation>
+        <source>copied</source>
+        <translation>скопировано</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="173"/>
-        <source>renamed</source>
-        <translation>переименовано</translation>
+        <source>deleted</source>
+        <translation>удалено</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="174"/>
+        <source>modified</source>
+        <translation>модифицировано</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="175"/>
+        <source>renamed</source>
+        <translation>переименовано</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="177"/>
         <source>not tracked</source>
         <translation>не отслеживается</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="174"/>
-        <source>unmerged</source>
-        <translation>не слито</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmodified</source>
-        <translation>нет изменений</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="176"/>
+        <source>unmerged</source>
+        <translation>не слито</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmodified</source>
+        <translation>нет изменений</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="178"/>
         <source>ignored</source>
         <translation>игнорировано</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <source>Process Generation Error</source>
         <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <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/vcsGit/GitStatusDialog.py" line="596"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="598"/>
         <source>all</source>
         <translation>все</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>There are no entries selected to be committed.</source>
         <translation>Не выбраны записи для фиксации.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <source>Add</source>
         <translation>Добавить</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation>Нет доступных/выбранных неверсированных записей.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>Stage</source>
         <translation>Индексировать</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>There are no stageable entries available/selected.</source>
         <translation>Нет доступных/выбранных записей для индексирования.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>Unstage</source>
         <translation>Отменить индексирование</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation>Нет доступных/выбранных деиндексированных записей.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
         <source>Forget Missing</source>
         <translation>Забыть об утерянных</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <source>There are no missing entries available/selected.</source>
         <translation>Нет доступных/выбраных недостающих записей.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>Revert</source>
         <translation>Отменить</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation>Нет доступных/выбранных нефиксированных, неиндексированных изменений.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <source>Restore Missing</source>
         <translation>Восстановить утерянные</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>Differences</source>
         <translation>Различия</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation>Нет доступных/выбранных нефиксированных изменений.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="891"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="893"/>
         <source>Working Tree to Staging Area</source>
         <translation>Рабочее дерево проекта и область индексирования</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="870"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872"/>
         <source>Staging Area to HEAD Commit</source>
         <translation>Область индексирования и HEAD коммит</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="892"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation>Рабочее дерево проекта и HEAD коммит</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <source>Working Tree to HEAD Commit</source>
+        <translation>Рабочее дерево проекта и HEAD коммит</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Side-by-Side Difference</source>
         <translation>Сводка различий</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Select the compare method.</source>
         <translation>Выберите метод сравнения.</translation>
     </message>
@@ -23554,47 +23554,47 @@
         <translation>Различия области индексирования и HEAD коммита</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="107"/>
         <source>Stage Selected Lines</source>
         <translation>Индексировать выбранные строки</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="111"/>
         <source>Revert Selected Lines</source>
         <translation>Отменить изменения выбранных строк</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="115"/>
         <source>Stage Hunk</source>
         <translation>Индексировать фрагмент</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="119"/>
         <source>Revert Hunk</source>
         <translation>Отменить изменения фрагмента</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="123"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="125"/>
         <source>Unstage Selected Lines</source>
         <translation>Отменить индексирование выбранных строк</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="127"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="129"/>
         <source>Unstage Hunk</source>
         <translation>Отменить индексирование фрагмента</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1201"/>
-        <source>Revert selected lines</source>
-        <translation>Отменить изменения выбранных строк</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1203"/>
+        <source>Revert selected lines</source>
+        <translation>Отменить изменения выбранных строк</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1205"/>
         <source>Revert hunk</source>
         <translation>Отменить изменения фрагмента</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1206"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation>Вы действительно хотите отменить выбранные изменения?</translation>
     </message>
@@ -23604,67 +23604,67 @@
         <translation>Выберите действие из меню</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="198"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="200"/>
         <source>Amend</source>
         <translation>Поправить</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
         <source>Unselect all from commit</source>
         <translation>Отменить все выбранное для фиксации</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="212"/>
         <source>Add the selected files</source>
         <translation>Добавить выбранные файлы</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="215"/>
         <source>Stages all changes of the selected files</source>
         <translation>Индексировать все изменения выбранных файлов</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="217"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="219"/>
         <source>Unstages all changes of the selected files</source>
         <translation>Отменить индексирование всех изменений выбранных файлов</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="224"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation>Показать различия выбранных записей в отдельном диалоге</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="227"/>
-        <source>Differences Side-By-Side</source>
-        <translation>Различия построчно</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="229"/>
+        <source>Differences Side-By-Side</source>
+        <translation>Различия построчно</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="231"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation>Показать различия выбранных записей построчно в отдельном диалоге</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
         <source>Reverts the changes of the selected files</source>
         <translation>Отменить изменения выбранных файлов</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
         <source>Forgets about the selected missing files</source>
         <translation>Забыть об отмеченных утерянных файлах</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="248"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="250"/>
         <source>Restores the selected missing files</source>
         <translation>Восстановить выбранные утерянные файлы</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257"/>
         <source>Edit the selected conflicting file</source>
         <translation>Редактировать выбранный конфликтующий файл</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="262"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="264"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation>Настроить ширину колонок по их содержимому</translation>
     </message>
@@ -24865,357 +24865,357 @@
 <context>
     <name>HelpBrowser</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="745"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="748"/>
         <source>&lt;b&gt;Help Window&lt;/b&gt;&lt;p&gt;This window displays the selected help information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Справочное окно&lt;/b&gt;&lt;p&gt;В этом окне отображается выбраннная справочная информация.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="931"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="934"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; не существует.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="976"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="979"/>
         <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно запустить просмотрщик для файла &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="956"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="959"/>
         <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно запустить приложение для URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1220"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1223"/>
         <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation>Открыть ссылку в новой вкладке\tCtrl+LBM</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1227"/>
-        <source>Save Lin&amp;k</source>
-        <translation>Сохранить &amp;ссылку</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1230"/>
+        <source>Save Lin&amp;k</source>
+        <translation>Сохранить &amp;ссылку</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1233"/>
         <source>Bookmark this Link</source>
         <translation>Сохранить ссылку</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1237"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
         <source>Copy Link to Clipboard</source>
         <translation>Копировать ссылку</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1258"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1261"/>
         <source>Open Image in New Tab</source>
         <translation>Открыть изображение в новой вкладке</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1265"/>
-        <source>Save Image</source>
-        <translation>Сохранить изображение</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1268"/>
+        <source>Save Image</source>
+        <translation>Сохранить изображение</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1271"/>
         <source>Copy Image to Clipboard</source>
         <translation>Копировать изображение</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1270"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1273"/>
         <source>Copy Image Location to Clipboard</source>
         <translation>Копировать адрес изображения</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1283"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1286"/>
         <source>Block Image</source>
         <translation>Заблокировать изображение</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1424"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
         <source>Bookmark this Page</source>
         <translation>Создать закладку для этой страницы</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1457"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1460"/>
         <source>Search with...</source>
         <translation>Искать с...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1511"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1514"/>
         <source>Add to web search toolbar</source>
         <translation>Добавить к панели инструментов Web поиска</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1518"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1521"/>
         <source>Web Inspector...</source>
         <translation>WEB проводник...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>Method not supported</source>
         <translation>Метод не поддерживается</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>{0} method is not supported.</source>
         <translation>{0} метод не поддерживается.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Search engine</source>
         <translation>Поисковая система</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Choose the desired search engine</source>
         <translation>Выберите нужную поисковую систему</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Engine name</source>
         <translation>Имя дыижка</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Enter a name for the engine</source>
         <translation>Введите имя поисковой системы</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2181"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2184"/>
         <source>Error loading page: {0}</source>
         <translation>Ошибка при загрузке страницы: {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2199"/>
-        <source>When connecting to: {0}.</source>
-        <translation>При соединении с: {0}.</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2202"/>
+        <source>When connecting to: {0}.</source>
+        <translation>При соединении с: {0}.</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2205"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation>Проверьте адрес на ошибки типа &lt;b&gt;ww&lt;/b&gt;.example.org вместо &lt;b&gt;www&lt;/b&gt;.example.org</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2210"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation>Если адрес правильный, проверьте сетевое соединение.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2214"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation>Если ваш компьютер или локальная сеть находятся за брандмауером или proxy, убедитесь что браузеру разрешено подсоединяться к сети.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2217"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2220"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation>Если режим кэша установлен в offline, то доступны только страницы из локального кзша.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>Web Database Quota</source>
         <translation>Квота Web базы данных</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>&lt;p&gt;The database quota of &lt;strong&gt;{0}&lt;/strong&gt; has been exceeded while accessing database &lt;strong&gt;{1}&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Shall it be changed?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Квота Web базы данных &lt;strong&gt;{0}&lt;/strong&gt; была превышена при доступе к базе &lt;strong&gt;{1}&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Изменить квоту?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>New Web Database Quota</source>
         <translation>Новая квота Web базы данных</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source>
         <translation>Введите новую квоту в MB (текущая = {0}, использовано = {1}; шаг изменения = 5 MB):</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2297"/>
-        <source>bytes</source>
-        <translation>байты</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2300"/>
-        <source>kB</source>
-        <translation>kB</translation>
+        <source>bytes</source>
+        <translation>байты</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2303"/>
+        <source>kB</source>
+        <translation>kB</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2306"/>
         <source>MB</source>
         <translation>MB</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1248"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1251"/>
         <source>Scan Link with VirusTotal</source>
         <translation>Сканировать ссылку посредством VirusTotal</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1291"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1294"/>
         <source>Scan Image with VirusTotal</source>
         <translation>Сканировать изображение посредством VirusTotal</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1243"/>
         <source>Send Link</source>
         <translation>Послать ссылку</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1276"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1279"/>
         <source>Send Image Link</source>
         <translation>Послать ссылку на изображение</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1384"/>
-        <source>This Frame</source>
-        <translation>Этот кадр</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1387"/>
-        <source>Show &amp;only this frame</source>
-        <translation>Показать &amp;только этот кадр</translation>
+        <source>This Frame</source>
+        <translation>Этот кадр</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1390"/>
+        <source>Show &amp;only this frame</source>
+        <translation>Показать &amp;только этот кадр</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1393"/>
         <source>Show in new &amp;tab</source>
         <translation>Показать в новой &amp;вкладке</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1397"/>
-        <source>&amp;Print</source>
-        <translation>&amp;Печать</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1400"/>
-        <source>Print Preview</source>
-        <translation>Предварительный просмотр печати</translation>
+        <source>&amp;Print</source>
+        <translation>&amp;Печать</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1403"/>
+        <source>Print Preview</source>
+        <translation>Предварительный просмотр печати</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1406"/>
         <source>Print as PDF</source>
         <translation>Печать как PDF</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1407"/>
-        <source>Zoom &amp;in</source>
-        <translation>У&amp;величить масштаб</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1410"/>
-        <source>Zoom &amp;reset</source>
-        <translation>&amp;Сбросить масштаб</translation>
+        <source>Zoom &amp;in</source>
+        <translation>У&amp;величить масштаб</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1413"/>
+        <source>Zoom &amp;reset</source>
+        <translation>&amp;Сбросить масштаб</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1416"/>
         <source>Zoom &amp;out</source>
         <translation>У&amp;меньшить масштаб</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1417"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1420"/>
         <source>Show frame so&amp;urce</source>
         <translation>Показать код ка&amp;дра</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1430"/>
         <source>Send Page Link</source>
         <translation>Отправить ссылку на страницу</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1448"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1451"/>
         <source>Send Text</source>
         <translation>Отправить текст</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1482"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1485"/>
         <source>Google Translate</source>
         <translation>Переводчик Гугл</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1491"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1494"/>
         <source>Dictionary</source>
         <translation>Словарь</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1501"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1504"/>
         <source>Go to web address</source>
         <translation>Перейти на веб адрес</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1434"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1437"/>
         <source>User Agent</source>
         <translation>Агент пользователя</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2222"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2225"/>
         <source>Try Again</source>
         <translation>Повторить еще раз</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1311"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1314"/>
         <source>Play</source>
         <translation>Воспроизведение</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1315"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1318"/>
         <source>Pause</source>
         <translation>Пауза</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1319"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1322"/>
         <source>Unmute</source>
         <translation>Включить звук</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1323"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1326"/>
         <source>Mute</source>
         <translation>Отключить звук</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1327"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1330"/>
         <source>Copy Media Address to Clipboard</source>
         <translation>Копировать адрес медиа файла в буфер обмена</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1333"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1336"/>
         <source>Send Media Address</source>
         <translation>Сохранить адрес медиа файла</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1339"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1342"/>
         <source>Save Media</source>
         <translation>Сохранить медиа файл</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>eric6 Web Browser</source>
         <translation>Eric6 Web браузер</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5. Please upgrade.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Печать невозможна из-за ошибки в PyQt5. Пожалуйста установите обновление.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2626"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2629"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5.Please upgrade.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Печать невозможна из-за ошибки в PyQt5. Пожалуйста установите обновление.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1200"/>
-        <source>Add New Page</source>
-        <translation>Добавить новую страницу</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1203"/>
+        <source>Add New Page</source>
+        <translation>Добавить новую страницу</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1206"/>
         <source>Configure Speed Dial</source>
         <translation>Конфигурация быстрых вкладок</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1210"/>
         <source>Reload All Dials</source>
         <translation>Перегрузить все быстрые вкладки</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1214"/>
         <source>Reset to Default Dials</source>
         <translation>Сброс к стандартным вкладкам</translation>
     </message>
@@ -26516,82 +26516,82 @@
 <context>
     <name>HelpWebPage</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="376"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="379"/>
         <source>Error loading page: {0}</source>
         <translation>Ошибка при загрузке страницы: {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="395"/>
-        <source>When connecting to: {0}.</source>
-        <translation>При соединении с: {0}.</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="398"/>
+        <source>When connecting to: {0}.</source>
+        <translation>При соединении с: {0}.</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="401"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation>Проверьте адрес на ошибки типа &lt;b&gt;ww&lt;/b&gt;.example.org вместо &lt;b&gt;www&lt;/b&gt;.example.org</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="403"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="406"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation>Если адрес правильный, проверьте сетевое соединение.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="408"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="411"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation>Если ваш компьютер или локальная сеть находятся за брандмауером или proxy, убедитесь что браузеру разрешено подсоединяться к сети.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="414"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="417"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation>Если режим кэша установлен в offline, то доступны только страницы из локального кзша.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>Resending POST request</source>
         <translation>Повторяю POST запрос</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>In order to display the site, the request along with all the data must be sent once again, which may lead to some unexpected behaviour of the site e.g. the same action might be performed once again. Do you want to continue anyway?</source>
         <translation>Для того чтобы показать страницу, необходимо повторить запрос, что может вызвать неожиданное поведение сервера, например, он может дважды сделать одно и то же действие. Продолжить не смотря на это?</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="419"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="422"/>
         <source>Try Again</source>
         <translation>Повторить еще раз</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="351"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="354"/>
         <source>Content blocked by AdBlock Plus</source>
         <translation>Содержание заблокировано AdBlock Plus</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="352"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="355"/>
         <source>Blocked by rule: &lt;i&gt;{0}&lt;/i&gt;</source>
         <translation>Заблокировано правилом: &lt;i&gt;{0}&lt;i&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="309"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="312"/>
         <source>Select files to upload...</source>
         <translation>Выбор файла для скачивания...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>SSL Info</source>
         <translation>Информация SSL</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>This site does not contain SSL information.</source>
         <translation>Этот сайт не содержит SSL информации.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Protocol Error</source>
         <translation>Протокол ошибок</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Open external application for {0}-link?
 URL: {1}</source>
         <translation>Открыть внешнее приложение для {0}-link? URL:{1}</translation>
@@ -42253,27 +42253,27 @@
 <context>
     <name>JavaScriptEricObject</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="114"/>
         <source>Search!</source>
         <translation>Искать!</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="150"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="153"/>
         <source>Search results provided by {0}</source>
         <translation>Результаты поиска, предоставляемые ({0})</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="108"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
         <source>Welcome to eric6 Web Browser!</source>
         <translation>Добро пожаловать в Eric6 Web браузер!</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="110"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="113"/>
         <source>eric6 Web Browser</source>
         <translation>Eric6 Web браузер</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="112"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="115"/>
         <source>About eric6</source>
         <translation>Об Eric6</translation>
     </message>
@@ -45190,12 +45190,12 @@
         <translation>&lt;b&gt;Сохранить копию&lt;/b&gt;&lt;p&gt;Сохранение контента текущего окна редактора. Имя файла может быть введено в диалоге выбора файла.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <source>EditorConfig Properties</source>
         <translation>Свойства EditorConfig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Не удается загрузить свойства EditorConfig для файла &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -50066,22 +50066,22 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="484"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="499"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Предварительный просмотр не доступен для этого типа файла.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="653"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="668"/>
         <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;Для предварительного просмотра ReStructuredText файлов необходим пакет &lt;b&gt;python-docutils&lt;/b&gt; package.&lt;br/&gt;Установите его с помощью менеджера пакетов, &apos;pip install docutils&apos; или ознакомьтесь со страницей &lt;a href=&quot;http://pypi.python.org/pypi/docutils&quot;&gt;.&lt;/a&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="597"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="612"/>
         <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;Для предварительного просмотра ReStructuredText файлов необходим пакет &lt;b&gt;sphinx&lt;/b&gt; package.&lt;br/&gt;Установите его с помощью менеджера пакетов,&apos;pip install Sphinx&apos; или ознакомьтесь со срраницей &lt;a href=&quot;http://pypi.python.org/pypi/Sphinx&quot;&gt;.&lt;/a&gt;&lt;/p&gt;&lt;p&gt;В качестве альтернативы можете запретить использование Sphinx во вкладке Редактор, страница Настройка режима работы с файлами.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="681"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="696"/>
         <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;Для предварительного просмотра Markdown файлов необходим пакет &lt;b&gt;python-markdown&lt;/b&gt;.&lt;br/&gt;Установите его с помощью команды &apos;pip install docutils&apos; вашего менеджера пакетов или ознакомьтесь с инструкцией &lt;a href=&quot;http://pythonhosted.org/Markdown/install.html&quot;&gt;.&lt;/a&gt;&lt;/p&gt;</translation>
     </message>
@@ -50089,40 +50089,45 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="88"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation>Разрешить JavaScript для предварительного просмотра HTML файлов</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="76"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="87"/>
         <source>Enable JavaScript</source>
         <translation>Использовать JavaScript</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="83"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="94"/>
         <source>Select to enable support for Server Side Includes</source>
         <translation>Разрешить поддержку Server Side Includes</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="81"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="92"/>
         <source>Enable Server Side Includes</source>
         <translation>Разрешить Server Side Includes</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="190"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="205"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Предварительный просмотр не доступен для этого типа файла.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="252"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="267"/>
         <source>Preview - {0}</source>
         <translation>Предварительный просмотр - {0}</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="254"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="269"/>
         <source>Preview</source>
         <translation>Предварительный просмотр</translation>
     </message>
+    <message>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="70"/>
+        <source>&lt;b&gt;HTML Preview is not available!&lt;br/&gt;Install QtWebEngine or QtWebKit.&lt;/b&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PreviewerQSS</name>
@@ -52261,7 +52266,7 @@
         <translation>Компилирую формы...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="905"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="943"/>
         <source>Abort</source>
         <translation>Прервать</translation>
     </message>
@@ -53087,7 +53092,7 @@
         <translation>Компилиляция ресурсов...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="777"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="850"/>
         <source>Abort</source>
         <translation>Прервать</translation>
     </message>
@@ -62025,280 +62030,280 @@
 <context>
     <name>ShellWindow</name>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Quit</source>
         <translation>Выход</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>&amp;Quit</source>
         <translation>&amp;Выход</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="201"/>
         <source>Quit the Shell</source>
         <translation>Выход из оболочки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="197"/>
+        <location filename="../QScintilla/ShellWindow.py" line="202"/>
         <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Выход из оболочки&lt;/b&gt;&lt;p&gt;Это действие позволяет выйти из окна оболочки.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New Window</source>
         <translation>Новое окно</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New &amp;Window</source>
         <translation>&amp;Новое окно</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="211"/>
+        <location filename="../QScintilla/ShellWindow.py" line="216"/>
         <source>Open a new Shell window</source>
         <translation>Открыть новое окно оболочки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="213"/>
+        <location filename="../QScintilla/ShellWindow.py" line="218"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Новое окно&lt;/b&gt;&lt;p&gt;Открытие нового экземпляра окна оболочки.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="220"/>
-        <source>Restart</source>
-        <translation>Перезапуск</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="225"/>
+        <source>Restart</source>
+        <translation>Перезапуск</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="230"/>
         <source>Restart the shell</source>
         <translation>Перезапуск оболочки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="227"/>
+        <location filename="../QScintilla/ShellWindow.py" line="232"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Перезапуск&lt;/b&gt;&lt;p&gt;Перезапуск оболочки для текущего выбранного языка.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="234"/>
-        <source>Restart and Clear</source>
-        <translation>Перезапустить и очистить</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="239"/>
+        <source>Restart and Clear</source>
+        <translation>Перезапустить и очистить</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="244"/>
         <source>Clear the window and restart the shell</source>
         <translation>Очистить окно и перезапустить оболочку</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="241"/>
+        <location filename="../QScintilla/ShellWindow.py" line="246"/>
         <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Перезапустить и очистить&lt;/b&gt;&lt;p&gt;Очистка окна оболочки и перезапуск оболочки для выбранного языка.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>Show History</source>
         <translation>Показать историю</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>&amp;Show History...</source>
         <translation>&amp;Показать историю...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="882"/>
+        <location filename="../QScintilla/ShellWindow.py" line="887"/>
         <source>Show the shell history in a dialog</source>
         <translation>Отображение истории оболочки в диалоговом окне</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>Clear History</source>
         <translation>Очистить историю</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>&amp;Clear History...</source>
         <translation>&amp;Очистить историю...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="892"/>
+        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Clear the shell history</source>
         <translation>Очистить историю оболочки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
+        <location filename="../QScintilla/ShellWindow.py" line="901"/>
         <source>Select History Entry</source>
         <translation>Выбрать запись в истории</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
-        <source>Select History &amp;Entry</source>
-        <translation>Выбрать &amp;запись в истории</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
+        <source>Select History &amp;Entry</source>
+        <translation>Выбрать &amp;запись в истории</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="906"/>
         <source>Select an entry of the shell history</source>
         <translation>Выбор записи в истории оболочки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>About</source>
         <translation>О программе</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>&amp;About</source>
         <translation>&amp;О программе</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="913"/>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
         <source>Display information about this software</source>
         <translation>Информация об этой  программе</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="915"/>
+        <location filename="../QScintilla/ShellWindow.py" line="920"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;О программе&lt;/b&gt;&lt;p&gt;Информация об этом программном продукте.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About Qt</source>
         <translation>О Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About &amp;Qt</source>
         <translation>О &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="925"/>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Информация о наборе инструментов Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="927"/>
+        <location filename="../QScintilla/ShellWindow.py" line="932"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;О Qt&lt;/b&gt;&lt;p&gt;Отображение информация об инструментарии Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>What&apos;s This?</source>
         <translation>Что это?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Что это?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
+        <location filename="../QScintilla/ShellWindow.py" line="945"/>
         <source>Context sensitive help</source>
         <translation>Контекстнозависимая справка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="941"/>
+        <location filename="../QScintilla/ShellWindow.py" line="946"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Показ контекстнозависимой справки&lt;/b&gt; &lt;p&gt;В режиме &quot;What&apos;s This?&quot;(Что это?)курсор мыши отображается как стрелка со знаком вопроса, и вы можете, кликнув по элементу интерфейса, получить краткое описание того, что он делает и как его использовать. В диалоговом окне эта функция может быть вызвана кнопкой контекстной справки в панели заголовка.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>About eric6 Shell Window</source>
         <translation>Об окне оболочки eric6</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation>Оболочка eric6 - автономное окно оболочки. Оно использует тот же бэкэнд что и отладчик полной IDE, но только исполняется независимо.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1105"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1110"/>
         <source>&amp;File</source>
         <translation>&amp;Файл</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1114"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1119"/>
         <source>&amp;Edit</source>
         <translation>&amp;Правка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1125"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1130"/>
         <source>&amp;View</source>
         <translation>&amp;Вид</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1132"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
         <source>Histor&amp;y</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1139"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1144"/>
         <source>&amp;Start</source>
         <translation>&amp;Начать</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1145"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1150"/>
         <source>&amp;Help</source>
         <translation>&amp;Справка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1180"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1185"/>
         <source>File</source>
         <translation>Файл</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1189"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1194"/>
         <source>Edit</source>
         <translation>Редактировать</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
         <source>Find</source>
         <translation>Найти</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1202"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1207"/>
         <source>View</source>
         <translation>Вид</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1209"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1214"/>
         <source>History</source>
         <translation>История</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1215"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1220"/>
         <source>Help</source>
         <translation>Справка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1241"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation>&lt;p&gt;В этой части строки состояния разрешено масштабирование оболочки.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="570"/>
+        <location filename="../QScintilla/ShellWindow.py" line="575"/>
         <source>Move forward one history entry</source>
         <translation>Переместить запись в истории вперед</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="580"/>
+        <location filename="../QScintilla/ShellWindow.py" line="585"/>
         <source>Move back one history entry</source>
         <translation>Переместить запись в истории назад</translation>
     </message>
@@ -73250,12 +73255,12 @@
         <translation>Показать версию</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="523"/>
+        <location filename="../Tools/TrayStarter.py" line="526"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Номера версий&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="550"/>
+        <location filename="../Tools/TrayStarter.py" line="553"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
@@ -73841,7 +73846,7 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>Unittest</source>
         <translation>Unittest</translation>
     </message>
@@ -74030,57 +74035,57 @@
         <translation>^Ошибка: </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="205"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="207"/>
         <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source>
         <translation>Файлы Python3 ({1});;Python2 файлы ({0});;Все файлы (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="209"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="211"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>Файлы Python (*.py);;Все файлы (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="269"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="271"/>
         <source>You must enter a test suite file.</source>
         <translation>Необходимо ввести имя файла с пакетом тестов.</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="277"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="279"/>
         <source>Preparing Testsuite</source>
         <translation>Подготовка пакета тестов</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;{1}&lt;br&gt;{2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно запустить тест &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="475"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="477"/>
         <source>Running</source>
         <translation>Выполяется</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="499"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="501"/>
         <source>Ran {0} test in {1:.3f}s</source>
         <translation>Тест {0} пройден за {1:.3f} секунд</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="503"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="505"/>
         <source>Ran {0} tests in {1:.3f}s</source>
         <translation>{0} Тестов пройдено за {1:.3f} секунд</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="520"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="522"/>
         <source>Failure: {0}</source>
         <translation>Неудача: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="535"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="537"/>
         <source>Error: {0}</source>
         <translation>Ошибка: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="640"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="642"/>
         <source>Show Source</source>
         <translation>Показ исходников</translation>
     </message>
@@ -74115,17 +74120,17 @@
         <translation>Количество неожиданных успехов в тестах</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="550"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="552"/>
         <source>    Skipped: {0}</source>
         <translation>    Пропущено: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="565"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="567"/>
         <source>    Expected Failure</source>
         <translation>    Ожидаемая неудача</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="579"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="581"/>
         <source>    Unexpected Success</source>
         <translation>    Неожиданный успех</translation>
     </message>
@@ -74717,7 +74722,7 @@
         <translation>Показать версии, доступные для загрузки</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <source>Report Bug</source>
         <translation>Сообщение об ошибке</translation>
     </message>
@@ -74819,7 +74824,7 @@
         <translation>&lt;b&gt;Сценарий Unittest&lt;/b&gt;&lt;p&gt;Выполнить Uniitest с текущим сценарием.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <source>Unittest Project</source>
         <translation>Unittest на проекте</translation>
     </message>
@@ -75107,7 +75112,7 @@
         <translation>&lt;b&gt;Горячие клавиши&lt;/b&gt;&lt;p&gt;Задайте горячие клавиши на свой вкус.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5846"/>
+        <location filename="../UI/UserInterface.py" line="5849"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Экспортировать горячие клавиши</translation>
     </message>
@@ -75128,7 +75133,7 @@
 &lt;p&gt;Экспортировать горячие клавиши приложения.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Импортировать горячие клавиши</translation>
     </message>
@@ -75375,7 +75380,7 @@
         <translation>Настройки</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <source>Help</source>
         <translation>Справка</translation>
     </message>
@@ -75425,271 +75430,271 @@
         <translation>Внешние инструменты/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3259"/>
+        <location filename="../UI/UserInterface.py" line="3262"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Номера версий&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6826"/>
+        <location filename="../UI/UserInterface.py" line="6829"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
         <translation>Почтовый адрес или адрес почтового сервера пуст. &lt;p&gt;Настройте параметры вашей электронной почты в диалоге предпочтений.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>Restart application</source>
         <translation>Перезапустить приложение</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>The application needs to be restarted. Do it now?</source>
         <translation>Необходимо перезапустить приложение. Сделать это сейчас?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3673"/>
+        <location filename="../UI/UserInterface.py" line="3676"/>
         <source>Configure Tool Groups ...</source>
         <translation>Настройка группы инструментов...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3677"/>
+        <location filename="../UI/UserInterface.py" line="3680"/>
         <source>Configure current Tool Group ...</source>
         <translation>Настроить текущую группу инструментов...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3628"/>
+        <location filename="../UI/UserInterface.py" line="3631"/>
         <source>&amp;Builtin Tools</source>
         <translation>&amp;Встроенные инструменты</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3645"/>
+        <location filename="../UI/UserInterface.py" line="3648"/>
         <source>&amp;Plugin Tools</source>
         <translation>Инструменты - &amp;плагины</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3793"/>
+        <location filename="../UI/UserInterface.py" line="3796"/>
         <source>&amp;Show all</source>
         <translation>Показать &amp;всё</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3795"/>
+        <location filename="../UI/UserInterface.py" line="3798"/>
         <source>&amp;Hide all</source>
         <translation>Ск&amp;рыть всё</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>Для текущего проекта не определён главный сценарий. Отмена</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt 3 support</source>
         <translation>Поддержка Qt 3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <source>Problem</source>
         <translation>Проблема</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <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="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <source>Process Generation Error</source>
         <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4548"/>
+        <location filename="../UI/UserInterface.py" line="4551"/>
         <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно запустить Qt-Designer.&lt;br&gt;Убедитесь, что он доступен в &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4615"/>
+        <location filename="../UI/UserInterface.py" line="4618"/>
         <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно запустить Qt-Linguist.&lt;br&gt;Убедитесь, что он доступен в &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4666"/>
+        <location filename="../UI/UserInterface.py" line="4669"/>
         <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно запустить Qt-Assistant.&lt;br&gt;Убедитесь, что он доступен в &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <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="4708"/>
+        <location filename="../UI/UserInterface.py" line="4711"/>
         <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="4728"/>
+        <location filename="../UI/UserInterface.py" line="4731"/>
         <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="4776"/>
+        <location filename="../UI/UserInterface.py" line="4779"/>
         <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно запустить UI Previewer (предпросмотр интерфейсов).&lt;br&gt;Убедитесь, что он находится в &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4831"/>
+        <location filename="../UI/UserInterface.py" line="4834"/>
         <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно запустить Translation Previewer (предпросмотр переводов).&lt;br&gt;Убедитесь, что он находится в &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4852"/>
+        <location filename="../UI/UserInterface.py" line="4855"/>
         <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="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>External Tools</source>
         <translation>Внешние инструменты</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4945"/>
+        <location filename="../UI/UserInterface.py" line="4948"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation>Запись для внешнего инструмента &apos;{0}&apos; не найдена в группе инструментов &apos;{1}&apos;.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation>Запись для группы инструментов &apos;{0}&apos; не найдена.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4993"/>
+        <location filename="../UI/UserInterface.py" line="4996"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Запускается процесс &apos;{0} {1}&apos;.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно запустить инструмент &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Убедитесь, что он доступен в &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5085"/>
+        <location filename="../UI/UserInterface.py" line="5088"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>Процесс &apos;{0}&apos; завершен.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <source>Documentation Missing</source>
         <translation>Документация отсутствует</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <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;Стартовый каталог документации &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; не найден.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>Documentation</source>
         <translation>Документация</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5303"/>
+        <location filename="../UI/UserInterface.py" line="5306"/>
         <source>&lt;p&gt;The PyQt4 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Стартовый каталог документации PyQt4 не найден.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation>Файл горячих клавиш (*.e4k)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>Save tasks</source>
         <translation>Сохранить задачи</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно сохранить файл с задачами: &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <source>Read tasks</source>
         <translation>Прочитать задачи</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <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="6165"/>
+        <location filename="../UI/UserInterface.py" line="6168"/>
         <source>Save session</source>
         <translation>Сохранить сессию</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6102"/>
+        <location filename="../UI/UserInterface.py" line="6105"/>
         <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="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <source>Read session</source>
         <translation>Загрузить сессию</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <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="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <source>Drop Error</source>
         <translation>Ошибка Drag&amp;&amp;Drop</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <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="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>&amp;Cancel</source>
         <translation>От&amp;мена</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6610"/>
+        <location filename="../UI/UserInterface.py" line="6613"/>
         <source>Trying host {0}</source>
         <translation>Подключение к хосту {0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>Update available</source>
         <translation>Обновления доступны</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Error during updates check</source>
         <translation>Ошибка при проверке обновлений</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Could not perform updates check.</source>
         <translation>Невозможно запустить проверку обновлений.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6812"/>
+        <location filename="../UI/UserInterface.py" line="6815"/>
         <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="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>First time usage</source>
         <translation>Первое использование</translation>
     </message>
@@ -75729,27 +75734,27 @@
         <translation>&lt;b&gt;Документация Python 2&lt;/b&gt;&lt;p&gt;Показать Python 2 документацию. Если местонахождение документации не было настроено, то искать в директории &lt;i&gt;doc&lt;/i&gt; каталога где находится исполняемый файл Python 2 под Windows и в директории &lt;i&gt;/usr/share/doc/packages/python/html/python-docs-html&lt;/i&gt; под UNIX. Местонахождение документации можно задать с помощью переменной окружения PYTHON2DOCDIR.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <source>Error getting versions information</source>
         <translation>Ошибка при получении информации о версии</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6667"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <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="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Open Browser</source>
         <translation>Открыть браузер</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Could not start a web browser</source>
         <translation>Невозможно запустить web браузер</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation>Невозможно загрузить информацию о версии в течении последних 7 дней. Пожалуйста попробуйте ещё раз.</translation>
     </message>
@@ -75835,12 +75840,12 @@
         <translation>&lt;b&gt;Снимок&lt;/b&gt;&lt;p&gt;Сделать снимок области экрана.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4922"/>
+        <location filename="../UI/UserInterface.py" line="4925"/>
         <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="6882"/>
+        <location filename="../UI/UserInterface.py" line="6885"/>
         <source>Select Workspace Directory</source>
         <translation>Выбор директории рабочей области</translation>
     </message>
@@ -76215,7 +76220,7 @@
         <translation>Открыть документацию PyQt5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5369"/>
+        <location filename="../UI/UserInterface.py" line="5372"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Стартовый каталог документации PyQt5 не задан.&lt;/p&gt;</translation>
     </message>
@@ -76225,7 +76230,7 @@
         <translation>&lt;b&gt;Документация Python 3&lt;/b&gt;&lt;p&gt;Показать Python 3 документацию. Если местонахождение документации не было настроено, то искать в директории &lt;i&gt;doc&lt;/i&gt; каталога где находится исполняемый файл Python 3 под Windows и в директории &lt;i&gt;/usr/share/doc/packages/python/html/python-docs-html&lt;/i&gt; под UNIX. Местонахождение документации можно задать с помощью переменной окружения PYTHON3DOCDIR.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>%v/%m</source>
         <translation>%v/%m</translation>
     </message>
@@ -76245,7 +76250,7 @@
         <translation>&lt;b&gt;Показать журнал ошибок...&lt;/b&gt;&lt;p&gt;Показать журнал ошибок.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6605"/>
+        <location filename="../UI/UserInterface.py" line="6608"/>
         <source>Version Check</source>
         <translation>Проверка версии</translation>
     </message>
@@ -76315,27 +76320,27 @@
         <translation>&lt;b&gt;Документация Eric API&lt;/b&gt;&lt;p&gt;Показать документацию Eric API. Местонахождение документации - каталог Documentation/Source, расположенный в директории инсталляции Eric6.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt v.3 is not supported by eric6.</source>
         <translation>Eric6 не поддерживает Qt3.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation>На сайте &lt;b&gt;{1}&lt;/b&gt; доступно обновление Eric6 до версии &lt;b&gt;{0}&lt;/b&gt;. Загрузить?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>Eric6 is up to date</source>
         <translation>Eric6 не требует обновлений</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>You are using the latest version of eric6</source>
         <translation>Вы используете самую последнюю версию eric6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
         <translation>Настройка  Eric6 ещё не выполнена. Сейчас будет запущен диалог конфигурации.</translation>
     </message>
@@ -76345,17 +76350,17 @@
         <translation>Генерация панели инструментов...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3648"/>
+        <location filename="../UI/UserInterface.py" line="3651"/>
         <source>&amp;User Tools</source>
         <translation>&amp;Инструменты пользователя</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3720"/>
+        <location filename="../UI/UserInterface.py" line="3723"/>
         <source>No User Tools Configured</source>
         <translation>Инструменты пользователя не сконфигурированы</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6621"/>
+        <location filename="../UI/UserInterface.py" line="6624"/>
         <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
         <translation>Невозможно загрузить информацию о версии потому что вы &lt;b&gt;не в сети&lt;/b&gt;. Пожалуйста, подключитесь к интернету и повторите попытку.</translation>
     </message>
@@ -76400,7 +76405,7 @@
         <translation>&lt;b&gt;Сохранить сессию...&lt;/b&gt;&lt;p&gt;Позволяет сохранить текущую сессию на диск. Открывается диалог для выбора имени файла.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>Load session</source>
         <translation>Загрузить сессию</translation>
     </message>
@@ -76415,17 +76420,17 @@
         <translation>&lt;b&gt;Загрузить сессию...&lt;/b&gt;&lt;p&gt;Позволяет загрузить сессию, ранее сохраненную на диске. Открывается диалог для выбора имени файла.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation>Файлы сессии eric6 (*.e5s)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>Crash Session found!</source>
         <translation>Обнаружена crash-сессия!</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation>Найден файл crashed-сессии. Восстановить эту сессию?</translation>
     </message>
@@ -76440,18 +76445,18 @@
         <translation>Инициализация плагинов...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <source>Update Check</source>
         <translation>Проверка обновлений</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
         <translation>Вы установили eric непосредственно из исходного кода.
 Нет возможности проверить наличие обновления.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6746"/>
+        <location filename="../UI/UserInterface.py" line="6749"/>
         <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
         <translation>Вы используете промежуточный релиз eric6. Возможно на сайте доступна и более свежий стабильный релиз.</translation>
     </message>
@@ -76506,7 +76511,7 @@
         <translation>&lt;b&gt;Документация PySide2&lt;/b&gt;&lt;p&gt;Отображение документации PySide2.  В зависимости от ваших настроек это может быть отображение справки либо во встроенных средствах просмотра справки  Eric-вьюере/web-браузере, либо в Qt Assistant, либо во внешнем web-браузере. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Просмотр документации PySide{0} не настроен.&lt;/p&gt;</translation>
     </message>
@@ -81061,12 +81066,12 @@
         <translation>Задайте для виртуального окружения интерпретатор Python&apos;а</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="55"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="58"/>
         <source>Virtualenv Target Directory</source>
         <translation>Целевая директория Virtualenv</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="60"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="63"/>
         <source>Python Interpreter</source>
         <translation>Интерпретатор Python</translation>
     </message>
@@ -81528,52 +81533,52 @@
 <context>
     <name>VirtualenvManager</name>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>Add Virtual Environment</source>
         <translation>Добавить виртуальное окружение</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
         <translation>Виртуальное окружение с именем &lt;b&gt;{0}&lt;/b&gt; уже существует.Заменить его?</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="173"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="185"/>
         <source>Change Virtual Environment</source>
         <translation>Изменить виртуальное окружение</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
         <translation>Виртуальное окружение с именем &lt;b&gt;{0}&lt;/b&gt; не существует. Прерывание!</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>Rename Virtual Environment</source>
         <translation>Переименовать виртуальное окружение</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="270"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="304"/>
         <source>{0} - {1}</source>
         <translation>{0} - {1}</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Delete Virtual Environments</source>
         <translation>Удалить виртуальные окружения</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Do you really want to delete these virtual environments?</source>
         <translation>Вы действительно хотите удалить эти виртуальные окружения?</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Remove Virtual Environments</source>
         <translation>Убрать виртуальные окружения из списка</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Do you really want to remove these virtual environments?</source>
         <translation>Вы действительно хотите убрать эти виртуальные окружения из списка?</translation>
     </message>
@@ -86119,12 +86124,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="388"/>
+        <location filename="../eric6.py" line="391"/>
         <source>Starting...</source>
         <translation>Запуск...</translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="393"/>
+        <location filename="../eric6.py" line="396"/>
         <source>Generating Main Window...</source>
         <translation>Создание главного окна...</translation>
     </message>
--- a/i18n/eric6_tr.ts	Tue Jun 26 18:39:14 2018 +0200
+++ b/i18n/eric6_tr.ts	Tue Jun 26 18:50:04 2018 +0200
@@ -1524,37 +1524,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="130"/>
+        <location filename="../Utilities/BackgroundService.py" line="132"/>
         <source>{0} not configured.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <source>Restart background client?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="212"/>
+        <location filename="../Utilities/BackgroundService.py" line="214"/>
         <source>An error in Erics background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="423"/>
+        <location filename="../Utilities/BackgroundService.py" line="427"/>
         <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="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <source>Background client disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <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="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <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>
@@ -3086,44 +3086,44 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="281"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="285"/>
         <source>Main Menu</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="291"/>
-        <source>Rich Text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/CodeDocumentationViewer.py" line="296"/>
+        <source>Rich Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/CodeDocumentationViewer.py" line="304"/>
         <source>Plain Text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="471"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="480"/>
         <source>No documentation available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="498"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="507"/>
         <source>Definition: {0}{1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="501"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="510"/>
         <source>Definition: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="548"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="557"/>
         <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="553"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="562"/>
         <source>This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3145,13 +3145,13 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="509"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="518"/>
         <source>Type: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="517"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="526"/>
         <source>Note: {0}
 </source>
         <translation type="unfinished"></translation>
@@ -4578,92 +4578,92 @@
 <context>
     <name>ConfigurationWidget</name>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="136"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="143"/>
         <source>Application</source>
         <translation>Uygulama</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="139"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="146"/>
         <source>Cooperation</source>
         <translation>İşbirliği</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="142"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="149"/>
         <source>CORBA</source>
         <translation>CORBA</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="148"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="155"/>
         <source>Email</source>
         <translation>E-posta</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="151"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="158"/>
         <source>Graphics</source>
         <translation>Grafik</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="157"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="164"/>
         <source>Icons</source>
         <translation>İconlar</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="447"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="454"/>
         <source>Network</source>
         <translation>Ağ</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="176"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
         <source>Plugin Manager</source>
         <translation>Eklenti Yöneticisi</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="450"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
         <source>Printer</source>
         <translation>Yazıcı</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="186"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="193"/>
         <source>Python</source>
         <translation>Python</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="189"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="196"/>
         <source>Qt</source>
         <translation>Qt</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="195"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="202"/>
         <source>Shell</source>
         <translation>Kabuk</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="198"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="205"/>
         <source>Tasks</source>
         <translation>Görevler</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="201"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="208"/>
         <source>Templates</source>
         <translation>Şablonlar</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="207"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="214"/>
         <source>Version Control Systems</source>
         <translation>Sürüm Kontrol Sistemi</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="212"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="219"/>
         <source>Debugger</source>
         <translation>Hata Ayıklayıcı</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="248"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
         <source>General</source>
         <translation>Genel</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="221"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
         <source>Python3</source>
         <translation>Python3</translation>
     </message>
@@ -4673,239 +4673,239 @@
         <translation type="obsolete">Ruby</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="232"/>
         <source>Editor</source>
         <translation>Düzenleyici</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="235"/>
         <source>APIs</source>
         <translation>API&apos;ler</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="231"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="238"/>
         <source>Autocompletion</source>
         <translation>Otomatik tamamlama</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="242"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="249"/>
         <source>QScintilla</source>
         <translation>QScintilla</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="239"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="246"/>
         <source>Calltips</source>
         <translation>İpuçları</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="251"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="258"/>
         <source>Filehandling</source>
         <translation>Dosyaişleme</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
-        <source>Searching</source>
-        <translation>Arıyor</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="478"/>
-        <source>Spell checking</source>
-        <translation>Yazım Kontrolü</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="262"/>
+        <source>Searching</source>
+        <translation>Arıyor</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="485"/>
+        <source>Spell checking</source>
+        <translation>Yazım Kontrolü</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="269"/>
         <source>Style</source>
         <translation>Stil</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="268"/>
-        <source>Typing</source>
-        <translation>Yazıyor</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="271"/>
-        <source>Exporters</source>
-        <translation>Dışaaktarım</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="275"/>
+        <source>Typing</source>
+        <translation>Yazıyor</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="278"/>
+        <source>Exporters</source>
+        <translation>Dışaaktarım</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="282"/>
         <source>Highlighters</source>
         <translation>Metin Vurgulayıcı</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="279"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="286"/>
         <source>Filetype Associations</source>
         <translation>Dosyatipi Birleştirme</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="283"/>
-        <source>Styles</source>
-        <translation>Stiller</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="287"/>
-        <source>Keywords</source>
-        <translation>Anahtar Sözcükler</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="290"/>
+        <source>Styles</source>
+        <translation>Stiller</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="294"/>
+        <source>Keywords</source>
+        <translation>Anahtar Sözcükler</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="297"/>
         <source>Properties</source>
         <translation>Özellikler</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="299"/>
-        <source>Help</source>
-        <translation>Yardım</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="462"/>
-        <source>Appearance</source>
-        <translation>Görünüm</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
-        <source>Help Documentation</source>
-        <translation>Yardım Belgeleri</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="306"/>
+        <source>Help</source>
+        <translation>Yardım</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <source>Appearance</source>
+        <translation>Görünüm</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="464"/>
+        <source>Help Documentation</source>
+        <translation>Yardım Belgeleri</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="313"/>
         <source>Help Viewers</source>
         <translation>Yardım Göstericiler</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="317"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="324"/>
         <source>Project</source>
         <translation>Proje</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="314"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="321"/>
         <source>Project Viewer</source>
         <translation>Proje Görüntüleyici</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="320"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="327"/>
         <source>Multiproject</source>
         <translation>Çokluproje</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="444"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="451"/>
         <source>Interface</source>
         <translation>Arayüz</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="331"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="338"/>
         <source>Viewmanager</source>
         <translation>Görünüm Yönetcisi</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="646"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
         <source>Preferences</source>
         <translation>Seçenekler</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="651"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="658"/>
         <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="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <source>Configuration Page Error</source>
         <translation>Ayarlama Sayfası Hatası</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <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>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="494"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="501"/>
         <source>Tray Starter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="473"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="480"/>
         <source>VirusTotal Interface</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="453"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="460"/>
         <source>Security</source>
         <translation type="unfinished">Güvenlik</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="172"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="179"/>
         <source>Notifications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="160"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="167"/>
         <source>IRC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="265"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="272"/>
         <source>Code Checkers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="465"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="472"/>
         <source>eric6 Web Browser</source>
         <translation type="unfinished">Eric5 Web Gözatıcısı {6 ?}</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="163"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="170"/>
         <source>Log-Viewer</source>
         <translation type="unfinished">Kayıt-Gösterici</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="166"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="173"/>
         <source>Mimetypes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="591"/>
         <source>Enter search text...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="294"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="301"/>
         <source>Mouse Click Handlers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="476"/>
         <source>Flash Cookie Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="507"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="514"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="364"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="371"/>
         <source>Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="145"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="152"/>
         <source>Diff</source>
         <translation type="unfinished">Diff</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="245"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="252"/>
         <source>Documentation Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="190"/>
         <source>Protobuf</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="218"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
         <source>Python2</source>
         <translation type="unfinished">Python2</translation>
     </message>
@@ -5661,13 +5661,13 @@
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1603"/>
         <source>Passive debug connection received
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1613"/>
+        <location filename="../Debugger/DebugServer.py" line="1617"/>
         <source>Passive debug connection closed
 </source>
         <translation type="unfinished"></translation>
@@ -20100,12 +20100,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
         <source>Commit ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
         <source>Author</source>
         <translation type="unfinished">Yazar</translation>
     </message>
@@ -20115,7 +20115,7 @@
         <translation type="unfinished">Tarih</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
         <source>Committer</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20125,7 +20125,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="106"/>
         <source>Subject</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20200,7 +20200,7 @@
         <translation type="unfinished">den Kopyala</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2119"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2121"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20260,328 +20260,328 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="92"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="98"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="100"/>
         <source>Find</source>
         <translation type="unfinished">Bul</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
         <source>Filter</source>
         <translation type="unfinished">Süzgeç</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>File</source>
         <translation type="unfinished">Dosya</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="124"/>
         <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="134"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="136"/>
         <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="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="139"/>
         <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="140"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="142"/>
         <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="143"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="145"/>
         <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="146"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="148"/>
         <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="198"/>
-        <source>Added</source>
-        <translation type="unfinished">Eklendi</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="199"/>
-        <source>Deleted</source>
-        <translation type="unfinished">Silindi</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="200"/>
-        <source>Modified</source>
-        <translation type="unfinished">Değiştirildi</translation>
+        <source>Added</source>
+        <translation type="unfinished">Eklendi</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="201"/>
-        <source>Copied</source>
-        <translation type="unfinished"></translation>
+        <source>Deleted</source>
+        <translation type="unfinished">Silindi</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="202"/>
-        <source>Renamed</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="203"/>
-        <source>Type changed</source>
+        <source>Copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Unmerged</source>
+        <source>Renamed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
+        <source>Type changed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
+        <source>Unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
         <source>Unknown</source>
         <translation type="unfinished">Bilinmeyen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="241"/>
-        <source>Show Commit ID Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="243"/>
+        <source>Show Commit ID Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="245"/>
         <source>Press to show the commit ID column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
-        <source>Show Author Columns</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="253"/>
+        <source>Show Author Columns</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="255"/>
         <source>Press to show the author columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
-        <source>Show Committer Columns</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="263"/>
+        <source>Show Committer Columns</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="265"/>
         <source>Press to show the committer columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
-        <source>Show Branches Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="273"/>
+        <source>Show Branches Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="275"/>
         <source>Press to show the branches column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
-        <source>Show Tags Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="283"/>
+        <source>Show Tags Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="285"/>
         <source>Press to show the Tags column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="313"/>
-        <source>Copy Commits</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <source>Copy Commits</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
         <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="320"/>
-        <source>Tag</source>
-        <translation type="unfinished">Etiket</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <source>Tag</source>
+        <translation type="unfinished">Etiket</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
         <source>Tag the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1812"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1814"/>
         <source>Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="326"/>
-        <source>Create a new branch at the selected commit.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
-        <source>Branch &amp;&amp; Switch</source>
+        <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"/>
+        <source>Branch &amp;&amp; Switch</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
         <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="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>Switch</source>
         <translation type="unfinished">Değiştirmek</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
         <source>Switch the working directory to the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Show Short Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="342"/>
+        <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="345"/>
-        <source>Describe</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Describe</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
         <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="648"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="650"/>
         <source>The git process did not finish within 30s.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="651"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="653"/>
         <source>Could not start the git executable.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="654"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="656"/>
         <source>Git Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="771"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <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="1275"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1277"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1287"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1289"/>
         <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="1725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1727"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <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="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Select a branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Select a default branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Branch &amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <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="2133"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2135"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2148"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
         <source>Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2174"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2176"/>
         <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="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <source>Save Diff</source>
         <translation type="unfinished">Farklılıkları Kaydet</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2303"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2305"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">Patch Dosyaları (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2320"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2322"/>
         <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="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <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>
@@ -23697,7 +23697,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="395"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="397"/>
         <source>Git Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23723,7 +23723,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>Commit</source>
         <translation type="unfinished">Teslimat</translation>
     </message>
@@ -23798,322 +23798,322 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="65"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
         <source>Refresh</source>
         <translation type="unfinished">Tazele</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="69"/>
         <source>Press to refresh the status display</source>
         <translation type="unfinished">Durum göstergesini yenilemek için bas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="107"/>
         <source>Stage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="111"/>
         <source>Revert Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="115"/>
         <source>Stage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="119"/>
         <source>Revert Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="123"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="125"/>
         <source>Unstage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="127"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="129"/>
         <source>Unstage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
-        <source>added</source>
-        <translation type="unfinished">eklendi</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
-        <source>copied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
-        <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="172"/>
-        <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="173"/>
-        <source>renamed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="175"/>
-        <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="174"/>
-        <source>unmerged</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <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="175"/>
+        <source>renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="177"/>
+        <source>not tracked</source>
+        <translation type="unfinished">izlenmedi</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="176"/>
+        <source>unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmodified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="178"/>
         <source>ignored</source>
         <translation type="unfinished">yoksayıldı</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="199"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="198"/>
-        <source>Amend</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="200"/>
-        <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="202"/>
-        <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="204"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
         <source>Unselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <source>Add</source>
         <translation type="unfinished">Ekle</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="212"/>
         <source>Add the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="211"/>
-        <source>Stage changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="213"/>
-        <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="215"/>
-        <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="217"/>
+        <source>Unstage changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="219"/>
         <source>Unstages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="224"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226"/>
         <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="227"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="229"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="231"/>
         <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="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>Revert</source>
         <translation type="unfinished">Başa Dönme</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="242"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
-        <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="246"/>
-        <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="248"/>
+        <source>Restore missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="250"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
-        <source>Edit file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
+        <source>Edit file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257"/>
         <source>Edit the selected conflicting file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="260"/>
-        <source>Adjust column sizes</source>
-        <translation type="unfinished">Sütün boyutunu ayarla</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="262"/>
+        <source>Adjust column sizes</source>
+        <translation type="unfinished">Sütün boyutunu ayarla</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="264"/>
         <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="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <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="596"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="598"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>Stage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>There are no stageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>Unstage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
         <source>Forget Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <source>Restore Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="891"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="893"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="870"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872"/>
         <source>Staging Area to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="892"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <source>Working Tree to HEAD Commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Side-by-Side Difference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Select the compare method.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1201"/>
-        <source>Revert selected lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1203"/>
+        <source>Revert selected lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1205"/>
         <source>Revert hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1206"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25314,357 +25314,357 @@
 <context>
     <name>HelpBrowser</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="745"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="748"/>
         <source>&lt;b&gt;Help Window&lt;/b&gt;&lt;p&gt;This window displays the selected help information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Yardım Penceresi&lt;/b&gt;&lt;p&gt;Bu pencere seçilen yardım bilgilerini gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="931"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="934"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası yok.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="976"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="979"/>
         <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;dosyası için görüntüleyici çalışmıyor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="956"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="959"/>
         <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt; URL &lt;b&gt;{0}&lt;/b&gt;adresindeki uygulama başlatılamıyor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1220"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1223"/>
         <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation>Yeni sekmede bir bağlantı açar<byte value="x9"/>Ctrl+LMB</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1227"/>
-        <source>Save Lin&amp;k</source>
-        <translation>Bağlantıyı &amp;Kaydet</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1230"/>
+        <source>Save Lin&amp;k</source>
+        <translation>Bağlantıyı &amp;Kaydet</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1233"/>
         <source>Bookmark this Link</source>
         <translation>Bu linki yerimine ekle</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1237"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
         <source>Copy Link to Clipboard</source>
         <translation>Bağlantıyı Panoya Kopyala</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1258"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1261"/>
         <source>Open Image in New Tab</source>
         <translation>Görüntüyü yeni sekmede aç</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1265"/>
-        <source>Save Image</source>
-        <translation>Görüntüyü Kaydet</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1268"/>
+        <source>Save Image</source>
+        <translation>Görüntüyü Kaydet</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1271"/>
         <source>Copy Image to Clipboard</source>
         <translation>Görüntüyü Panoya kopyala</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1270"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1273"/>
         <source>Copy Image Location to Clipboard</source>
         <translation>Görüntünün Yerini  Panoya kopyala</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1283"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1286"/>
         <source>Block Image</source>
         <translation>Görüntüleri Engelle</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1424"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
         <source>Bookmark this Page</source>
         <translation>Bu sayfayı yerimine ekle</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1457"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1460"/>
         <source>Search with...</source>
         <translation>Bununla Ara...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1518"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1521"/>
         <source>Web Inspector...</source>
         <translation>Web Denetleyicisi...</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2181"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2184"/>
         <source>Error loading page: {0}</source>
         <translation>Sayfa yüklenirken hata: {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2199"/>
-        <source>When connecting to: {0}.</source>
-        <translation>Bağlantı:{0}.</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2202"/>
+        <source>When connecting to: {0}.</source>
+        <translation>Bağlantı:{0}.</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2205"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation>Adresi kontrol ediniz Örneğin &lt;b&gt;www&lt;/b&gt;.example.org yerine &lt;b&gt;ww&lt;/b&gt;.example.org yazmış olabilirsiniz</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2210"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation>Eğer adres doğru ise, ağ bağlantınızı kontrol ediniz.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2214"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation>Eğer bilgisayarınız veya ağınız bir güvenlik duvarı yada proxy ile korunuyorsa, gözatıcınıza ağa giriş izni veriniz.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1511"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1514"/>
         <source>Add to web search toolbar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>Method not supported</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
         <source>{0} method is not supported.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Search engine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
         <source>Choose the desired search engine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Engine name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
         <source>Enter a name for the engine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2217"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2220"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>Web Database Quota</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
         <source>&lt;p&gt;The database quota of &lt;strong&gt;{0}&lt;/strong&gt; has been exceeded while accessing database &lt;strong&gt;{1}&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Shall it be changed?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>New Web Database Quota</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
         <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2297"/>
-        <source>bytes</source>
-        <translation>bitler</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2300"/>
-        <source>kB</source>
-        <translation>kB</translation>
+        <source>bytes</source>
+        <translation>bitler</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="2303"/>
+        <source>kB</source>
+        <translation>kB</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2306"/>
         <source>MB</source>
         <translation>MB</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1248"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1251"/>
         <source>Scan Link with VirusTotal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1291"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1294"/>
         <source>Scan Image with VirusTotal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1243"/>
         <source>Send Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1276"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1279"/>
         <source>Send Image Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1384"/>
-        <source>This Frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1387"/>
-        <source>Show &amp;only this frame</source>
+        <source>This Frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1390"/>
+        <source>Show &amp;only this frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1393"/>
         <source>Show in new &amp;tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1397"/>
-        <source>&amp;Print</source>
-        <translation type="unfinished">&amp;Yazdır</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1400"/>
-        <source>Print Preview</source>
-        <translation type="unfinished">Baskı Öngörünümü</translation>
+        <source>&amp;Print</source>
+        <translation type="unfinished">&amp;Yazdır</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1403"/>
+        <source>Print Preview</source>
+        <translation type="unfinished">Baskı Öngörünümü</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1406"/>
         <source>Print as PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1407"/>
-        <source>Zoom &amp;in</source>
-        <translation type="unfinished">Bü&amp;yült</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1410"/>
-        <source>Zoom &amp;reset</source>
-        <translation type="unfinished">Büyütmeyi sıfı&amp;rla</translation>
+        <source>Zoom &amp;in</source>
+        <translation type="unfinished">Bü&amp;yült</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1413"/>
+        <source>Zoom &amp;reset</source>
+        <translation type="unfinished">Büyütmeyi sıfı&amp;rla</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1416"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished">Küçü&amp;lt</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1417"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1420"/>
         <source>Show frame so&amp;urce</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1430"/>
         <source>Send Page Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1448"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1451"/>
         <source>Send Text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1482"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1485"/>
         <source>Google Translate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1491"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1494"/>
         <source>Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1501"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1504"/>
         <source>Go to web address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1434"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1437"/>
         <source>User Agent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2222"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2225"/>
         <source>Try Again</source>
         <translation type="unfinished">Tekrar Dene</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1311"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1314"/>
         <source>Play</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1315"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1318"/>
         <source>Pause</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1319"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1322"/>
         <source>Unmute</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1323"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1326"/>
         <source>Mute</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1327"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1330"/>
         <source>Copy Media Address to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1333"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1336"/>
         <source>Send Media Address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1339"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1342"/>
         <source>Save Media</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>eric6 Web Browser</source>
         <translation type="unfinished">Eric5 Web Gözatıcısı {6 ?}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5. Please upgrade.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2626"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2629"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5.Please upgrade.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;PyQt4 te hatyı yazdırmak tam olarak mümkün değil. Lütfen güncelleyiniz.&lt;/p&gt; {5.?}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1200"/>
-        <source>Add New Page</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1203"/>
+        <source>Add New Page</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1206"/>
         <source>Configure Speed Dial</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1210"/>
         <source>Reload All Dials</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1214"/>
         <source>Reset to Default Dials</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27037,82 +27037,82 @@
 <context>
     <name>HelpWebPage</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="376"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="379"/>
         <source>Error loading page: {0}</source>
         <translation>Sayfa yüklenirken hata: {0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="395"/>
-        <source>When connecting to: {0}.</source>
-        <translation>Bağlantı:{0}.</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="398"/>
+        <source>When connecting to: {0}.</source>
+        <translation>Bağlantı:{0}.</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="401"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation>Adresi kontrol ediniz Örneğin &lt;b&gt;www&lt;/b&gt;.example.org yerine &lt;b&gt;ww&lt;/b&gt;.example.org yazmış olabilirsiniz</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="403"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="406"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation>Eğer adres doğru ise, ağ bağlantınızı kontrol ediniz.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="408"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="411"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation>Eğer bilgisayarınız veya ağınız bir güvenlik duvarı yada proxy ile korunuyorsa, gözatıcınıza ağa giriş izni veriniz.</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>Resending POST request</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>In order to display the site, the request along with all the data must be sent once again, which may lead to some unexpected behaviour of the site e.g. the same action might be performed once again. Do you want to continue anyway?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="414"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="417"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="419"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="422"/>
         <source>Try Again</source>
         <translation type="unfinished">Tekrar Dene</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="351"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="354"/>
         <source>Content blocked by AdBlock Plus</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="352"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="355"/>
         <source>Blocked by rule: &lt;i&gt;{0}&lt;/i&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="309"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="312"/>
         <source>Select files to upload...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>SSL Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>This site does not contain SSL information.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Protocol Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Open external application for {0}-link?
 URL: {1}</source>
         <translation type="unfinished"></translation>
@@ -42982,27 +42982,27 @@
 <context>
     <name>JavaScriptEricObject</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="114"/>
         <source>Search!</source>
         <translation>Ara!</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="150"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="153"/>
         <source>Search results provided by {0}</source>
         <translation>Arama souçları {0} tarafından sağlanıyor</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="108"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
         <source>Welcome to eric6 Web Browser!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="110"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="113"/>
         <source>eric6 Web Browser</source>
         <translation type="unfinished">Eric5 Web Gözatıcısı {6 ?}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="112"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="115"/>
         <source>About eric6</source>
         <translation type="unfinished"></translation>
     </message>
@@ -45920,12 +45920,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <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>
@@ -50842,22 +50842,22 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="484"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="499"/>
         <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="653"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="668"/>
         <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="597"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="612"/>
         <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="681"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="696"/>
         <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>
@@ -50865,40 +50865,45 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="88"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="76"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="87"/>
         <source>Enable JavaScript</source>
         <translation type="unfinished">Javabetiğini etkinleştir</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="83"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="94"/>
         <source>Select to enable support for 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="92"/>
         <source>Enable Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="190"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="205"/>
         <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="252"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="267"/>
         <source>Preview - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="254"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="269"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="70"/>
+        <source>&lt;b&gt;HTML Preview is not available!&lt;br/&gt;Install QtWebEngine or QtWebKit.&lt;/b&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PreviewerQSS</name>
@@ -53028,7 +53033,7 @@
         <translation>Formlar derleniyor...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="905"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="943"/>
         <source>Abort</source>
         <translation>Vazgeç</translation>
     </message>
@@ -53853,7 +53858,7 @@
         <translation>Kaynaklar derleniyor...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="777"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="850"/>
         <source>Abort</source>
         <translation>Vazgeç</translation>
     </message>
@@ -62610,275 +62615,275 @@
 <context>
     <name>ShellWindow</name>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Quit</source>
         <translation type="unfinished">Çık</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">&amp;Çıkış</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished">Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="201"/>
         <source>Quit the Shell</source>
         <translation type="unfinished">IDE den Çık</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="197"/>
+        <location filename="../QScintilla/ShellWindow.py" line="202"/>
         <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New Window</source>
         <translation type="unfinished">Yeni Pencere</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New &amp;Window</source>
         <translation type="unfinished">Yeni &amp;Pencere</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="211"/>
+        <location filename="../QScintilla/ShellWindow.py" line="216"/>
         <source>Open a new Shell window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="213"/>
+        <location filename="../QScintilla/ShellWindow.py" line="218"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="220"/>
-        <source>Restart</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="225"/>
+        <source>Restart</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="230"/>
         <source>Restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="227"/>
+        <location filename="../QScintilla/ShellWindow.py" line="232"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="234"/>
-        <source>Restart and Clear</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="239"/>
+        <source>Restart and Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="244"/>
         <source>Clear the window and restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="241"/>
+        <location filename="../QScintilla/ShellWindow.py" line="246"/>
         <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>Show History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>&amp;Show History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="882"/>
+        <location filename="../QScintilla/ShellWindow.py" line="887"/>
         <source>Show the shell history in a dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>Clear History</source>
         <translation type="unfinished">Geçmişi Sil</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>&amp;Clear History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="892"/>
+        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Clear the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
+        <location filename="../QScintilla/ShellWindow.py" line="901"/>
         <source>Select History Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
-        <source>Select History &amp;Entry</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
+        <source>Select History &amp;Entry</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="906"/>
         <source>Select an entry of the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>About</source>
         <translation type="unfinished">Hakkında</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>&amp;About</source>
         <translation type="unfinished">H&amp;akkında</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="913"/>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
         <source>Display information about this software</source>
         <translation type="unfinished">Bu yazılım hakkında bilgi göster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="915"/>
+        <location filename="../QScintilla/ShellWindow.py" line="920"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Hakkında&lt;/b&gt;&lt;p&gt;Bu yazılım hakkındaki çeşitli bilgileri gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About Qt</source>
         <translation type="unfinished">Qt Hakkında</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished">&amp;Qt Hakkında</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="925"/>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished">Qt araçkiti hakkında bilgi göster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="927"/>
+        <location filename="../QScintilla/ShellWindow.py" line="932"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Qt Hakkında&lt;/b&gt;&lt;p&gt;Qt Araçkiti hakkında bazı bilgiler gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished">Bu nedir?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished">Bu &amp;Nedir?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
+        <location filename="../QScintilla/ShellWindow.py" line="945"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">Duyarlı yardım</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="941"/>
+        <location filename="../QScintilla/ShellWindow.py" line="946"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Duyarlı yardım içeriğini görüntüle&lt;/b&gt;&lt;p&gt;Bu Nedir? modunda, Fare imleci soru işeretiyle beraber bir ok şeklindedir ve bir arayüz elemanı üzerinde tıklarsanız bu elemanın nasıl kullanılacağı ve hakkında kısa bilgi verir. bu özellik diyaloglarda başlık çubuğu üzerindeyken çıkarılan açılır menülerde de bulunmaktadır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>About eric6 Shell Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1105"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1110"/>
         <source>&amp;File</source>
         <translation type="unfinished">&amp;Dosya</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1114"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1119"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">Düz&amp;en</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1125"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1130"/>
         <source>&amp;View</source>
         <translation type="unfinished">&amp;Görünüm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1132"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
         <source>Histor&amp;y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1139"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1144"/>
         <source>&amp;Start</source>
         <translation type="unfinished">Ba&amp;şlat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1145"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1150"/>
         <source>&amp;Help</source>
         <translation type="unfinished">&amp;Yardım</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1180"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1185"/>
         <source>File</source>
         <translation type="unfinished">Dosya</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1189"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1194"/>
         <source>Edit</source>
         <translation type="unfinished">Düzen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
         <source>Find</source>
         <translation type="unfinished">Bul</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1202"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1207"/>
         <source>View</source>
         <translation type="unfinished">Görünüm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1209"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1214"/>
         <source>History</source>
         <translation type="unfinished">Geçmiş</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1215"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1220"/>
         <source>Help</source>
         <translation type="unfinished">Yardım</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1241"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="570"/>
+        <location filename="../QScintilla/ShellWindow.py" line="575"/>
         <source>Move forward one history entry</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62888,7 +62893,7 @@
         <translation type="obsolete">Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="580"/>
+        <location filename="../QScintilla/ShellWindow.py" line="585"/>
         <source>Move back one history entry</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74004,12 +74009,12 @@
         <translation type="unfinished">Sürümü Göster</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="523"/>
+        <location filename="../Tools/TrayStarter.py" line="526"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation type="unfinished">&lt;h3&gt;Sürüm Numaraları&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="550"/>
+        <location filename="../Tools/TrayStarter.py" line="553"/>
         <source>&lt;/table&gt;</source>
         <translation type="unfinished">&lt;/table&gt;</translation>
     </message>
@@ -74595,7 +74600,7 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>Unittest</source>
         <translation>Birimtest</translation>
     </message>
@@ -74781,57 +74786,57 @@
         <translation>^Hata: </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="205"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="207"/>
         <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source>
         <translation>Python3 Dosyaları ({1});;Python2 Dosyaları ({0});; Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="209"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="211"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>Python Dosyaları (*.py);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="269"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="271"/>
         <source>You must enter a test suite file.</source>
         <translation>Testyönteminin dosyasını girmelisiniz.</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="277"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="279"/>
         <source>Preparing Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;{1}&lt;br&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="475"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="477"/>
         <source>Running</source>
         <translation>Çalışıyor</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="499"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="501"/>
         <source>Ran {0} test in {1:.3f}s</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="503"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="505"/>
         <source>Ran {0} tests in {1:.3f}s</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="520"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="522"/>
         <source>Failure: {0}</source>
         <translation>Başarısızlık:{0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="535"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="537"/>
         <source>Error: {0}</source>
         <translation>Hata: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="640"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="642"/>
         <source>Show Source</source>
         <translation>Kaynağı Göster</translation>
     </message>
@@ -74866,17 +74871,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="550"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="552"/>
         <source>    Skipped: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="565"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="567"/>
         <source>    Expected Failure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="579"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="581"/>
         <source>    Unexpected Success</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75444,7 +75449,7 @@
         <translation>İndirmek için mümkün olan sürümü göster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <source>Report Bug</source>
         <translation>Hata Raporu</translation>
     </message>
@@ -75544,7 +75549,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <source>Unittest Project</source>
         <translation>Proje Birimtesti</translation>
     </message>
@@ -75829,7 +75834,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5846"/>
+        <location filename="../UI/UserInterface.py" line="5849"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Kılavye Kısa Yollarını Dışa Aktar</translation>
     </message>
@@ -75849,7 +75854,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Klavye kısayollarını İçe Aktar</translation>
     </message>
@@ -76099,7 +76104,7 @@
         <translation>Ayarlar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <source>Help</source>
         <translation>Yardım</translation>
     </message>
@@ -76149,264 +76154,264 @@
         <translation>Harici Araçlar/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3259"/>
+        <location filename="../UI/UserInterface.py" line="3262"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Sürüm Numaraları&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6826"/>
+        <location filename="../UI/UserInterface.py" line="6829"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <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="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>Restart application</source>
         <translation>Uygulmayı yeniden başlat</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <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="3673"/>
+        <location filename="../UI/UserInterface.py" line="3676"/>
         <source>Configure Tool Groups ...</source>
         <translation>Alet Grupları Ayarlanıyor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3677"/>
+        <location filename="../UI/UserInterface.py" line="3680"/>
         <source>Configure current Tool Group ...</source>
         <translation>Geçerli alet grubunu ayarla...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3628"/>
+        <location filename="../UI/UserInterface.py" line="3631"/>
         <source>&amp;Builtin Tools</source>
         <translation>Ya&amp;pılandırma Araçları</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3645"/>
+        <location filename="../UI/UserInterface.py" line="3648"/>
         <source>&amp;Plugin Tools</source>
         <translation>Eklen&amp;ti Araçları</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3793"/>
+        <location filename="../UI/UserInterface.py" line="3796"/>
         <source>&amp;Show all</source>
         <translation>Hepsini Gö&amp;ster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3795"/>
+        <location filename="../UI/UserInterface.py" line="3798"/>
         <source>&amp;Hide all</source>
         <translation>&amp;Hepsini gizle</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <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="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt 3 support</source>
         <translation>Qt3 Desteği</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <source>Problem</source>
         <translation>Problem</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <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="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4548"/>
+        <location filename="../UI/UserInterface.py" line="4551"/>
         <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="4615"/>
+        <location filename="../UI/UserInterface.py" line="4618"/>
         <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="4666"/>
+        <location filename="../UI/UserInterface.py" line="4669"/>
         <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="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <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="4708"/>
+        <location filename="../UI/UserInterface.py" line="4711"/>
         <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="4728"/>
+        <location filename="../UI/UserInterface.py" line="4731"/>
         <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="4776"/>
+        <location filename="../UI/UserInterface.py" line="4779"/>
         <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="4831"/>
+        <location filename="../UI/UserInterface.py" line="4834"/>
         <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="4852"/>
+        <location filename="../UI/UserInterface.py" line="4855"/>
         <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="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>External Tools</source>
         <translation>Harici Araçlar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4945"/>
+        <location filename="../UI/UserInterface.py" line="4948"/>
         <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="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4993"/>
+        <location filename="../UI/UserInterface.py" line="4996"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <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="5085"/>
+        <location filename="../UI/UserInterface.py" line="5088"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <source>Documentation Missing</source>
         <translation>Eksik Belgeleme</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <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="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>Documentation</source>
         <translation>Belgeleme</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5303"/>
+        <location filename="../UI/UserInterface.py" line="5306"/>
         <source>&lt;p&gt;The PyQt4 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;PyQt4 Belgelerinin başlama noktası ayarlanmamış.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>Save tasks</source>
         <translation>Görevleri kaydet</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <source>Read tasks</source>
         <translation>Görevler Okunuyor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <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="6165"/>
+        <location filename="../UI/UserInterface.py" line="6168"/>
         <source>Save session</source>
         <translation>Oturumu kaydet</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6102"/>
+        <location filename="../UI/UserInterface.py" line="6105"/>
         <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="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <source>Read session</source>
         <translation>Oturumu oku</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <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="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <source>Drop Error</source>
         <translation>Düşme hatası</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <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="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Vazgeç</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6610"/>
+        <location filename="../UI/UserInterface.py" line="6613"/>
         <source>Trying host {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>Update available</source>
         <translation>Güncelleme mümkün değil</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Error during updates check</source>
         <translation>Güncellemeleri kontrol esnasında hata</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Could not perform updates check.</source>
         <translation>Güncellemelere ulaşamıyorum.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6812"/>
+        <location filename="../UI/UserInterface.py" line="6815"/>
         <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="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>First time usage</source>
         <translation>İlk kullanım</translation>
     </message>
@@ -76466,32 +76471,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6667"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <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="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <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>
@@ -76577,12 +76582,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4922"/>
+        <location filename="../UI/UserInterface.py" line="4925"/>
         <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="6882"/>
+        <location filename="../UI/UserInterface.py" line="6885"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76957,7 +76962,7 @@
         <translation type="unfinished">PyQt4 Begelerini aç {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5369"/>
+        <location filename="../UI/UserInterface.py" line="5372"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;PyQt4 Belgelerinin başlama noktası ayarlanmamış.&lt;/p&gt; {5 ?}</translation>
     </message>
@@ -76967,7 +76972,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76987,7 +76992,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6605"/>
+        <location filename="../UI/UserInterface.py" line="6608"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77057,27 +77062,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt v.3 is not supported by eric6.</source>
         <translation type="unfinished">Qt v.3 eric5 tarafından desteklenmiyor. {3 ?} {6.?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>Eric6 is up to date</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>You are using the latest version of eric6</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
         <translation type="unfinished">Eric5 henüz ayarlanmadı. Ayarlar Diyaloğu başlatılıyor. {6 ?}</translation>
     </message>
@@ -77087,17 +77092,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3648"/>
+        <location filename="../UI/UserInterface.py" line="3651"/>
         <source>&amp;User Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3720"/>
+        <location filename="../UI/UserInterface.py" line="3723"/>
         <source>No User Tools Configured</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6621"/>
+        <location filename="../UI/UserInterface.py" line="6624"/>
         <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77142,7 +77147,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>Load session</source>
         <translation type="unfinished">Oturum yükleniyor</translation>
     </message>
@@ -77157,17 +77162,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77182,17 +77187,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <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="6746"/>
+        <location filename="../UI/UserInterface.py" line="6749"/>
         <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77247,7 +77252,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81772,12 +81777,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="55"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="58"/>
         <source>Virtualenv Target Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="60"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="63"/>
         <source>Python Interpreter</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82216,52 +82221,52 @@
 <context>
     <name>VirtualenvManager</name>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>Add Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="173"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="185"/>
         <source>Change Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>Rename Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="270"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="304"/>
         <source>{0} - {1}</source>
         <translation type="unfinished">{0} - {1}</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Delete Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Do you really want to delete these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Remove Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Do you really want to remove these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86816,12 +86821,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="388"/>
+        <location filename="../eric6.py" line="391"/>
         <source>Starting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="393"/>
+        <location filename="../eric6.py" line="396"/>
         <source>Generating Main Window...</source>
         <translation type="unfinished">Anapencere üretiliyor...</translation>
     </message>
--- a/i18n/eric6_zh_CN.ts	Tue Jun 26 18:39:14 2018 +0200
+++ b/i18n/eric6_zh_CN.ts	Tue Jun 26 18:50:04 2018 +0200
@@ -1529,27 +1529,27 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="130"/>
+        <location filename="../Utilities/BackgroundService.py" line="132"/>
         <source>{0} not configured.</source>
         <translation>{0} 未被配置。</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <source>Restart background client?</source>
         <translation>重启后台客户端?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="212"/>
+        <location filename="../Utilities/BackgroundService.py" line="214"/>
         <source>An error in Erics background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="423"/>
+        <location filename="../Utilities/BackgroundService.py" line="427"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation type="unfinished">Erics 后台客户端因未知原因断开连接。</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <source>Background client disconnected.</source>
         <translation>后台客户端已断开连接。</translation>
     </message>
@@ -1559,12 +1559,12 @@
         <translation type="obsolete">&lt;b&gt;{0}&lt;/b&gt; 的后台客户端因为一个未知的原因断开了链接。&lt;br&gt;是否应当重新启动它?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="186"/>
+        <location filename="../Utilities/BackgroundService.py" line="188"/>
         <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="429"/>
+        <location filename="../Utilities/BackgroundService.py" line="433"/>
         <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>
@@ -3094,44 +3094,44 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="281"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="285"/>
         <source>Main Menu</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="291"/>
-        <source>Rich Text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/CodeDocumentationViewer.py" line="296"/>
+        <source>Rich Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/CodeDocumentationViewer.py" line="304"/>
         <source>Plain Text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="471"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="480"/>
         <source>No documentation available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="498"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="507"/>
         <source>Definition: {0}{1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="501"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="510"/>
         <source>Definition: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="548"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="557"/>
         <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="553"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="562"/>
         <source>This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3153,13 +3153,13 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="509"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="518"/>
         <source>Type: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="517"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="526"/>
         <source>Note: {0}
 </source>
         <translation type="unfinished"></translation>
@@ -4580,82 +4580,82 @@
 <context>
     <name>ConfigurationWidget</name>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="136"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="143"/>
         <source>Application</source>
         <translation>应用程序</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="142"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="149"/>
         <source>CORBA</source>
         <translation>CORBA</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="148"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="155"/>
         <source>Email</source>
         <translation>电子邮件</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="151"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="158"/>
         <source>Graphics</source>
         <translation>图形</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="157"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="164"/>
         <source>Icons</source>
         <translation>图标</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="447"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="454"/>
         <source>Network</source>
         <translation>网络</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="176"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
         <source>Plugin Manager</source>
         <translation>插件管理器</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="450"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
         <source>Printer</source>
         <translation>打印机</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="186"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="193"/>
         <source>Python</source>
         <translation>Python</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="189"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="196"/>
         <source>Qt</source>
         <translation>Qt</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="195"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="202"/>
         <source>Shell</source>
         <translation>命令行</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="198"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="205"/>
         <source>Tasks</source>
         <translation>任务</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="201"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="208"/>
         <source>Templates</source>
         <translation>模板</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="207"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="214"/>
         <source>Version Control Systems</source>
         <translation>版本控制系统</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="212"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="219"/>
         <source>Debugger</source>
         <translation>调试器</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="248"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
         <source>General</source>
         <translation>通用配置</translation>
     </message>
@@ -4665,248 +4665,248 @@
         <translation type="obsolete">Ruby</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="232"/>
         <source>Editor</source>
         <translation>编辑器</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="235"/>
         <source>APIs</source>
         <translation>API</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="231"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="238"/>
         <source>Autocompletion</source>
         <translation>自动完成</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="242"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="249"/>
         <source>QScintilla</source>
         <translation>QScintilla</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="239"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="246"/>
         <source>Calltips</source>
         <translation>调用提示</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="251"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="258"/>
         <source>Filehandling</source>
         <translation>文件处理</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="255"/>
-        <source>Searching</source>
-        <translation>查找</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="478"/>
-        <source>Spell checking</source>
-        <translation>拼写检查</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="262"/>
+        <source>Searching</source>
+        <translation>查找</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="485"/>
+        <source>Spell checking</source>
+        <translation>拼写检查</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="269"/>
         <source>Style</source>
         <translation>风格</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="268"/>
-        <source>Typing</source>
-        <translation>键盘输入</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="271"/>
-        <source>Exporters</source>
-        <translation>输出器</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="275"/>
+        <source>Typing</source>
+        <translation>键盘输入</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="278"/>
+        <source>Exporters</source>
+        <translation>输出器</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="282"/>
         <source>Highlighters</source>
         <translation>高亮功能</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="279"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="286"/>
         <source>Filetype Associations</source>
         <translation>文件类型关联</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="283"/>
-        <source>Styles</source>
-        <translation>风格</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="290"/>
+        <source>Styles</source>
+        <translation>风格</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="297"/>
         <source>Properties</source>
         <translation>属性</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="299"/>
-        <source>Help</source>
-        <translation>帮助</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="457"/>
-        <source>Help Documentation</source>
-        <translation>帮助文档</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="306"/>
+        <source>Help</source>
+        <translation>帮助</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="464"/>
+        <source>Help Documentation</source>
+        <translation>帮助文档</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="313"/>
         <source>Help Viewers</source>
         <translation>帮助浏览器</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="317"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="324"/>
         <source>Project</source>
         <translation>项目</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="314"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="321"/>
         <source>Project Viewer</source>
         <translation>项目浏览器</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="320"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="327"/>
         <source>Multiproject</source>
         <translation>多重项目</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="444"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="451"/>
         <source>Interface</source>
         <translation>界面</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="331"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="338"/>
         <source>Viewmanager</source>
         <translation>视图管理器</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="462"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
         <source>Appearance</source>
         <translation>外观</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="646"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
         <source>Preferences</source>
         <translation>首选项</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="651"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="658"/>
         <source>Please select an entry of the list 
 to display the configuration page.</source>
         <translation>请在左边选择一个列表项以显示配置页面。</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <source>Configuration Page Error</source>
         <translation>配置页面错误</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="221"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="228"/>
         <source>Python3</source>
         <translation>Python3</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="724"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="731"/>
         <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>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="287"/>
-        <source>Keywords</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="139"/>
-        <source>Cooperation</source>
-        <translation>协作</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="494"/>
-        <source>Tray Starter</source>
-        <translation>托盘启动器</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="473"/>
-        <source>VirusTotal Interface</source>
-        <translation>VirusTotal 界面</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="453"/>
-        <source>Security</source>
-        <translation>安全</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="172"/>
-        <source>Notifications</source>
-        <translation>通知</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="160"/>
-        <source>IRC</source>
-        <translation>IRC</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="265"/>
-        <source>Code Checkers</source>
-        <translation>代码检查器</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="465"/>
-        <source>eric6 Web Browser</source>
-        <translation>eric6 网页浏览器</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="163"/>
-        <source>Log-Viewer</source>
-        <translation>日志浏览器</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="166"/>
-        <source>Mimetypes</source>
-        <translation>MIME 类型</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
-        <source>Enter search text...</source>
-        <translation>输入搜索内容…</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationDialog.py" line="294"/>
+        <source>Keywords</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="146"/>
+        <source>Cooperation</source>
+        <translation>协作</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="501"/>
+        <source>Tray Starter</source>
+        <translation>托盘启动器</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="480"/>
+        <source>VirusTotal Interface</source>
+        <translation>VirusTotal 界面</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="460"/>
+        <source>Security</source>
+        <translation>安全</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="179"/>
+        <source>Notifications</source>
+        <translation>通知</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="167"/>
+        <source>IRC</source>
+        <translation>IRC</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="272"/>
+        <source>Code Checkers</source>
+        <translation>代码检查器</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="472"/>
+        <source>eric6 Web Browser</source>
+        <translation>eric6 网页浏览器</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="170"/>
+        <source>Log-Viewer</source>
+        <translation>日志浏览器</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="173"/>
+        <source>Mimetypes</source>
+        <translation>MIME 类型</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="591"/>
+        <source>Enter search text...</source>
+        <translation>输入搜索内容…</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationDialog.py" line="301"/>
         <source>Mouse Click Handlers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="469"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="476"/>
         <source>Flash Cookie Manager</source>
         <translation>Flash Cookie 管理器</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="507"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="514"/>
         <source>Hex Editor</source>
         <translation type="unfinished">十六进制编辑器</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="364"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="371"/>
         <source>Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="145"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="152"/>
         <source>Diff</source>
         <translation type="unfinished">差异</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="245"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="252"/>
         <source>Documentation Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="183"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="190"/>
         <source>Protobuf</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="218"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="225"/>
         <source>Python2</source>
         <translation type="unfinished">Python2</translation>
     </message>
@@ -5662,13 +5662,13 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1603"/>
         <source>Passive debug connection received
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1613"/>
+        <location filename="../Debugger/DebugServer.py" line="1617"/>
         <source>Passive debug connection closed
 </source>
         <translation type="unfinished"></translation>
@@ -20112,12 +20112,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
         <source>Commit ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
         <source>Author</source>
         <translation type="unfinished">作者</translation>
     </message>
@@ -20127,7 +20127,7 @@
         <translation type="unfinished">数据</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
         <source>Committer</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20137,7 +20137,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="106"/>
         <source>Subject</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20212,7 +20212,7 @@
         <translation type="unfinished">复制自</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2119"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2121"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20272,328 +20272,328 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="92"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="98"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="100"/>
         <source>Find</source>
         <translation type="unfinished">查找</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="101"/>
         <source>Filter</source>
         <translation type="unfinished">过滤器</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>File</source>
         <translation type="unfinished">文件</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="124"/>
         <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="134"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="136"/>
         <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="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="139"/>
         <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="140"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="142"/>
         <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="143"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="145"/>
         <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="146"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="148"/>
         <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="198"/>
-        <source>Added</source>
-        <translation type="unfinished">已添加</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="199"/>
-        <source>Deleted</source>
-        <translation type="unfinished">已删除</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="200"/>
-        <source>Modified</source>
-        <translation type="unfinished">已修改</translation>
+        <source>Added</source>
+        <translation type="unfinished">已添加</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="201"/>
-        <source>Copied</source>
-        <translation type="unfinished"></translation>
+        <source>Deleted</source>
+        <translation type="unfinished">已删除</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="202"/>
-        <source>Renamed</source>
-        <translation type="unfinished"></translation>
+        <source>Modified</source>
+        <translation type="unfinished">已修改</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Type changed</source>
+        <source>Copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Unmerged</source>
+        <source>Renamed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
+        <source>Type changed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
+        <source>Unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
         <source>Unknown</source>
         <translation type="unfinished">未知</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="241"/>
-        <source>Show Commit ID Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="243"/>
+        <source>Show Commit ID Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="245"/>
         <source>Press to show the commit ID column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
-        <source>Show Author Columns</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="253"/>
+        <source>Show Author Columns</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="255"/>
         <source>Press to show the author columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
-        <source>Show Committer Columns</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="263"/>
+        <source>Show Committer Columns</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="265"/>
         <source>Press to show the committer columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
-        <source>Show Branches Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="273"/>
+        <source>Show Branches Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="275"/>
         <source>Press to show the branches column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
-        <source>Show Tags Column</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="283"/>
+        <source>Show Tags Column</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="285"/>
         <source>Press to show the Tags column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="313"/>
-        <source>Copy Commits</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <source>Copy Commits</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
         <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="320"/>
-        <source>Tag</source>
-        <translation type="unfinished">标签</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <source>Tag</source>
+        <translation type="unfinished">标签</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
         <source>Tag the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1812"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1814"/>
         <source>Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="326"/>
-        <source>Create a new branch at the selected commit.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
-        <source>Branch &amp;&amp; Switch</source>
+        <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"/>
+        <source>Branch &amp;&amp; Switch</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
         <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="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>Switch</source>
         <translation type="unfinished">转换</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
         <source>Switch the working directory to the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Show Short Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="342"/>
+        <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="345"/>
-        <source>Describe</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Describe</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
         <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="648"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="650"/>
         <source>The git process did not finish within 30s.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="651"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="653"/>
         <source>Could not start the git executable.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="654"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="656"/>
         <source>Git Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="771"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="835"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="837"/>
         <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="1275"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1277"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1287"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1289"/>
         <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="1725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1727"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1864"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1866"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1890"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1892"/>
         <source>Select a branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Select a default branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1846"/>
         <source>Branch &amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2073"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2075"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2133"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2135"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2148"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
         <source>Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2174"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2176"/>
         <source>There is no difference.</source>
         <translation type="unfinished">没有差异。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <source>Save Diff</source>
         <translation type="unfinished">保存差异</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2303"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2305"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">补丁文件 (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2320"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2322"/>
         <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="2337"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2339"/>
         <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>
@@ -23708,7 +23708,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="395"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="397"/>
         <source>Git Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23734,7 +23734,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>Commit</source>
         <translation type="unfinished">提交</translation>
     </message>
@@ -23809,322 +23809,322 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="65"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
         <source>Refresh</source>
         <translation type="unfinished">刷新</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="69"/>
         <source>Press to refresh the status display</source>
         <translation type="unfinished">点击刷新状态显示</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="107"/>
         <source>Stage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="111"/>
         <source>Revert Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="115"/>
         <source>Stage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="119"/>
         <source>Revert Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="123"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="125"/>
         <source>Unstage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="127"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="129"/>
         <source>Unstage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
-        <source>added</source>
-        <translation type="unfinished">已添加</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
-        <source>copied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
-        <source>deleted</source>
-        <translation type="unfinished">已删除</translation>
+        <source>added</source>
+        <translation type="unfinished">已添加</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="172"/>
-        <source>modified</source>
-        <translation type="unfinished">已修改</translation>
+        <source>copied</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="173"/>
-        <source>renamed</source>
-        <translation type="unfinished"></translation>
+        <source>deleted</source>
+        <translation type="unfinished">已删除</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="174"/>
+        <source>modified</source>
+        <translation type="unfinished">已修改</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="175"/>
+        <source>renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="177"/>
         <source>not tracked</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="174"/>
-        <source>unmerged</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmodified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="176"/>
+        <source>unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmodified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="178"/>
         <source>ignored</source>
         <translation type="unfinished">已忽略</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="199"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="198"/>
-        <source>Amend</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="200"/>
-        <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="202"/>
-        <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="204"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
         <source>Unselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <source>Add</source>
         <translation type="unfinished">添加</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="212"/>
         <source>Add the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="211"/>
-        <source>Stage changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="213"/>
-        <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="215"/>
-        <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="217"/>
+        <source>Unstage changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="219"/>
         <source>Unstages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="224"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="226"/>
         <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="227"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="229"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="231"/>
         <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="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>Revert</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>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="242"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
-        <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="246"/>
-        <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="248"/>
+        <source>Restore missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="250"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
-        <source>Edit file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
+        <source>Edit file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="257"/>
         <source>Edit the selected conflicting file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="260"/>
-        <source>Adjust column sizes</source>
-        <translation type="unfinished">调整列宽</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="262"/>
+        <source>Adjust column sizes</source>
+        <translation type="unfinished">调整列宽</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="264"/>
         <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="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="425"/>
         <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="596"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="598"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="662"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="664"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="705"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished">没有未版本化的条目可用或被选择。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>Stage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="727"/>
         <source>There are no stageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>Unstage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="747"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="749"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="769"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
         <source>Forget Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="786"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="788"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="810"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="812"/>
         <source>Restore Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="839"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="841"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished">没有未提交的更改可用或被选择。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="891"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="893"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="870"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="872"/>
         <source>Staging Area to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="892"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <source>Working Tree to HEAD Commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Side-by-Side Difference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="896"/>
         <source>Select the compare method.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1201"/>
-        <source>Revert selected lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1203"/>
+        <source>Revert selected lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1205"/>
         <source>Revert hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1206"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25329,357 +25329,357 @@
 <context>
     <name>HelpBrowser</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1220"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1223"/>
         <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation>在新选项卡中打开链接<byte value="x9"/>Ctrl+LMB</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="745"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="748"/>
         <source>&lt;b&gt;Help Window&lt;/b&gt;&lt;p&gt;This window displays the selected help information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;帮助窗口&lt;/b&gt;&lt;p&gt;该窗口显示已选的帮助信息。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1518"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1521"/>
         <source>Web Inspector...</source>
         <translation>网络检查器…</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2202"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2205"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2210"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2214"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1424"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
         <source>Bookmark this Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1227"/>
-        <source>Save Lin&amp;k</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1230"/>
+        <source>Save Lin&amp;k</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1233"/>
         <source>Bookmark this Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1237"/>
-        <source>Copy Link to Clipboard</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1258"/>
-        <source>Open Image in New Tab</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1265"/>
-        <source>Save Image</source>
-        <translation>保存图像</translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1268"/>
-        <source>Copy Image to Clipboard</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1270"/>
-        <source>Copy Image Location to Clipboard</source>
-        <translation type="unfinished">将图像位置复制至剪贴板</translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1283"/>
-        <source>Block Image</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1457"/>
-        <source>Search with...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="931"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="976"/>
-        <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="956"/>
-        <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2181"/>
-        <source>Error loading page: {0}</source>
-        <translation type="unfinished">加载页面出错:{0}</translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2199"/>
-        <source>When connecting to: {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
-        <source>Web Database Quota</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2262"/>
-        <source>&lt;p&gt;The database quota of &lt;strong&gt;{0}&lt;/strong&gt; has been exceeded while accessing database &lt;strong&gt;{1}&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Shall it be changed?&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
-        <source>New Web Database Quota</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2297"/>
-        <source>bytes</source>
-        <translation type="unfinished">字节</translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2300"/>
-        <source>kB</source>
-        <translation type="unfinished">千字节</translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2303"/>
-        <source>MB</source>
-        <translation type="unfinished">兆字节</translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2273"/>
-        <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1511"/>
-        <source>Add to web search toolbar</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
-        <source>Method not supported</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1706"/>
-        <source>{0} method is not supported.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
-        <source>Search engine</source>
-        <translation>搜索引擎</translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1764"/>
-        <source>Choose the desired search engine</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
-        <source>Engine name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1786"/>
-        <source>Enter a name for the engine</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2217"/>
-        <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1248"/>
-        <source>Scan Link with VirusTotal</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1291"/>
-        <source>Scan Image with VirusTotal</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1240"/>
+        <source>Copy Link to Clipboard</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1261"/>
+        <source>Open Image in New Tab</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1268"/>
+        <source>Save Image</source>
+        <translation>保存图像</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1271"/>
+        <source>Copy Image to Clipboard</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1273"/>
+        <source>Copy Image Location to Clipboard</source>
+        <translation type="unfinished">将图像位置复制至剪贴板</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1286"/>
+        <source>Block Image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1460"/>
+        <source>Search with...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="934"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="979"/>
+        <source>&lt;p&gt;Could not start a viewer for file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="959"/>
+        <source>&lt;p&gt;Could not start an application for URL &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2184"/>
+        <source>Error loading page: {0}</source>
+        <translation type="unfinished">加载页面出错:{0}</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2202"/>
+        <source>When connecting to: {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
+        <source>Web Database Quota</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2265"/>
+        <source>&lt;p&gt;The database quota of &lt;strong&gt;{0}&lt;/strong&gt; has been exceeded while accessing database &lt;strong&gt;{1}&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Shall it be changed?&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
+        <source>New Web Database Quota</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2300"/>
+        <source>bytes</source>
+        <translation type="unfinished">字节</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2303"/>
+        <source>kB</source>
+        <translation type="unfinished">千字节</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2306"/>
+        <source>MB</source>
+        <translation type="unfinished">兆字节</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2276"/>
+        <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1514"/>
+        <source>Add to web search toolbar</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
+        <source>Method not supported</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1709"/>
+        <source>{0} method is not supported.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
+        <source>Search engine</source>
+        <translation>搜索引擎</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1767"/>
+        <source>Choose the desired search engine</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
+        <source>Engine name</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1789"/>
+        <source>Enter a name for the engine</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2220"/>
+        <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1251"/>
+        <source>Scan Link with VirusTotal</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1294"/>
+        <source>Scan Image with VirusTotal</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1243"/>
         <source>Send Link</source>
         <translation>发送链接</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1276"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1279"/>
         <source>Send Image Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1384"/>
-        <source>This Frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1387"/>
-        <source>Show &amp;only this frame</source>
+        <source>This Frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1390"/>
+        <source>Show &amp;only this frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1393"/>
         <source>Show in new &amp;tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1397"/>
-        <source>&amp;Print</source>
-        <translation>打印(&amp;P)</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1400"/>
-        <source>Print Preview</source>
-        <translation>打印预览</translation>
+        <source>&amp;Print</source>
+        <translation>打印(&amp;P)</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1403"/>
+        <source>Print Preview</source>
+        <translation>打印预览</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1406"/>
         <source>Print as PDF</source>
         <translation>打印为 PDF</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1407"/>
-        <source>Zoom &amp;in</source>
-        <translation>放大(&amp;I)</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1410"/>
-        <source>Zoom &amp;reset</source>
-        <translation>重置缩放(&amp;R)</translation>
+        <source>Zoom &amp;in</source>
+        <translation>放大(&amp;I)</translation>
     </message>
     <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1413"/>
+        <source>Zoom &amp;reset</source>
+        <translation>重置缩放(&amp;R)</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1416"/>
         <source>Zoom &amp;out</source>
         <translation>缩小(&amp;O)</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1417"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1420"/>
         <source>Show frame so&amp;urce</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1427"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1430"/>
         <source>Send Page Link</source>
         <translation>发送页面链接</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1448"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1451"/>
         <source>Send Text</source>
         <translation>发送文本</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1482"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1485"/>
         <source>Google Translate</source>
         <translation>谷歌翻译</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1491"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1494"/>
         <source>Dictionary</source>
         <translation>字典</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1501"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1504"/>
         <source>Go to web address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1434"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1437"/>
         <source>User Agent</source>
         <translation>用户代理(UA)</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2222"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2225"/>
         <source>Try Again</source>
         <translation>再试一次</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1311"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1314"/>
         <source>Play</source>
         <translation>播放</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1315"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1318"/>
         <source>Pause</source>
         <translation>暂停</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1319"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1322"/>
         <source>Unmute</source>
         <translation>取消静音</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1323"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1326"/>
         <source>Mute</source>
         <translation>静音</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1327"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1330"/>
         <source>Copy Media Address to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1333"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1336"/>
         <source>Send Media Address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1339"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1342"/>
         <source>Save Media</source>
         <translation>保存媒体</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>eric6 Web Browser</source>
         <translation>eric6 Web Browser</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2658"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2661"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5. Please upgrade.&lt;/p&gt;</source>
         <translation>&lt;p&gt;打印功能因为 PyQt5 中存在的一个错误而无法使用。请进行升级。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="2626"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="2629"/>
         <source>&lt;p&gt;Printing is not available due to a bug in PyQt5.Please upgrade.&lt;/p&gt;</source>
         <translation>&lt;p&gt;打印功能因为 PyQt4 中存在的一个错误而无法使用。请进行升级。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1200"/>
-        <source>Add New Page</source>
-        <translation type="unfinished">添加新页面</translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="1203"/>
+        <source>Add New Page</source>
+        <translation type="unfinished">添加新页面</translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1206"/>
         <source>Configure Speed Dial</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1207"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1210"/>
         <source>Reload All Dials</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="1211"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="1214"/>
         <source>Reset to Default Dials</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27023,82 +27023,82 @@
 <context>
     <name>HelpWebPage</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="376"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="379"/>
         <source>Error loading page: {0}</source>
         <translation>加载页面出错:{0}</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="395"/>
-        <source>When connecting to: {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Helpviewer/HelpBrowserWV.py" line="398"/>
+        <source>When connecting to: {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="401"/>
         <source>Check the address for errors such as &lt;b&gt;ww&lt;/b&gt;.example.org instead of &lt;b&gt;www&lt;/b&gt;.example.org</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="403"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="406"/>
         <source>If the address is correct, try checking the network connection.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="408"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="411"/>
         <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="414"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="417"/>
         <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>Resending POST request</source>
         <translation>正在重新发送 POST 请求</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="227"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="230"/>
         <source>In order to display the site, the request along with all the data must be sent once again, which may lead to some unexpected behaviour of the site e.g. the same action might be performed once again. Do you want to continue anyway?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="419"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="422"/>
         <source>Try Again</source>
         <translation>再试一次</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="351"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="354"/>
         <source>Content blocked by AdBlock Plus</source>
         <translation>内容已被 AdBlock Plus 拦截</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="352"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="355"/>
         <source>Blocked by rule: &lt;i&gt;{0}&lt;/i&gt;</source>
         <translation>由以下规则拦截:&lt;i&gt;{0}&lt;/i&gt;</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="309"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="312"/>
         <source>Select files to upload...</source>
         <translation>选择要上传的文件…</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>SSL Info</source>
         <translation>SSL 信息</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="584"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="587"/>
         <source>This site does not contain SSL information.</source>
         <translation>这个站点未包括 SSL 信息。</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Protocol Error</source>
         <translation>协议错误</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="324"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="327"/>
         <source>Open external application for {0}-link?
 URL: {1}</source>
         <translation type="unfinished"></translation>
@@ -42967,27 +42967,27 @@
 <context>
     <name>JavaScriptEricObject</name>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="114"/>
         <source>Search!</source>
         <translation>搜索!</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="150"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="153"/>
         <source>Search results provided by {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="108"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="111"/>
         <source>Welcome to eric6 Web Browser!</source>
         <translation>欢迎使用 eric6 网页浏览器!</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="110"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="113"/>
         <source>eric6 Web Browser</source>
         <translation>eric6 网页浏览器</translation>
     </message>
     <message>
-        <location filename="../Helpviewer/HelpBrowserWV.py" line="112"/>
+        <location filename="../Helpviewer/HelpBrowserWV.py" line="115"/>
         <source>About eric6</source>
         <translation>关于 eric6</translation>
     </message>
@@ -45900,12 +45900,12 @@
         <translation>&lt;b&gt;保存副本&lt;/b&gt;保存当前编辑器窗口内容的一个副本。文件可以在文件选择对话框中输入。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3387"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3401"/>
         <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>
@@ -50847,22 +50847,22 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="484"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="499"/>
         <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="653"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="668"/>
         <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="597"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="612"/>
         <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="681"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="696"/>
         <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>
@@ -50870,40 +50870,45 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="88"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="76"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="87"/>
         <source>Enable JavaScript</source>
         <translation>允许 JavaScript</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="83"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="94"/>
         <source>Select to enable support for 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="92"/>
         <source>Enable Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="190"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="205"/>
         <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="252"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="267"/>
         <source>Preview - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="254"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="269"/>
         <source>Preview</source>
         <translation>预览</translation>
     </message>
+    <message>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="70"/>
+        <source>&lt;b&gt;HTML Preview is not available!&lt;br/&gt;Install QtWebEngine or QtWebKit.&lt;/b&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>PreviewerQSS</name>
@@ -53027,7 +53032,7 @@
         <translation>正在编译窗体…</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="905"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="943"/>
         <source>Abort</source>
         <translation>终止</translation>
     </message>
@@ -53852,7 +53857,7 @@
         <translation>正在编译资源…</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="777"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="850"/>
         <source>Abort</source>
         <translation>终止</translation>
     </message>
@@ -62772,275 +62777,275 @@
 <context>
     <name>ShellWindow</name>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Quit</source>
         <translation type="unfinished">退出</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">退出(&amp;Q)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="190"/>
+        <location filename="../QScintilla/ShellWindow.py" line="195"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished">Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="201"/>
         <source>Quit the Shell</source>
         <translation type="unfinished">退出程序</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="197"/>
+        <location filename="../QScintilla/ShellWindow.py" line="202"/>
         <source>&lt;b&gt;Quit the Shell&lt;/b&gt;&lt;p&gt;This quits the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New Window</source>
         <translation type="unfinished">新建窗口</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="205"/>
+        <location filename="../QScintilla/ShellWindow.py" line="210"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished">Ctrl+Shift+N</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="211"/>
+        <location filename="../QScintilla/ShellWindow.py" line="216"/>
         <source>Open a new Shell window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="213"/>
+        <location filename="../QScintilla/ShellWindow.py" line="218"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="220"/>
-        <source>Restart</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="225"/>
+        <source>Restart</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="230"/>
         <source>Restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="227"/>
+        <location filename="../QScintilla/ShellWindow.py" line="232"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="234"/>
-        <source>Restart and Clear</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="239"/>
+        <source>Restart and Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="244"/>
         <source>Clear the window and restart the shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="241"/>
+        <location filename="../QScintilla/ShellWindow.py" line="246"/>
         <source>&lt;b&gt;Restart and Clear&lt;/b&gt;&lt;p&gt;Clear the shell window and restart the shell for the currently selected language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>Show History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="876"/>
+        <location filename="../QScintilla/ShellWindow.py" line="881"/>
         <source>&amp;Show History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="882"/>
+        <location filename="../QScintilla/ShellWindow.py" line="887"/>
         <source>Show the shell history in a dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>Clear History</source>
         <translation type="unfinished">清除历史记录</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="886"/>
+        <location filename="../QScintilla/ShellWindow.py" line="891"/>
         <source>&amp;Clear History...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="892"/>
+        <location filename="../QScintilla/ShellWindow.py" line="897"/>
         <source>Clear the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
+        <location filename="../QScintilla/ShellWindow.py" line="901"/>
         <source>Select History Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="896"/>
-        <source>Select History &amp;Entry</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/ShellWindow.py" line="901"/>
+        <source>Select History &amp;Entry</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/ShellWindow.py" line="906"/>
         <source>Select an entry of the shell history</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>About</source>
         <translation type="unfinished">关于</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="909"/>
+        <location filename="../QScintilla/ShellWindow.py" line="914"/>
         <source>&amp;About</source>
         <translation type="unfinished">关于(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="913"/>
+        <location filename="../QScintilla/ShellWindow.py" line="918"/>
         <source>Display information about this software</source>
         <translation type="unfinished">显示软件信息</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="915"/>
+        <location filename="../QScintilla/ShellWindow.py" line="920"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;关于&lt;/b&gt;&lt;p&gt;显示与本软件有关的部分信息。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About Qt</source>
         <translation type="unfinished">关于 Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="921"/>
+        <location filename="../QScintilla/ShellWindow.py" line="926"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished">关于 &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="925"/>
+        <location filename="../QScintilla/ShellWindow.py" line="930"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="927"/>
+        <location filename="../QScintilla/ShellWindow.py" line="932"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished">这是什么?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished">这是什么(&amp;W)?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="934"/>
+        <location filename="../QScintilla/ShellWindow.py" line="939"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="940"/>
+        <location filename="../QScintilla/ShellWindow.py" line="945"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">背景帮助</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="941"/>
+        <location filename="../QScintilla/ShellWindow.py" line="946"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;显示背景帮助&lt;/b&gt;&lt;p&gt;在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>About eric6 Shell Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1077"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1082"/>
         <source>The eric6 Shell is a standalone shell window. It uses the same backend as the debugger of the full IDE, but is executed independently.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1105"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1110"/>
         <source>&amp;File</source>
         <translation type="unfinished">文件(&amp;F)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1114"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1119"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">编辑(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1125"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1130"/>
         <source>&amp;View</source>
         <translation type="unfinished">视图(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1132"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1137"/>
         <source>Histor&amp;y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1139"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1144"/>
         <source>&amp;Start</source>
         <translation type="unfinished">开始(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1145"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1150"/>
         <source>&amp;Help</source>
         <translation type="unfinished">帮助(&amp;H)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1180"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1185"/>
         <source>File</source>
         <translation type="unfinished">文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1189"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1194"/>
         <source>Edit</source>
         <translation type="unfinished">编辑</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1196"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1201"/>
         <source>Find</source>
         <translation type="unfinished">查找</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1202"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1207"/>
         <source>View</source>
         <translation type="unfinished">视图</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1209"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1214"/>
         <source>History</source>
         <translation type="unfinished">历史</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1215"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1220"/>
         <source>Help</source>
         <translation type="unfinished">帮助</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="1236"/>
+        <location filename="../QScintilla/ShellWindow.py" line="1241"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the  shell.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="570"/>
+        <location filename="../QScintilla/ShellWindow.py" line="575"/>
         <source>Move forward one history entry</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63050,7 +63055,7 @@
         <translation type="obsolete">Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../QScintilla/ShellWindow.py" line="580"/>
+        <location filename="../QScintilla/ShellWindow.py" line="585"/>
         <source>Move back one history entry</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74242,12 +74247,12 @@
         <translation type="unfinished">显示版本</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="523"/>
+        <location filename="../Tools/TrayStarter.py" line="526"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation type="unfinished">&lt;h3&gt;版本号&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../Tools/TrayStarter.py" line="550"/>
+        <location filename="../Tools/TrayStarter.py" line="553"/>
         <source>&lt;/table&gt;</source>
         <translation type="unfinished">&lt;/table&gt;</translation>
     </message>
@@ -74833,7 +74838,7 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>Unittest</source>
         <translation>单元测试</translation>
     </message>
@@ -75024,57 +75029,57 @@
         <translation>^错误:</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="269"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="271"/>
         <source>You must enter a test suite file.</source>
         <translation>必须输入测试套件文件。</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="277"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="279"/>
         <source>Preparing Testsuite</source>
         <translation>准备测试套件</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="475"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="477"/>
         <source>Running</source>
         <translation>正在运行</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="640"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="642"/>
         <source>Show Source</source>
         <translation>显示源代码</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="209"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="211"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="205"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="207"/>
         <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="403"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="405"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;{1}&lt;br&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="499"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="501"/>
         <source>Ran {0} test in {1:.3f}s</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="503"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="505"/>
         <source>Ran {0} tests in {1:.3f}s</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="520"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="522"/>
         <source>Failure: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="535"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="537"/>
         <source>Error: {0}</source>
         <translation type="unfinished">错误:{0}</translation>
     </message>
@@ -75109,17 +75114,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="550"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="552"/>
         <source>    Skipped: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="565"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="567"/>
         <source>    Expected Failure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="579"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="581"/>
         <source>    Unexpected Success</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75617,7 +75622,7 @@
         <translation>显示可以下载的版本</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <source>Report Bug</source>
         <translation>报告错误</translation>
     </message>
@@ -75717,7 +75722,7 @@
         <translation>&lt;b&gt;脚本单元测试&lt;/b&gt;&lt;p&gt;对当前脚本运动单元测试。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <source>Unittest Project</source>
         <translation>项目单元测试</translation>
     </message>
@@ -75972,7 +75977,7 @@
         <translation>&lt;b&gt;键盘快捷键&lt;/b&gt;&lt;p&gt;将程序的键盘快捷键设置成你喜欢的按键。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5846"/>
+        <location filename="../UI/UserInterface.py" line="5849"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>导出键盘快捷键</translation>
     </message>
@@ -75992,7 +75997,7 @@
         <translation>&lt;b&gt;导出键盘快捷键&lt;/b&gt;&lt;p&gt;导出程序的键盘快捷键。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>导入键盘快捷键</translation>
     </message>
@@ -76227,7 +76232,7 @@
         <translation>设置</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <source>Help</source>
         <translation>帮助</translation>
     </message>
@@ -76272,167 +76277,167 @@
         <translation>&lt;p&gt;状态栏的这一部分显示当前编辑器的光标位置。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3259"/>
+        <location filename="../UI/UserInterface.py" line="3262"/>
         <source>&lt;h3&gt;Version Numbers&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;版本号&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6826"/>
+        <location filename="../UI/UserInterface.py" line="6829"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3314"/>
+        <location filename="../UI/UserInterface.py" line="3317"/>
         <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="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>Restart application</source>
         <translation>重启程序</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3594"/>
+        <location filename="../UI/UserInterface.py" line="3597"/>
         <source>The application needs to be restarted. Do it now?</source>
         <translation>程序需要重启。现在重启?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3673"/>
+        <location filename="../UI/UserInterface.py" line="3676"/>
         <source>Configure Tool Groups ...</source>
         <translation>配置工具组…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3677"/>
+        <location filename="../UI/UserInterface.py" line="3680"/>
         <source>Configure current Tool Group ...</source>
         <translation>配置当前工具组…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3628"/>
+        <location filename="../UI/UserInterface.py" line="3631"/>
         <source>&amp;Builtin Tools</source>
         <translation>内建工具(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3645"/>
+        <location filename="../UI/UserInterface.py" line="3648"/>
         <source>&amp;Plugin Tools</source>
         <translation>插件工具(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3793"/>
+        <location filename="../UI/UserInterface.py" line="3796"/>
         <source>&amp;Show all</source>
         <translation>全部显示(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3795"/>
+        <location filename="../UI/UserInterface.py" line="3798"/>
         <source>&amp;Hide all</source>
         <translation>全部隐藏(&amp;H)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4442"/>
+        <location filename="../UI/UserInterface.py" line="4445"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>当前项目未定义主脚本。终止</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <source>Problem</source>
         <translation>问题</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <source>Process Generation Error</source>
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Open Browser</source>
         <translation>打开浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5642"/>
+        <location filename="../UI/UserInterface.py" line="5645"/>
         <source>Could not start a web browser</source>
         <translation>无法启动网络浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4694"/>
+        <location filename="../UI/UserInterface.py" line="4697"/>
         <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="4728"/>
+        <location filename="../UI/UserInterface.py" line="4731"/>
         <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="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>External Tools</source>
         <translation>外部工具</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <source>Documentation Missing</source>
         <translation>文档缺失</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>Documentation</source>
         <translation>文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5303"/>
+        <location filename="../UI/UserInterface.py" line="5306"/>
         <source>&lt;p&gt;The PyQt4 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;未配置 PyQt4 文档起点。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>Save tasks</source>
         <translation>保存任务</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <source>Read tasks</source>
         <translation>读取任务</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6165"/>
+        <location filename="../UI/UserInterface.py" line="6168"/>
         <source>Save session</source>
         <translation>保存会话</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <source>Read session</source>
         <translation>读取会话</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <source>Drop Error</source>
         <translation>降落误差</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Error during updates check</source>
         <translation>检查更新时出错</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>&amp;Cancel</source>
         <translation>取消(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>Update available</source>
         <translation>可用更新</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6788"/>
+        <location filename="../UI/UserInterface.py" line="6791"/>
         <source>Could not perform updates check.</source>
         <translation>无法完成更新检查。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6812"/>
+        <location filename="../UI/UserInterface.py" line="6815"/>
         <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="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>First time usage</source>
         <translation>第一次使用</translation>
     </message>
@@ -76512,7 +76517,7 @@
         <translation>图标编辑器(&amp;I)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt 3 support</source>
         <translation>Qt 3 支持</translation>
     </message>
@@ -76557,106 +76562,106 @@
         <translation>外部工具/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4820"/>
+        <location filename="../UI/UserInterface.py" line="4823"/>
         <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="4548"/>
+        <location filename="../UI/UserInterface.py" line="4551"/>
         <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="4615"/>
+        <location filename="../UI/UserInterface.py" line="4618"/>
         <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="4666"/>
+        <location filename="../UI/UserInterface.py" line="4669"/>
         <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="4708"/>
+        <location filename="../UI/UserInterface.py" line="4711"/>
         <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="4776"/>
+        <location filename="../UI/UserInterface.py" line="4779"/>
         <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="4831"/>
+        <location filename="../UI/UserInterface.py" line="4834"/>
         <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="4852"/>
+        <location filename="../UI/UserInterface.py" line="4855"/>
         <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="4945"/>
+        <location filename="../UI/UserInterface.py" line="4948"/>
         <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="4954"/>
+        <location filename="../UI/UserInterface.py" line="4957"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4993"/>
+        <location filename="../UI/UserInterface.py" line="4996"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>正在启动进程“{0} {1}”。
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5009"/>
+        <location filename="../UI/UserInterface.py" line="5012"/>
         <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="5085"/>
+        <location filename="../UI/UserInterface.py" line="5088"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>进程“{0}”已退出。
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5506"/>
+        <location filename="../UI/UserInterface.py" line="5509"/>
         <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="6039"/>
+        <location filename="../UI/UserInterface.py" line="6042"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;任务文件 &lt;b&gt;{0}&lt;/b&gt; 无法写入。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6068"/>
+        <location filename="../UI/UserInterface.py" line="6071"/>
         <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="6102"/>
+        <location filename="../UI/UserInterface.py" line="6105"/>
         <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="6149"/>
+        <location filename="../UI/UserInterface.py" line="6152"/>
         <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="6429"/>
+        <location filename="../UI/UserInterface.py" line="6432"/>
         <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="6610"/>
+        <location filename="../UI/UserInterface.py" line="6613"/>
         <source>Trying host {0}</source>
         <translation>正在尝试主机 {0}</translation>
     </message>
@@ -76691,7 +76696,7 @@
         <translation>Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5870"/>
+        <location filename="../UI/UserInterface.py" line="5873"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation>键盘快捷键文件 (*.e4k)</translation>
     </message>
@@ -76731,17 +76736,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <source>Error getting versions information</source>
         <translation>获取版本信息出错</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6667"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <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="6674"/>
+        <location filename="../UI/UserInterface.py" line="6677"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation>过去7天均无法获取版本信息。请连线并再试一次。</translation>
     </message>
@@ -76827,12 +76832,12 @@
         <translation>&lt;b&gt;快照&lt;/b&gt;&lt;p&gt;打开一个对话框来截取屏幕一个区域的快照。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4922"/>
+        <location filename="../UI/UserInterface.py" line="4925"/>
         <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="6882"/>
+        <location filename="../UI/UserInterface.py" line="6885"/>
         <source>Select Workspace Directory</source>
         <translation>选择工作区目录</translation>
     </message>
@@ -77207,7 +77212,7 @@
         <translation>打开 PyQt5 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5369"/>
+        <location filename="../UI/UserInterface.py" line="5372"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;未配置 PyQt5 文档起始位置。&lt;/p&gt;</translation>
     </message>
@@ -77242,7 +77247,7 @@
         <translation type="obsolete">&lt;b&gt;PySide 文档&lt;/b&gt;&lt;p&gt;显示 PySide 文档。依赖于您的设置,这可能会在 eric 的内置帮助查看器内显示,或是启动一个网页浏览器,或是启动 Qt 助手。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6601"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77262,7 +77267,7 @@
         <translation>&lt;b&gt;显示错误日志…&lt;/b&gt;&lt;p&gt;打开一个对话框显示最近的错误日志。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6605"/>
+        <location filename="../UI/UserInterface.py" line="6608"/>
         <source>Version Check</source>
         <translation>版本检查</translation>
     </message>
@@ -77332,27 +77337,27 @@
         <translation>&lt;b&gt;Eric API 文档&lt;/b&gt;&lt;p&gt;显示 Eric API 文档。文档位置为 Eric6 安装文件夹下的文档或源代码子文件夹。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4641"/>
+        <location filename="../UI/UserInterface.py" line="4644"/>
         <source>Qt v.3 is not supported by eric6.</source>
         <translation>Qt 版本3 不被 eric6 支持。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6768"/>
+        <location filename="../UI/UserInterface.py" line="6771"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric6 is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation>eric6 的 &lt;b&gt;{0}&lt;/b&gt; 更新已经可用,位于 &lt;b&gt;{1}&lt;/b&gt;。您是否希望下载它?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>Eric6 is up to date</source>
         <translation>Eric6 已是最新版本</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6781"/>
+        <location filename="../UI/UserInterface.py" line="6784"/>
         <source>You are using the latest version of eric6</source>
         <translation>您正在使用 eric6 的最新版本</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6863"/>
+        <location filename="../UI/UserInterface.py" line="6866"/>
         <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
         <translation>尚未配置 eric6。将打开配置对话框。</translation>
     </message>
@@ -77362,17 +77367,17 @@
         <translation>生成插件工具栏…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3648"/>
+        <location filename="../UI/UserInterface.py" line="3651"/>
         <source>&amp;User Tools</source>
         <translation>用户工具(&amp;U)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3720"/>
+        <location filename="../UI/UserInterface.py" line="3723"/>
         <source>No User Tools Configured</source>
         <translation>没有配置的用户工具</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6621"/>
+        <location filename="../UI/UserInterface.py" line="6624"/>
         <source>The versions information cannot not be downloaded because you are &lt;b&gt;offline&lt;/b&gt;. Please go online and try again.</source>
         <translation>因为当前处在 &lt;b&gt;离线&lt;/b&gt; 状态,无法获取版本信息。请连线并再试一次。</translation>
     </message>
@@ -77417,7 +77422,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>Load session</source>
         <translation type="unfinished">载入会话</translation>
     </message>
@@ -77432,17 +77437,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6187"/>
+        <location filename="../UI/UserInterface.py" line="6190"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6234"/>
+        <location filename="../UI/UserInterface.py" line="6237"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77457,17 +77462,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6756"/>
+        <location filename="../UI/UserInterface.py" line="6759"/>
         <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="6746"/>
+        <location filename="../UI/UserInterface.py" line="6749"/>
         <source>You are using a snapshot release of eric6. A more up-to-date stable release might be available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77522,7 +77527,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5489"/>
+        <location filename="../UI/UserInterface.py" line="5492"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82055,12 +82060,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="55"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="58"/>
         <source>Virtualenv Target Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="60"/>
+        <location filename="../VirtualEnv/VirtualenvAddEditDialog.py" line="63"/>
         <source>Python Interpreter</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82499,52 +82504,52 @@
 <context>
     <name>VirtualenvManager</name>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>Add Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="129"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="137"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="173"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="185"/>
         <source>Change Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="211"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="226"/>
         <source>Rename Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="270"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="304"/>
         <source>{0} - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Delete Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="240"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="255"/>
         <source>Do you really want to delete these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Remove Virtual Environments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="275"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="309"/>
         <source>Do you really want to remove these virtual environments?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -87120,12 +87125,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="388"/>
+        <location filename="../eric6.py" line="391"/>
         <source>Starting...</source>
         <translation>正在启动…</translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="393"/>
+        <location filename="../eric6.py" line="396"/>
         <source>Generating Main Window...</source>
         <translation>正在产生主窗口…</translation>
     </message>

eric ide

mercurial