CreateDialogCodeDialog: fixed an issue and applied some logic to enhance the form data loading via the external UicLoadUi.py script.

Sat, 17 Nov 2018 12:45:58 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 17 Nov 2018 12:45:58 +0100
changeset 6590
8cad6f50ff4c
parent 6589
613426e62983
child 6591
7994baeb7abe

CreateDialogCodeDialog: fixed an issue and applied some logic to enhance the form data loading via the external UicLoadUi.py script.

Documentation/Help/source.qch file | annotate | diff | comparison | revisions
Documentation/Help/source.qhp file | annotate | diff | comparison | revisions
Documentation/Source/eric6.Project.CreateDialogCodeDialog.html file | annotate | diff | comparison | revisions
Project/CreateDialogCodeDialog.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
Binary file Documentation/Help/source.qch has changed
--- a/Documentation/Help/source.qhp	Fri Nov 16 20:00:03 2018 +0100
+++ b/Documentation/Help/source.qhp	Sat Nov 17 12:45:58 2018 +0100
@@ -3513,6 +3513,7 @@
       <keyword name="CreateDialogCodeDialog.__mapType" id="CreateDialogCodeDialog.__mapType" ref="eric6.Project.CreateDialogCodeDialog.html#CreateDialogCodeDialog.__mapType" />
       <keyword name="CreateDialogCodeDialog.__objectName" id="CreateDialogCodeDialog.__objectName" ref="eric6.Project.CreateDialogCodeDialog.html#CreateDialogCodeDialog.__objectName" />
       <keyword name="CreateDialogCodeDialog.__objectNameExternal" id="CreateDialogCodeDialog.__objectNameExternal" ref="eric6.Project.CreateDialogCodeDialog.html#CreateDialogCodeDialog.__objectNameExternal" />
+      <keyword name="CreateDialogCodeDialog.__runUicLoadUi" id="CreateDialogCodeDialog.__runUicLoadUi" ref="eric6.Project.CreateDialogCodeDialog.html#CreateDialogCodeDialog.__runUicLoadUi" />
       <keyword name="CreateDialogCodeDialog.__signatures" id="CreateDialogCodeDialog.__signatures" ref="eric6.Project.CreateDialogCodeDialog.html#CreateDialogCodeDialog.__signatures" />
       <keyword name="CreateDialogCodeDialog.__updateSlotsModel" id="CreateDialogCodeDialog.__updateSlotsModel" ref="eric6.Project.CreateDialogCodeDialog.html#CreateDialogCodeDialog.__updateSlotsModel" />
       <keyword name="CreateDialogCodeDialog.__updateSlotsModelExternal" id="CreateDialogCodeDialog.__updateSlotsModelExternal" ref="eric6.Project.CreateDialogCodeDialog.html#CreateDialogCodeDialog.__updateSlotsModelExternal" />
--- a/Documentation/Source/eric6.Project.CreateDialogCodeDialog.html	Fri Nov 16 20:00:03 2018 +0100
+++ b/Documentation/Source/eric6.Project.CreateDialogCodeDialog.html	Sat Nov 17 12:45:58 2018 +0100
@@ -81,6 +81,9 @@
 <td><a href="#CreateDialogCodeDialog.__objectNameExternal">__objectNameExternal</a></td>
 <td>Private method to get the object name of a form via an external interpreter.</td>
 </tr><tr>
+<td><a href="#CreateDialogCodeDialog.__runUicLoadUi">__runUicLoadUi</a></td>
+<td>Private method to run the UicLoadUi.py script with the given command and return the output.</td>
+</tr><tr>
 <td><a href="#CreateDialogCodeDialog.__signatures">__signatures</a></td>
 <td>Private slot to get the signatures.</td>
 </tr><tr>
@@ -214,6 +217,27 @@
 <dd>
 str
 </dd>
+</dl><a NAME="CreateDialogCodeDialog.__runUicLoadUi" ID="CreateDialogCodeDialog.__runUicLoadUi"></a>
+<h4>CreateDialogCodeDialog.__runUicLoadUi</h4>
+<b>__runUicLoadUi</b>(<i>command</i>)
+<p>
+        Private method to run the UicLoadUi.py script with the given command
+        and return the output.
+</p><dl>
+<dt><i>command</i> (str)</dt>
+<dd>
+uic command to be run
+</dd>
+</dl><dl>
+<dt>Returns:</dt>
+<dd>
+tuple of process output and error flag
+</dd>
+</dl><dl>
+<dt>Return Type:</dt>
+<dd>
+tuple of (str, bool)
+</dd>
 </dl><a NAME="CreateDialogCodeDialog.__signatures" ID="CreateDialogCodeDialog.__signatures"></a>
 <h4>CreateDialogCodeDialog.__signatures</h4>
 <b>__signatures</b>(<i></i>)
--- a/Project/CreateDialogCodeDialog.py	Fri Nov 16 20:00:03 2018 +0100
+++ b/Project/CreateDialogCodeDialog.py	Sat Nov 17 12:45:58 2018 +0100
@@ -18,7 +18,7 @@
 import xml.etree.ElementTree
 
 from PyQt5.QtCore import QMetaObject, QByteArray, QRegExp, Qt, pyqtSlot, \
-    QMetaMethod, QSortFilterProxyModel, QProcess
+    QMetaMethod, QSortFilterProxyModel, QProcess, QProcessEnvironment
 from PyQt5.QtGui import QStandardItemModel, QBrush, QStandardItem
 from PyQt5.QtWidgets import QWidget, QDialog, QDialogButtonBox, QAction
 from PyQt5 import uic
@@ -146,7 +146,75 @@
         @return flag indicating an initialzation error (boolean)
         """
         return self.__initError
+    
+    def __runUicLoadUi(self, command):
+        """
+        Private method to run the UicLoadUi.py script with the given command
+        and return the output.
         
+        @param command uic command to be run
+        @type str
+        @return tuple of process output and error flag
+        @rtype tuple of (str, bool)
+        """
+        venvName = self.project.getDebugProperty("VIRTUALENV")
+        venvManager = e5App().getObject("VirtualEnvManager")
+        interpreter = venvManager.getVirtualenvInterpreter(venvName)
+        execPath = venvManager.getVirtualenvExecPath(venvName)
+        
+        env = QProcessEnvironment.systemEnvironment()
+        if execPath:
+            if env.contains("PATH"):
+                env.insert(
+                    "PATH", os.pathsep.join([execPath, env.value("PATH")])
+                )
+            else:
+                env.insert("PATH", execPath)
+        
+        loadUi = os.path.join(os.path.dirname(__file__), "UicLoadUi.py")
+        args = [
+            loadUi,
+            command,
+            self.formFile,
+            self.project.getProjectPath(),
+        ]
+        
+        uicText = ""
+        ok = False
+        
+        proc = QProcess()
+        proc.setWorkingDirectory(self.project.getProjectPath())
+        proc.setProcessEnvironment(env)
+        proc.start(interpreter, args)
+        started = proc.waitForStarted(5000)
+        finished = proc.waitForFinished(30000)
+        if started and finished:
+            output = proc.readAllStandardOutput()
+            outText = str(output, "utf-8", "replace")
+            if proc.exitCode() == 0:
+                ok = True
+                uicText = outText.strip()
+            else:
+                E5MessageBox.critical(
+                    self,
+                    self.tr("uic error"),
+                    self.tr(
+                        """<p>There was an error loading the form <b>{0}</b>"""
+                        """.</p><p>{1}</p>""").format(
+                        self.formFile, outText)
+                )
+        else:
+            E5MessageBox.critical(
+                self,
+                self.tr("uic error"),
+                self.tr(
+                    """<p>The project specific Python interpreter <b>{0}</b>"""
+                    """ could not be started or did not finish within 30"""
+                    """ seconds.</p>""").format(interpreter)
+            )
+        
+        return uicText, ok
+    
     def __objectNameExternal(self):
         """
         Private method to get the object name of a form via an external
@@ -155,33 +223,11 @@
         @return object name
         @rtype str
         """
-        interpreter = self.project.getDebugProperty("INTERPRETER")
         objectName = ""
         
-        loadUi = os.path.join(os.path.dirname(__file__), "UicLoadUi.py")
-        args = [
-            loadUi,
-            "object_name",
-            self.formFile,
-            self.project.getProjectPath(),
-        ]
-        
-        proc = QProcess()
-        proc.start(interpreter, args)
-        finished = proc.waitForFinished(30000)
-        if finished:
-            text = proc.readAllStandardOutput()
-            if proc.exitCode() == 0:
-                objectName = str(text, "utf-8", "replace").strip()
-            else:
-                errorText = str(text, "utf-8", "replace")
-                E5MessageBox.critical(
-                    self,
-                    self.tr("uic error"),
-                    self.tr(
-                        """<p>There was an error loading the form <b>{0}</b>"""
-                        """.</p><p>{1}</p>""").format(
-                        self.formFile, errorText))
+        output, ok = self.__runUicLoadUi("object_name")
+        if ok and output:
+            objectName = output
         
         return objectName
     
@@ -192,7 +238,7 @@
         @return object name
         @rtype str
         """
-        if self.project.getDebugProperty("INTERPRETER"):
+        if self.project.getDebugProperty("VIRTUALENV"):
             return self.__objectNameExternal()
         else:
             try:
@@ -217,33 +263,11 @@
         @return class name
         @rtype str
         """
-        interpreter = self.project.getDebugProperty("INTERPRETER")
         className = ""
         
-        loadUi = os.path.join(os.path.dirname(__file__), "UicLoadUi.py")
-        args = [
-            loadUi,
-            "class_name",
-            self.formFile,
-            self.project.getProjectPath(),
-        ]
-        
-        proc = QProcess()
-        proc.start(interpreter, args)
-        finished = proc.waitForFinished(30000)
-        if finished:
-            text = proc.readAllStandardOutput()
-            if proc.exitCode() == 0:
-                className = str(text, "utf-8", "replace").strip()
-            else:
-                errorText = str(text, "utf-8", "replace")
-                E5MessageBox.critical(
-                    self,
-                    self.tr("uic error"),
-                    self.tr(
-                        """<p>There was an error loading the form <b>{0}</b>"""
-                        """.</p><p>{1}</p>""").format(
-                        self.formFile, errorText))
+        output, ok = self.__runUicLoadUi("class_name")
+        if ok and output:
+            className = output
         
         return className
     
@@ -254,8 +278,8 @@
         @return class name
         @rtype str
         """
-        if self.project.getDebugProperty("INTERPRETER"):
-            return self.__objectNameExternal()
+        if self.project.getDebugProperty("VIRTUALENV"):
+            return self.__classNameExternal()
         else:
             try:
                 dlg = uic.loadUi(
@@ -327,36 +351,9 @@
         Private slot to update the slots tree display getting the data via an
         external interpreter.
         """
-        interpreter = self.project.getDebugProperty("INTERPRETER")
-        objectsList = []
-        
-        loadUi = os.path.join(os.path.dirname(__file__), "UicLoadUi.py")
-        args = [
-            loadUi,
-            "signatures",
-            self.formFile,
-            self.project.getProjectPath(),
-        ]
-        
-        proc = QProcess()
-        proc.start(interpreter, args)
-        finished = proc.waitForFinished(30000)
-        if not finished:
-            return
-        
-        text = proc.readAllStandardOutput()
-        if proc.exitCode() != 0:
-            errorText = str(text, "utf-8", "replace")
-            E5MessageBox.critical(
-                self,
-                self.tr("uic error"),
-                self.tr(
-                    """<p>There was an error loading the form <b>{0}</b>"""
-                    """.</p><p>{1}</p>""").format(
-                    self.formFile, errorText))
-        else:
-            objectsListStr = str(text, "utf-8", "replace").strip()
-            objectsList = json.loads(objectsListStr)
+        output, ok = self.__runUicLoadUi("signatures")
+        if ok and output:
+            objectsList = json.loads(output.strip())
             
             signatureList = self.__signatures()
             
@@ -406,7 +403,7 @@
         """
         self.filterEdit.clear()
         
-        if self.project.getDebugProperty("INTERPRETER"):
+        if self.project.getDebugProperty("VIRTUALENV"):
             self.__updateSlotsModelExternal()
         else:
             try:
--- a/i18n/eric6_cs.ts	Fri Nov 16 20:00:03 2018 +0100
+++ b/i18n/eric6_cs.ts	Sat Nov 17 12:45:58 2018 +0100
@@ -5528,12 +5528,12 @@
         <translation>&amp;Filtr pro:</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="754"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="751"/>
         <source>Code Generation</source>
         <translation>Generování kódu</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="542"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="539"/>
         <source>uic error</source>
         <translation>uic chyba</translation>
     </message>
@@ -5548,25 +5548,30 @@
         <translation>Soubor &lt;b&gt;{0}&lt;/b&gt; existuje ale neobsahuje žádné třídy.</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="542"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="539"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Byla nalezena chyba načtená z &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="620"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="617"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Template soubor &lt;b&gt;{0}&lt;/b&gt; nelze otevřít.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="656"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="653"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nelze ovevřít source soubor &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="754"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="751"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nelze zapsat do source souboru &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
+    <message>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="207"/>
+        <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>Crypto</name>
@@ -6887,27 +6892,27 @@
 <context>
     <name>DebuggerInterfacePython</name>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/>
         <source>Start Debugger</source>
         <translation type="unfinished">Spustit debuger</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="936"/>
-        <source>Parent Process</source>
-        <translation type="unfinished">Rodičovský proces</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebuggerInterfacePython.py" line="937"/>
-        <source>Child process</source>
-        <translation type="unfinished">Dětský proces</translation>
+        <source>Parent Process</source>
+        <translation type="unfinished">Rodičovský proces</translation>
     </message>
     <message>
         <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/>
+        <source>Child process</source>
+        <translation type="unfinished">Dětský proces</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/>
         <source>Client forking</source>
         <translation type="unfinished">Větvení klienta</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/>
         <source>Select the fork branch to follow.</source>
         <translation type="unfinished">Pokračovat ve fork větvi.</translation>
     </message>
@@ -6917,22 +6922,22 @@
         <translation type="obsolete">&lt;p&gt;Python2 interpreter není nakonfigurován.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/>
         <source>&lt;p&gt;The debugger backend could not be started.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Debugovací backend nelze spustit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/>
         <source>Debug Protocol Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/>
         <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="348"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="349"/>
         <source>&lt;p&gt;No suitable {0} environment configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42872,7 +42877,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="350"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="354"/>
         <source>Press to connect to the selected network</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42902,57 +42907,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/>
         <source>Save Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="421"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="425"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/>
         <source>Error saving Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="475"/>
         <source>Copy</source>
         <translation type="unfinished">Kopírovat</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/>
-        <source>Cut all</source>
-        <translation type="unfinished">Vyjmout vše</translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/>
+        <source>Cut all</source>
+        <translation type="unfinished">Vyjmout vše</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="484"/>
         <source>Copy all</source>
         <translation type="unfinished">Kopírovat vše</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="485"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="489"/>
         <source>Clear</source>
         <translation type="unfinished">Vyčistit</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="490"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="494"/>
         <source>Save</source>
         <translation type="unfinished">Uložit</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="345"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="349"/>
         <source>Press to disconnect from the network</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43402,253 +43407,253 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="243"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="255"/>
         <source>Disconnect from Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="243"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="255"/>
         <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="196"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="197"/>
         <source>SSL Connection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="196"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="197"/>
         <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="563"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="579"/>
         <source>Info</source>
         <translation type="unfinished">Info</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="222"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="230"/>
         <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="231"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="241"/>
         <source>Looking for server {0} (port {1})...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="252"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="264"/>
         <source>Disconnecting from server {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="519"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="533"/>
         <source>Server found,connecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="528"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="542"/>
         <source>Connected,logging in...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="563"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="579"/>
         <source>Server disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="626"/>
         <source>Message Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="626"/>
         <source>Unknown message received from server:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="678"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="694"/>
         <source>Notice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="696"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="712"/>
         <source>Mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="703"/>
-        <source>You have left channel {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="714"/>
-        <source>You are now known as {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="719"/>
+        <source>You have left channel {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="730"/>
+        <source>You are now known as {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="735"/>
         <source>User {0} is now known as {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="729"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="745"/>
         <source>Server Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="765"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="781"/>
         <source>Error</source>
         <translation type="unfinished">Chyba</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="780"/>
-        <source>Welcome</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="782"/>
-        <source>Support</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="784"/>
-        <source>User</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="786"/>
-        <source>MOTD</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="788"/>
-        <source>Away</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="790"/>
-        <source>Info ({0})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="794"/>
-        <source>Message of the day</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="796"/>
-        <source>End of message of the day</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="799"/>
-        <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="805"/>
-        <source>Current users on {0}: {1}, max. {2}</source>
+        <source>Welcome</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="798"/>
+        <source>Support</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="800"/>
+        <source>User</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="802"/>
+        <source>MOTD</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="804"/>
+        <source>Away</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="806"/>
+        <source>Info ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Network/IRC/IrcWidget.py" line="810"/>
+        <source>Message of the day</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="812"/>
+        <source>End of message of the day</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="815"/>
+        <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="821"/>
+        <source>Current users on {0}: {1}, max. {2}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="826"/>
         <source>Current users on the network: {0}, max. {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="814"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="830"/>
         <source>You are no longer marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="816"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="832"/>
         <source>You have been marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="952"/>
         <source>SSL Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="877"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="894"/>
         <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="925"/>
         <source>Socket Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="885"/>
-        <source>The host was not found. Please check the host name and port settings.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="891"/>
-        <source>The connection was refused by the peer. Please check the host name and port settings.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="902"/>
+        <source>The host was not found. Please check the host name and port settings.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
+        <source>The connection was refused by the peer. Please check the host name and port settings.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="919"/>
         <source>The following network error occurred:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1034"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1051"/>
         <source>{0} ({1})</source>
         <comment>channel name, users count</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1069"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1094"/>
         <source>Critical</source>
         <translation type="unfinished">Kritický</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1049"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1074"/>
         <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1069"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1094"/>
         <source>The given nickname is already in use.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="1036"/>
+        <source>CTCP</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="1013"/>
+        <source>Received Version request from {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="1019"/>
-        <source>CTCP</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="996"/>
-        <source>Received Version request from {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1002"/>
         <source>Received CTCP-PING request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1010"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1027"/>
         <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1019"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1036"/>
         <source>Received unknown CTCP-{0} request from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="689"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="705"/>
         <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="693"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="709"/>
         <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43663,47 +43668,47 @@
         <translation type="unfinished">Síť</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="897"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="914"/>
         <source>The SSL handshake failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="925"/>
         <source>A network error occurred.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="921"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="938"/>
         <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="952"/>
         <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="257"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="269"/>
         <source>Disconnecting from network {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="262"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="274"/>
         <source>Disconnecting from server.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="645"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="661"/>
         <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="651"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="667"/>
         <source>Received unknown CTCP-{0} response from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="725"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="741"/>
         <source>Received PONG from {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55012,12 +55017,12 @@
         <translation>Opravdu chcete odebrat tyto soubory s překlady z projektu?</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="821"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/>
         <source>Write temporary project file</source>
         <translation>Zapsat dočasný soubor projektu</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="778"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/>
         <source>No translation files (*.ts) selected.</source>
         <translation>Nebyly vybrány žádné soubory s překlady (*.ts).</translation>
     </message>
@@ -55032,7 +55037,7 @@
         <translation>Generování souboru s překladem (*.ts) bylo úspěšné.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
@@ -55077,7 +55082,7 @@
         <translation>Nelze spustit {0}.&lt;br&gt;Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/>
         <source>&lt;p&gt;Could not start lrelease.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nemohu spustit zveřejnění.&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -76675,7 +76680,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="5945"/>
+        <location filename="../UI/UserInterface.py" line="5958"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Exportovat klávesové zkratky</translation>
     </message>
@@ -76695,7 +76700,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="5969"/>
+        <location filename="../UI/UserInterface.py" line="5982"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Import klávesových zkratek</translation>
     </message>
@@ -76825,7 +76830,7 @@
         <translation>Nastavení</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4789"/>
+        <location filename="../UI/UserInterface.py" line="4795"/>
         <source>Help</source>
         <translation>Nápověda</translation>
     </message>
@@ -76840,7 +76845,7 @@
         <translation>&lt;h3&gt;Čísla verzí&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6932"/>
+        <location filename="../UI/UserInterface.py" line="6945"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
@@ -76870,62 +76875,62 @@
         <translation>V aktuálním projektu není definován hlavní skript. Zrušeno</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4915"/>
+        <location filename="../UI/UserInterface.py" line="4921"/>
         <source>Problem</source>
         <translation>Problém</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5104"/>
+        <location filename="../UI/UserInterface.py" line="5110"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4789"/>
+        <location filename="../UI/UserInterface.py" line="4795"/>
         <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="4823"/>
+        <location filename="../UI/UserInterface.py" line="4829"/>
         <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="5601"/>
+        <location filename="../UI/UserInterface.py" line="5607"/>
         <source>Documentation Missing</source>
         <translation>Dokumentace chybí</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5584"/>
+        <location filename="../UI/UserInterface.py" line="5590"/>
         <source>Documentation</source>
         <translation>Dokumentace</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5398"/>
+        <location filename="../UI/UserInterface.py" line="5404"/>
         <source>&lt;p&gt;The PyQt4 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Počátek dokumentace PySide nebyl nastaven.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6138"/>
+        <location filename="../UI/UserInterface.py" line="6151"/>
         <source>Save tasks</source>
         <translation>Uložit úlohy</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6167"/>
+        <location filename="../UI/UserInterface.py" line="6180"/>
         <source>Read tasks</source>
         <translation>Načíst úlohy</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6528"/>
+        <location filename="../UI/UserInterface.py" line="6541"/>
         <source>Drop Error</source>
         <translation>Zahodit chybu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6894"/>
+        <location filename="../UI/UserInterface.py" line="6907"/>
         <source>Error during updates check</source>
         <translation>Chyba během zjišťování aktualizací</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6874"/>
+        <location filename="../UI/UserInterface.py" line="6887"/>
         <source>Update available</source>
         <translation>Byla nalezena aktualizace</translation>
     </message>
@@ -76940,17 +76945,17 @@
         <translation>Zobrazit externí nás&amp;troje</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6894"/>
+        <location filename="../UI/UserInterface.py" line="6907"/>
         <source>Could not perform updates check.</source>
         <translation>Kontrolu updatů nelze provést.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6707"/>
+        <location filename="../UI/UserInterface.py" line="6720"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Zrušit</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6969"/>
+        <location filename="../UI/UserInterface.py" line="6982"/>
         <source>First time usage</source>
         <translation>Spuštěno poprvé</translation>
     </message>
@@ -77045,7 +77050,7 @@
         <translation>Zobrazit dostupné verze ke stažení</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6918"/>
+        <location filename="../UI/UserInterface.py" line="6931"/>
         <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>
@@ -77125,7 +77130,7 @@
         <translation>Obnovit manažer nástrojových lišt...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5049"/>
+        <location filename="../UI/UserInterface.py" line="5055"/>
         <source>External Tools</source>
         <translation>Externí nástroje</translation>
     </message>
@@ -77140,12 +77145,12 @@
         <translation>Prohlížeč &amp;multiprojektu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6264"/>
+        <location filename="../UI/UserInterface.py" line="6277"/>
         <source>Save session</source>
         <translation>Uložit relaci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6248"/>
+        <location filename="../UI/UserInterface.py" line="6261"/>
         <source>Read session</source>
         <translation>Načíst relaci</translation>
     </message>
@@ -77375,7 +77380,7 @@
         <translation>Editor &amp;ikon...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4736"/>
+        <location filename="../UI/UserInterface.py" line="4742"/>
         <source>Qt 3 support</source>
         <translation>Qt 3 podpora</translation>
     </message>
@@ -77415,106 +77420,106 @@
         <translation>Externí nástroje/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4915"/>
+        <location filename="../UI/UserInterface.py" line="4921"/>
         <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="4643"/>
+        <location filename="../UI/UserInterface.py" line="4645"/>
         <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="4710"/>
+        <location filename="../UI/UserInterface.py" line="4714"/>
         <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="4761"/>
+        <location filename="../UI/UserInterface.py" line="4767"/>
         <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="4803"/>
+        <location filename="../UI/UserInterface.py" line="4809"/>
         <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="4871"/>
+        <location filename="../UI/UserInterface.py" line="4877"/>
         <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="4926"/>
+        <location filename="../UI/UserInterface.py" line="4932"/>
         <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="4947"/>
+        <location filename="../UI/UserInterface.py" line="4953"/>
         <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="5040"/>
+        <location filename="../UI/UserInterface.py" line="5046"/>
         <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="5049"/>
+        <location filename="../UI/UserInterface.py" line="5055"/>
         <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="5088"/>
+        <location filename="../UI/UserInterface.py" line="5094"/>
         <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="5104"/>
+        <location filename="../UI/UserInterface.py" line="5110"/>
         <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="5180"/>
+        <location filename="../UI/UserInterface.py" line="5186"/>
         <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="5601"/>
+        <location filename="../UI/UserInterface.py" line="5607"/>
         <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="6138"/>
+        <location filename="../UI/UserInterface.py" line="6151"/>
         <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="6167"/>
+        <location filename="../UI/UserInterface.py" line="6180"/>
         <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="6201"/>
+        <location filename="../UI/UserInterface.py" line="6214"/>
         <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="6248"/>
+        <location filename="../UI/UserInterface.py" line="6261"/>
         <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="6528"/>
+        <location filename="../UI/UserInterface.py" line="6541"/>
         <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="6716"/>
+        <location filename="../UI/UserInterface.py" line="6729"/>
         <source>Trying host {0}</source>
         <translation>Zkouším host {0}</translation>
     </message>
@@ -77549,7 +77554,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5969"/>
+        <location filename="../UI/UserInterface.py" line="5982"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77589,27 +77594,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6780"/>
+        <location filename="../UI/UserInterface.py" line="6793"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6773"/>
+        <location filename="../UI/UserInterface.py" line="6786"/>
         <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="5737"/>
+        <location filename="../UI/UserInterface.py" line="5743"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5737"/>
+        <location filename="../UI/UserInterface.py" line="5743"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6780"/>
+        <location filename="../UI/UserInterface.py" line="6793"/>
         <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>
@@ -77695,12 +77700,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5017"/>
+        <location filename="../UI/UserInterface.py" line="5023"/>
         <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="6988"/>
+        <location filename="../UI/UserInterface.py" line="7001"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78075,7 +78080,7 @@
         <translation type="unfinished">Otevřít PyQt4 dokumentaci {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5464"/>
+        <location filename="../UI/UserInterface.py" line="5470"/>
         <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>
@@ -78085,7 +78090,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6707"/>
+        <location filename="../UI/UserInterface.py" line="6720"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78105,7 +78110,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6711"/>
+        <location filename="../UI/UserInterface.py" line="6724"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78175,27 +78180,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="4736"/>
+        <location filename="../UI/UserInterface.py" line="4742"/>
         <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="6874"/>
-        <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="6887"/>
+        <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="6900"/>
         <source>Eric6 is up to date</source>
         <translation type="unfinished">Eric5 je aktuální {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6887"/>
+        <location filename="../UI/UserInterface.py" line="6900"/>
         <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="6969"/>
+        <location filename="../UI/UserInterface.py" line="6982"/>
         <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>
@@ -78215,7 +78220,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6727"/>
+        <location filename="../UI/UserInterface.py" line="6740"/>
         <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>
@@ -78260,7 +78265,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6286"/>
+        <location filename="../UI/UserInterface.py" line="6299"/>
         <source>Load session</source>
         <translation type="unfinished">Načíst relaci</translation>
     </message>
@@ -78275,17 +78280,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6286"/>
+        <location filename="../UI/UserInterface.py" line="6299"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6333"/>
+        <location filename="../UI/UserInterface.py" line="6346"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6333"/>
+        <location filename="../UI/UserInterface.py" line="6346"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78300,17 +78305,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6862"/>
+        <location filename="../UI/UserInterface.py" line="6875"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6862"/>
+        <location filename="../UI/UserInterface.py" line="6875"/>
         <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="6852"/>
+        <location filename="../UI/UserInterface.py" line="6865"/>
         <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>
@@ -78365,7 +78370,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5584"/>
+        <location filename="../UI/UserInterface.py" line="5590"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
Binary file i18n/eric6_de.qm has changed
--- a/i18n/eric6_de.ts	Fri Nov 16 20:00:03 2018 +0100
+++ b/i18n/eric6_de.ts	Sat Nov 17 12:45:58 2018 +0100
@@ -5405,32 +5405,32 @@
         <translation>&amp;Filtere mit:</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="754"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="752"/>
         <source>Code Generation</source>
         <translation>Codeerzeugung</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="620"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="618"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Codevorlagendatei „{0}“ konnte nicht geöffnet werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="656"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="654"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Quelltextdatei „{0}“ konnte nicht geöffnet werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="754"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="752"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Quelltextdatei „{0}“ konnte nicht geschrieben werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="542"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="540"/>
         <source>uic error</source>
         <translation>uic-Fehler</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="542"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="540"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es gab einen Fehler beim Laden des Formulars &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
@@ -5444,6 +5444,11 @@
         <source>The file &lt;b&gt;{0}&lt;/b&gt; exists but does not contain any classes.</source>
         <translation>Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert, enthält jedoch keine Klassen.</translation>
     </message>
+    <message>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="208"/>
+        <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Der Projekt spezifische Python Interpreter &lt;b&gt;{0}&lt;/b&gt; konnte nicht gestarted werden oder endete nicht innerhalb 30 Sekunden.&lt;/p&gt;</translation>
+    </message>
 </context>
 <context>
     <name>Crypto</name>
@@ -6660,47 +6665,47 @@
 <context>
     <name>DebuggerInterfacePython</name>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/>
         <source>Start Debugger</source>
         <translation>Debugger starten</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/>
         <source>&lt;p&gt;The debugger backend could not be started.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Debugger konnte nicht gestartet werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="936"/>
-        <source>Parent Process</source>
-        <translation>Vaterprozess</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebuggerInterfacePython.py" line="937"/>
-        <source>Child process</source>
-        <translation>Kindprozess</translation>
+        <source>Parent Process</source>
+        <translation>Vaterprozess</translation>
     </message>
     <message>
         <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/>
+        <source>Child process</source>
+        <translation>Kindprozess</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/>
         <source>Client forking</source>
         <translation>Client forkt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/>
         <source>Select the fork branch to follow.</source>
         <translation>Wähle den zu folgenden Forkpfad.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/>
         <source>Debug Protocol Error</source>
         <translation>Fehler im Debugprotokoll</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/>
         <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die vom Debugger empfangene Antwort konnte nicht dekodiert werden. Bitte berichten sie diesen Fehler zusammen mit den empfangenen Daten an die eric Bugs Emailadresse.&lt;/p&gt;&lt;p&gt;Fehler: {0}&lt;/p&gt;&lt;p&gt;Daten:&lt;br/&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="348"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="349"/>
         <source>&lt;p&gt;No suitable {0} environment configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Keine geeignete {0} Umgebung konfiguriert.&lt;/p&gt;</translation>
     </message>
@@ -41677,7 +41682,7 @@
         <translation>Wähle ein zu verbindendes Netzwerk aus</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="350"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="354"/>
         <source>Press to connect to the selected network</source>
         <translation>Drücken, um zum ausgewählten Netzwerk zu verbinden</translation>
     </message>
@@ -41707,57 +41712,57 @@
         <translation>Drücken, um den Kanal zu betreten</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/>
         <source>Save Messages</source>
         <translation>Nachrichten speichern</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="421"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="425"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation>HTML-Dateien (*.{0});;Textdateien (*.txt);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/>
         <source>Error saving Messages</source>
         <translation>Fehler beim Speichern der Nachrichten</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Nachrichteninhalt konnte nicht nach &lt;b&gt;{0}&lt;/b&gt; gespeichert werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="475"/>
         <source>Copy</source>
         <translation>Kopieren</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/>
-        <source>Cut all</source>
-        <translation>Alles ausschneiden</translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/>
+        <source>Cut all</source>
+        <translation>Alles ausschneiden</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="484"/>
         <source>Copy all</source>
         <translation>Alles kopieren</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="485"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="489"/>
         <source>Clear</source>
         <translation>Löschen</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="490"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="494"/>
         <source>Save</source>
         <translation>Speichern</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="345"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="349"/>
         <source>Press to disconnect from the network</source>
         <translation>Drücken, um die Verbindung zum Netzwerk zu beenden</translation>
     </message>
@@ -42207,253 +42212,253 @@
         <translation>Drücken, um den aktuellen Kanal zu verlassen</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="243"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="255"/>
         <source>Disconnect from Server</source>
         <translation>Verbindung zum Server beenden</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="243"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="255"/>
         <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soll die Verbindung zu &lt;b&gt;{0}&lt;/b&gt; wirklich unterbrochen werden?&lt;/p&gt;&lt;p&gt;Alle Kanäle werden geschlossen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="196"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="197"/>
         <source>SSL Connection</source>
         <translation>SSL Verbindung</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="196"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="197"/>
         <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
         <translation>Eine verschlüsselte Verbindung zum IRC-Netzwerk wurde angefragt, SSL steht jedoch nicht zur Verfügung. Bitte ändern Sie die Serverkonfiguration.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="563"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="579"/>
         <source>Info</source>
         <translation>Info</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="222"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="230"/>
         <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
         <translation>Suche nach Server {0} (Port {1}) über eine SSL verschlüsselte Verbindung...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="231"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="241"/>
         <source>Looking for server {0} (port {1})...</source>
         <translation>Suche nach Server {0} (Port {1})...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="252"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="264"/>
         <source>Disconnecting from server {0}...</source>
         <translation>Verbindung zum Server {0} wird unterbrochen...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="519"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="533"/>
         <source>Server found,connecting...</source>
         <translation>Server gefunden, Verbindung wird hergesteltl...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="528"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="542"/>
         <source>Connected,logging in...</source>
         <translation>Verbunden, Anmeldung läuft...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="563"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="579"/>
         <source>Server disconnected.</source>
         <translation>Serververbindung unterbrochen.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="626"/>
         <source>Message Error</source>
         <translation>Nachrichtenfehler</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="626"/>
         <source>Unknown message received from server:&lt;br/&gt;{0}</source>
         <translation>Unbekannte Nachricht vom Server empfangen:&lt;br/&gt;{0}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="678"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="694"/>
         <source>Notice</source>
         <translation>Notiz</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="696"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="712"/>
         <source>Mode</source>
         <translation>Modus</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="703"/>
-        <source>You have left channel {0}.</source>
-        <translation>Sie haben den Kanal {0} verlassen.</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="714"/>
-        <source>You are now known as {0}.</source>
-        <translation>Sie sind jetzt als {0} bekannt.</translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="719"/>
+        <source>You have left channel {0}.</source>
+        <translation>Sie haben den Kanal {0} verlassen.</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="730"/>
+        <source>You are now known as {0}.</source>
+        <translation>Sie sind jetzt als {0} bekannt.</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="735"/>
         <source>User {0} is now known as {1}.</source>
         <translation>Nutzer {0} ist nun als {1} bekannt.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="729"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="745"/>
         <source>Server Error</source>
         <translation>Server Fehler</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="765"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="781"/>
         <source>Error</source>
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="780"/>
-        <source>Welcome</source>
-        <translation>Willkommen</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="782"/>
-        <source>Support</source>
-        <translation>Support</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="784"/>
-        <source>User</source>
-        <translation>Nutzer</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="786"/>
-        <source>MOTD</source>
-        <translation>MOTD</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="788"/>
-        <source>Away</source>
-        <translation>Abwesend</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="790"/>
-        <source>Info ({0})</source>
-        <translation>Info ({0})</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="794"/>
-        <source>Message of the day</source>
-        <translation>Nachricht des Tages</translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="796"/>
-        <source>End of message of the day</source>
-        <translation>Ende der Nachricht des Tages</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="799"/>
-        <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
-        <translation>Server {0} (Version {1}), Benutzermodi: {2}, Kanalmodi: {3}</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="805"/>
-        <source>Current users on {0}: {1}, max. {2}</source>
-        <translation>Anzahl der Benutzer auf {0}: {1}, max. {2}</translation>
+        <source>Welcome</source>
+        <translation>Willkommen</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="798"/>
+        <source>Support</source>
+        <translation>Support</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="800"/>
+        <source>User</source>
+        <translation>Nutzer</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="802"/>
+        <source>MOTD</source>
+        <translation>MOTD</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="804"/>
+        <source>Away</source>
+        <translation>Abwesend</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="806"/>
+        <source>Info ({0})</source>
+        <translation>Info ({0})</translation>
     </message>
     <message>
         <location filename="../Network/IRC/IrcWidget.py" line="810"/>
+        <source>Message of the day</source>
+        <translation>Nachricht des Tages</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="812"/>
+        <source>End of message of the day</source>
+        <translation>Ende der Nachricht des Tages</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="815"/>
+        <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
+        <translation>Server {0} (Version {1}), Benutzermodi: {2}, Kanalmodi: {3}</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="821"/>
+        <source>Current users on {0}: {1}, max. {2}</source>
+        <translation>Anzahl der Benutzer auf {0}: {1}, max. {2}</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="826"/>
         <source>Current users on the network: {0}, max. {1}</source>
         <translation>Anzahl der Benutzer im Netzwerk: {0}, max. {1}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="814"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="830"/>
         <source>You are no longer marked as being away.</source>
         <translation>Sie sind nicht länger als „abwesend“ gekennzeichnet.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="816"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="832"/>
         <source>You have been marked as being away.</source>
         <translation>Sie sind als „abwesend“ gekennzeichnet.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="952"/>
         <source>SSL Error</source>
         <translation>SSL Fehler</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="877"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="894"/>
         <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
         <translation>Die Verbindung zum Server {0} (Port {1}) wurde während des Wartens auf eine Benutzerantwort auf einen SSL Fehler verloren.</translation>
     </message>
     <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="925"/>
+        <source>Socket Error</source>
+        <translation>Socker Fehler</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
+        <source>The host was not found. Please check the host name and port settings.</source>
+        <translation>Der Server wurde nicht gefunden. Bitte prüfen Sie den Servernamen und die Porteinstellungen.</translation>
+    </message>
+    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="908"/>
-        <source>Socket Error</source>
-        <translation>Socker Fehler</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="885"/>
-        <source>The host was not found. Please check the host name and port settings.</source>
-        <translation>Der Server wurde nicht gefunden. Bitte prüfen Sie den Servernamen und die Porteinstellungen.</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="891"/>
         <source>The connection was refused by the peer. Please check the host name and port settings.</source>
         <translation>Die Verbindung wurde von der Gegenseite abgelehnt. Bitte prüfen Sie den Servernamen und die Porteinstellungen.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="919"/>
         <source>The following network error occurred:&lt;br/&gt;{0}</source>
         <translation>Der folgende Netzwerkfehler trat auf:&lt;br/&gt;{0}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1034"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1051"/>
         <source>{0} ({1})</source>
         <comment>channel name, users count</comment>
         <translation>{0} ({1})</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1069"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1094"/>
         <source>Critical</source>
         <translation>Kritischer Fehler</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1049"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1074"/>
         <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
         <translation>Es ist kein für den Server &lt;b&gt;{0}&lt;/b&gt; akzeptabler Spitzname konfiguriert. Verbindungsabbruch...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1069"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1094"/>
         <source>The given nickname is already in use.</source>
         <translation>Der übergebene Spitzname wird bereits verwendet.</translation>
     </message>
     <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="1036"/>
+        <source>CTCP</source>
+        <translation>CTCP</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="1013"/>
+        <source>Received Version request from {0}.</source>
+        <translation>Versionsanfrage von {0} empfangen.</translation>
+    </message>
+    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="1019"/>
-        <source>CTCP</source>
-        <translation>CTCP</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="996"/>
-        <source>Received Version request from {0}.</source>
-        <translation>Versionsanfrage von {0} empfangen.</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1002"/>
         <source>Received CTCP-PING request from {0}, sending answer.</source>
         <translation>CTCP-PING-Anfrage von {0} empfangen, Antwort wird gesendet.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1010"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1027"/>
         <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
         <translation>CTCP-CLIENTINFO-Anfrage von {0} empfangen, Antwort wird gesendet.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1019"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1036"/>
         <source>Received unknown CTCP-{0} request from {1}.</source>
         <translation>Unbekannte CTCP-{0}-Anfrage von {1} empfangen.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="689"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="705"/>
         <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
         <translation>Sie haben Ihre persönlichen Modi auf &lt;b&gt;[{0}]&lt;/b&gt; gesetzt.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="693"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="709"/>
         <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
         <translation>{0} hat Ihre persönlichen Modi auf &lt;b&gt;[{0}]&lt;/b&gt; geändert.</translation>
     </message>
@@ -42468,47 +42473,47 @@
         <translation>Netzwerk</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="897"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="914"/>
         <source>The SSL handshake failed.</source>
         <translation>Der SSL Handshake schlug fehl.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="925"/>
         <source>A network error occurred.</source>
         <translation>Ein Netzwerkfehler trat auf.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="921"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="938"/>
         <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
         <translation>Es konnte keine SSL-verschlüsselte Verbindung zum Server {0} (Port {1}) aufgebaut werden. Entweder unterstützt der Server kein SSL (haben Sie den richtigen Port verwendet?) oder Sie haben das Zertifikat abgelehnt.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="952"/>
         <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
         <translation>Das SSL-Zertifikat für den Server {0} (Port {1}) hat die Authentizitätsprüfung nicht bestanden. Die SSL-Fehler wurden von Ihnen akzeptiert.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="257"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="269"/>
         <source>Disconnecting from network {0}...</source>
         <translation>Verbindung zum Netzwerk {0} wird unterbrochen...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="262"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="274"/>
         <source>Disconnecting from server.</source>
         <translation>Verbindung zum Server wird unterbrochen.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="645"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="661"/>
         <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
         <translation>CTCP-PING-Antwort von {0} mit einer Latenz von {1} ms empfangen.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="651"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="667"/>
         <source>Received unknown CTCP-{0} response from {1}.</source>
         <translation>Unbekannte CTCP-{0}-Antwort von {1} empfangen.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="725"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="741"/>
         <source>Received PONG from {0}</source>
         <translation>PONG von {0} empfangen</translation>
     </message>
@@ -53659,12 +53664,12 @@
         <translation>Mit Qt Linguist öffnen</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="821"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/>
         <source>Write temporary project file</source>
         <translation>Temporäre Projektdatei schreiben</translation>
     </message>
@@ -53709,7 +53714,7 @@
         <translation>&lt;p&gt;Die temporäre Projektdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geschrieben werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/>
         <source>&lt;p&gt;Could not start lrelease.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;lrelease 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>
@@ -53734,7 +53739,7 @@
         <translation>Wollen Sie wirklich diese Übersetzungsdateien aus dem Projekt löschen?</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="778"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/>
         <source>No translation files (*.ts) selected.</source>
         <translation>Keine Überstzungsdateien (*.ts) ausgewählt.</translation>
     </message>
@@ -74667,7 +74672,7 @@
         <translation>Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4789"/>
+        <location filename="../UI/UserInterface.py" line="4795"/>
         <source>Help</source>
         <translation>Hilfe</translation>
     </message>
@@ -74677,7 +74682,7 @@
         <translation>&amp;Werkzeugleisten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4915"/>
+        <location filename="../UI/UserInterface.py" line="4921"/>
         <source>Problem</source>
         <translation>Problem</translation>
     </message>
@@ -74697,7 +74702,7 @@
         <translation>&amp;Was ist das?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5104"/>
+        <location filename="../UI/UserInterface.py" line="5110"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
@@ -74787,7 +74792,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="5945"/>
+        <location filename="../UI/UserInterface.py" line="5958"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Tastaturkurzbefehle exportieren</translation>
     </message>
@@ -74807,7 +74812,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="5969"/>
+        <location filename="../UI/UserInterface.py" line="5982"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Tastaturkurzbefehle importieren</translation>
     </message>
@@ -74967,7 +74972,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="6528"/>
+        <location filename="../UI/UserInterface.py" line="6541"/>
         <source>Drop Error</source>
         <translation>Drop-Fehler</translation>
     </message>
@@ -75037,32 +75042,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="4915"/>
+        <location filename="../UI/UserInterface.py" line="4921"/>
         <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="4643"/>
+        <location filename="../UI/UserInterface.py" line="4645"/>
         <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="4710"/>
+        <location filename="../UI/UserInterface.py" line="4714"/>
         <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="4761"/>
+        <location filename="../UI/UserInterface.py" line="4767"/>
         <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="5104"/>
+        <location filename="../UI/UserInterface.py" line="5110"/>
         <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="6528"/>
+        <location filename="../UI/UserInterface.py" line="6541"/>
         <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>
@@ -75087,7 +75092,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="4871"/>
+        <location filename="../UI/UserInterface.py" line="4877"/>
         <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>
@@ -75112,7 +75117,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="4926"/>
+        <location filename="../UI/UserInterface.py" line="4932"/>
         <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>
@@ -75152,42 +75157,42 @@
         <translation>Aufgabenanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6138"/>
+        <location filename="../UI/UserInterface.py" line="6151"/>
         <source>Save tasks</source>
         <translation>Aufgaben speichern</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6138"/>
+        <location filename="../UI/UserInterface.py" line="6151"/>
         <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="6167"/>
+        <location filename="../UI/UserInterface.py" line="6180"/>
         <source>Read tasks</source>
         <translation>Aufgaben lesen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6167"/>
+        <location filename="../UI/UserInterface.py" line="6180"/>
         <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="4789"/>
+        <location filename="../UI/UserInterface.py" line="4795"/>
         <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="4803"/>
+        <location filename="../UI/UserInterface.py" line="4809"/>
         <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="5601"/>
+        <location filename="../UI/UserInterface.py" line="5607"/>
         <source>Documentation Missing</source>
         <translation>Dokumentation fehlt</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5601"/>
+        <location filename="../UI/UserInterface.py" line="5607"/>
         <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>
@@ -75287,7 +75292,7 @@
         <translation>Öffne die Eric-API-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4823"/>
+        <location filename="../UI/UserInterface.py" line="4829"/>
         <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>
@@ -75368,36 +75373,36 @@
         <translation>&amp;Eingebaute Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5088"/>
+        <location filename="../UI/UserInterface.py" line="5094"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Starte Prozess „{0} {1}“.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5180"/>
+        <location filename="../UI/UserInterface.py" line="5186"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>Prozess „{0}“ ist beendet.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5584"/>
+        <location filename="../UI/UserInterface.py" line="5590"/>
         <source>Documentation</source>
         <translation>Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5398"/>
+        <location filename="../UI/UserInterface.py" line="5404"/>
         <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="6894"/>
+        <location filename="../UI/UserInterface.py" line="6907"/>
         <source>Error during updates check</source>
         <translation>Fehler während der Aktualisierungsprüfung</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6874"/>
+        <location filename="../UI/UserInterface.py" line="6887"/>
         <source>Update available</source>
         <translation>Aktualisierung verfügbar</translation>
     </message>
@@ -75407,7 +75412,7 @@
         <translation>&lt;h3&gt;Versionsnummern&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6932"/>
+        <location filename="../UI/UserInterface.py" line="6945"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
@@ -75432,22 +75437,22 @@
         <translation>Zeige externe &amp;Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6894"/>
+        <location filename="../UI/UserInterface.py" line="6907"/>
         <source>Could not perform updates check.</source>
         <translation>Konnte keine Aktualisierungsprüfung durchführen.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6707"/>
+        <location filename="../UI/UserInterface.py" line="6720"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Abbrechen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6716"/>
+        <location filename="../UI/UserInterface.py" line="6729"/>
         <source>Trying host {0}</source>
         <translation>Prüfe Host {0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6969"/>
+        <location filename="../UI/UserInterface.py" line="6982"/>
         <source>First time usage</source>
         <translation>Erstmalige Nutzung</translation>
     </message>
@@ -75542,7 +75547,7 @@
         <translation>Zeige die verfügbaren eric-Versionen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6918"/>
+        <location filename="../UI/UserInterface.py" line="6931"/>
         <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>
@@ -75627,17 +75632,17 @@
         <translation>Externe Werkzeuge/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5049"/>
+        <location filename="../UI/UserInterface.py" line="5055"/>
         <source>External Tools</source>
         <translation>Externe Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5040"/>
+        <location filename="../UI/UserInterface.py" line="5046"/>
         <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="5049"/>
+        <location filename="../UI/UserInterface.py" line="5055"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation>Kein Werkzeuggruppeneintrag „{0}“ gefunden.</translation>
     </message>
@@ -75652,22 +75657,22 @@
         <translation>&amp;Mehrfachprojektanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6264"/>
+        <location filename="../UI/UserInterface.py" line="6277"/>
         <source>Save session</source>
         <translation>Sitzung speichern</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6201"/>
+        <location filename="../UI/UserInterface.py" line="6214"/>
         <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="6248"/>
+        <location filename="../UI/UserInterface.py" line="6261"/>
         <source>Read session</source>
         <translation>Sitzung lesen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6248"/>
+        <location filename="../UI/UserInterface.py" line="6261"/>
         <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>
@@ -75887,7 +75892,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="4947"/>
+        <location filename="../UI/UserInterface.py" line="4953"/>
         <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>
@@ -75902,7 +75907,7 @@
         <translation>&amp;Icon-Editor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4736"/>
+        <location filename="../UI/UserInterface.py" line="4742"/>
         <source>Qt 3 support</source>
         <translation>Qt3-Unterstützung</translation>
     </message>
@@ -75952,7 +75957,7 @@
         <translation>Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5969"/>
+        <location filename="../UI/UserInterface.py" line="5982"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation>Tastaturkurzbefehlsdatei (*.e4k)</translation>
     </message>
@@ -75992,27 +75997,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="6780"/>
+        <location filename="../UI/UserInterface.py" line="6793"/>
         <source>Error getting versions information</source>
         <translation>Fehler beim Herunterladen der Versionsinformationen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6773"/>
+        <location filename="../UI/UserInterface.py" line="6786"/>
         <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="5737"/>
+        <location filename="../UI/UserInterface.py" line="5743"/>
         <source>Open Browser</source>
         <translation>Browser starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5737"/>
+        <location filename="../UI/UserInterface.py" line="5743"/>
         <source>Could not start a web browser</source>
         <translation>Der Systemwebbrowser konnte nicht gestartet werden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6780"/>
+        <location filename="../UI/UserInterface.py" line="6793"/>
         <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>
@@ -76098,12 +76103,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="5017"/>
+        <location filename="../UI/UserInterface.py" line="5023"/>
         <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="6988"/>
+        <location filename="../UI/UserInterface.py" line="7001"/>
         <source>Select Workspace Directory</source>
         <translation>Wähle Arbeitsverzeichnis</translation>
     </message>
@@ -76478,7 +76483,7 @@
         <translation>Öffne die PyQt5-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5464"/>
+        <location filename="../UI/UserInterface.py" line="5470"/>
         <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>
@@ -76488,7 +76493,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="6707"/>
+        <location filename="../UI/UserInterface.py" line="6720"/>
         <source>%v/%m</source>
         <translation>%v/%m</translation>
     </message>
@@ -76508,7 +76513,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="6711"/>
+        <location filename="../UI/UserInterface.py" line="6724"/>
         <source>Version Check</source>
         <translation>Versionsprüfung</translation>
     </message>
@@ -76579,27 +76584,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="4736"/>
+        <location filename="../UI/UserInterface.py" line="4742"/>
         <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="6874"/>
-        <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="6887"/>
+        <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="6900"/>
         <source>Eric6 is up to date</source>
         <translation>Eric6 ist aktuell</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6887"/>
+        <location filename="../UI/UserInterface.py" line="6900"/>
         <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="6969"/>
+        <location filename="../UI/UserInterface.py" line="6982"/>
         <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>
@@ -76619,7 +76624,7 @@
         <translation>Keine Benutzerwerkzeuge konfiguriert</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6727"/>
+        <location filename="../UI/UserInterface.py" line="6740"/>
         <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>
@@ -76664,7 +76669,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="6286"/>
+        <location filename="../UI/UserInterface.py" line="6299"/>
         <source>Load session</source>
         <translation>Sitzung laden</translation>
     </message>
@@ -76679,17 +76684,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="6286"/>
+        <location filename="../UI/UserInterface.py" line="6299"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation>eric6 Sitzungsdateien (*.e5s)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6333"/>
+        <location filename="../UI/UserInterface.py" line="6346"/>
         <source>Crash Session found!</source>
         <translation>Absturzsitzung gefunden!</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6333"/>
+        <location filename="../UI/UserInterface.py" line="6346"/>
         <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>
@@ -76704,17 +76709,17 @@
         <translation>Initialisiere Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6862"/>
+        <location filename="../UI/UserInterface.py" line="6875"/>
         <source>Update Check</source>
         <translation>Aktualisierungsprüfung</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6862"/>
+        <location filename="../UI/UserInterface.py" line="6875"/>
         <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="6852"/>
+        <location filename="../UI/UserInterface.py" line="6865"/>
         <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>
@@ -76769,7 +76774,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="5584"/>
+        <location filename="../UI/UserInterface.py" line="5590"/>
         <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>
--- a/i18n/eric6_empty.ts	Fri Nov 16 20:00:03 2018 +0100
+++ b/i18n/eric6_empty.ts	Sat Nov 17 12:45:58 2018 +0100
@@ -5364,35 +5364,40 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="542"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="539"/>
         <source>uic error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="542"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="539"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="754"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="751"/>
         <source>Code Generation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="620"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="617"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="656"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="653"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="754"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="751"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="207"/>
+        <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>Crypto</name>
@@ -6592,47 +6597,47 @@
 <context>
     <name>DebuggerInterfacePython</name>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/>
         <source>Start Debugger</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/>
         <source>&lt;p&gt;The debugger backend could not be started.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="936"/>
-        <source>Parent Process</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebuggerInterfacePython.py" line="937"/>
-        <source>Child process</source>
+        <source>Parent Process</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/>
+        <source>Child process</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/>
         <source>Client forking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/>
         <source>Select the fork branch to follow.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/>
         <source>Debug Protocol Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/>
         <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="348"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="349"/>
         <source>&lt;p&gt;No suitable {0} environment configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41466,62 +41471,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="345"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="349"/>
         <source>Press to disconnect from the network</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="350"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="354"/>
         <source>Press to connect to the selected network</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/>
         <source>Save Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="421"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="425"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/>
         <source>Error saving Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="475"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/>
-        <source>Cut all</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/>
+        <source>Cut all</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="484"/>
         <source>Copy all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="485"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="489"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="490"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="494"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41981,298 +41986,298 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="243"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="255"/>
         <source>Disconnect from Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="243"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="255"/>
         <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="196"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="197"/>
         <source>SSL Connection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="196"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="197"/>
         <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="563"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="579"/>
         <source>Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="222"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="230"/>
         <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="231"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="241"/>
         <source>Looking for server {0} (port {1})...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="252"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="264"/>
         <source>Disconnecting from server {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="257"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="269"/>
         <source>Disconnecting from network {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="262"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="274"/>
         <source>Disconnecting from server.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="519"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="533"/>
         <source>Server found,connecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="528"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="542"/>
         <source>Connected,logging in...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="563"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="579"/>
         <source>Server disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="626"/>
         <source>Message Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="626"/>
         <source>Unknown message received from server:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="678"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="694"/>
         <source>Notice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="689"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="705"/>
         <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="693"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="709"/>
         <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="696"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="712"/>
         <source>Mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="703"/>
-        <source>You have left channel {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="714"/>
-        <source>You are now known as {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="719"/>
+        <source>You have left channel {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="730"/>
+        <source>You are now known as {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="735"/>
         <source>User {0} is now known as {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="729"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="745"/>
         <source>Server Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="765"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="781"/>
         <source>Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="780"/>
-        <source>Welcome</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="782"/>
-        <source>Support</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="784"/>
-        <source>User</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="786"/>
-        <source>MOTD</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="788"/>
-        <source>Away</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="790"/>
-        <source>Info ({0})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="794"/>
-        <source>Message of the day</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="796"/>
-        <source>End of message of the day</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="799"/>
-        <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="805"/>
-        <source>Current users on {0}: {1}, max. {2}</source>
+        <source>Welcome</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="798"/>
+        <source>Support</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="800"/>
+        <source>User</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="802"/>
+        <source>MOTD</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="804"/>
+        <source>Away</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="806"/>
+        <source>Info ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Network/IRC/IrcWidget.py" line="810"/>
+        <source>Message of the day</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="812"/>
+        <source>End of message of the day</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="815"/>
+        <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="821"/>
+        <source>Current users on {0}: {1}, max. {2}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="826"/>
         <source>Current users on the network: {0}, max. {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="814"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="830"/>
         <source>You are no longer marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="816"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="832"/>
         <source>You have been marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="952"/>
         <source>SSL Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="877"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="894"/>
         <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="925"/>
+        <source>Socket Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
+        <source>The host was not found. Please check the host name and port settings.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="908"/>
-        <source>Socket Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="885"/>
-        <source>The host was not found. Please check the host name and port settings.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="891"/>
         <source>The connection was refused by the peer. Please check the host name and port settings.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="897"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="914"/>
         <source>The SSL handshake failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="919"/>
         <source>The following network error occurred:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="925"/>
         <source>A network error occurred.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="921"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="938"/>
         <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="952"/>
         <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="1036"/>
+        <source>CTCP</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="1013"/>
+        <source>Received Version request from {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="1019"/>
-        <source>CTCP</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="996"/>
-        <source>Received Version request from {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1002"/>
         <source>Received CTCP-PING request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1010"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1027"/>
         <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1019"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1036"/>
         <source>Received unknown CTCP-{0} request from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1034"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1051"/>
         <source>{0} ({1})</source>
         <comment>channel name, users count</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1069"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1094"/>
         <source>Critical</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1049"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1074"/>
         <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1069"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1094"/>
         <source>The given nickname is already in use.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="645"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="661"/>
         <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="651"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="667"/>
         <source>Received unknown CTCP-{0} response from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="725"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="741"/>
         <source>Received PONG from {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53470,12 +53475,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="821"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/>
         <source>Write temporary project file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="778"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/>
         <source>No translation files (*.ts) selected.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53505,7 +53510,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53530,7 +53535,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/>
         <source>&lt;p&gt;Could not start lrelease.&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>
@@ -75217,7 +75222,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5945"/>
+        <location filename="../UI/UserInterface.py" line="5958"/>
         <source>Export Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75237,7 +75242,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5969"/>
+        <location filename="../UI/UserInterface.py" line="5982"/>
         <source>Import Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75617,7 +75622,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4789"/>
+        <location filename="../UI/UserInterface.py" line="4795"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75677,7 +75682,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6932"/>
+        <location filename="../UI/UserInterface.py" line="6945"/>
         <source>&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75742,289 +75747,289 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4736"/>
+        <location filename="../UI/UserInterface.py" line="4742"/>
         <source>Qt 3 support</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4736"/>
+        <location filename="../UI/UserInterface.py" line="4742"/>
         <source>Qt v.3 is not supported by eric6.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4915"/>
+        <location filename="../UI/UserInterface.py" line="4921"/>
         <source>Problem</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4915"/>
+        <location filename="../UI/UserInterface.py" line="4921"/>
         <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="5104"/>
+        <location filename="../UI/UserInterface.py" line="5110"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4643"/>
+        <location filename="../UI/UserInterface.py" line="4645"/>
         <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="4710"/>
+        <location filename="../UI/UserInterface.py" line="4714"/>
         <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="4761"/>
+        <location filename="../UI/UserInterface.py" line="4767"/>
         <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="4789"/>
+        <location filename="../UI/UserInterface.py" line="4795"/>
         <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="4803"/>
+        <location filename="../UI/UserInterface.py" line="4809"/>
         <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="4823"/>
+        <location filename="../UI/UserInterface.py" line="4829"/>
         <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="4871"/>
+        <location filename="../UI/UserInterface.py" line="4877"/>
         <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="4926"/>
+        <location filename="../UI/UserInterface.py" line="4932"/>
         <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="4947"/>
+        <location filename="../UI/UserInterface.py" line="4953"/>
         <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="5017"/>
+        <location filename="../UI/UserInterface.py" line="5023"/>
         <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="5049"/>
+        <location filename="../UI/UserInterface.py" line="5055"/>
         <source>External Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5040"/>
+        <location filename="../UI/UserInterface.py" line="5046"/>
         <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="5049"/>
+        <location filename="../UI/UserInterface.py" line="5055"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5088"/>
+        <location filename="../UI/UserInterface.py" line="5094"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5104"/>
+        <location filename="../UI/UserInterface.py" line="5110"/>
         <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="5180"/>
+        <location filename="../UI/UserInterface.py" line="5186"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5601"/>
+        <location filename="../UI/UserInterface.py" line="5607"/>
         <source>Documentation Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5601"/>
+        <location filename="../UI/UserInterface.py" line="5607"/>
         <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="5584"/>
+        <location filename="../UI/UserInterface.py" line="5590"/>
         <source>Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5398"/>
+        <location filename="../UI/UserInterface.py" line="5404"/>
         <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="5464"/>
+        <location filename="../UI/UserInterface.py" line="5470"/>
         <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="5737"/>
+        <location filename="../UI/UserInterface.py" line="5743"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5737"/>
+        <location filename="../UI/UserInterface.py" line="5743"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5969"/>
+        <location filename="../UI/UserInterface.py" line="5982"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6138"/>
+        <location filename="../UI/UserInterface.py" line="6151"/>
         <source>Save tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6138"/>
+        <location filename="../UI/UserInterface.py" line="6151"/>
         <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="6167"/>
+        <location filename="../UI/UserInterface.py" line="6180"/>
         <source>Read tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6167"/>
+        <location filename="../UI/UserInterface.py" line="6180"/>
         <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="6264"/>
+        <location filename="../UI/UserInterface.py" line="6277"/>
         <source>Save session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6201"/>
+        <location filename="../UI/UserInterface.py" line="6214"/>
         <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="6248"/>
+        <location filename="../UI/UserInterface.py" line="6261"/>
         <source>Read session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6248"/>
+        <location filename="../UI/UserInterface.py" line="6261"/>
         <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="6528"/>
+        <location filename="../UI/UserInterface.py" line="6541"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6528"/>
+        <location filename="../UI/UserInterface.py" line="6541"/>
         <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="6707"/>
+        <location filename="../UI/UserInterface.py" line="6720"/>
         <source>&amp;Cancel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6707"/>
+        <location filename="../UI/UserInterface.py" line="6720"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6711"/>
+        <location filename="../UI/UserInterface.py" line="6724"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6716"/>
+        <location filename="../UI/UserInterface.py" line="6729"/>
         <source>Trying host {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6780"/>
+        <location filename="../UI/UserInterface.py" line="6793"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6727"/>
+        <location filename="../UI/UserInterface.py" line="6740"/>
         <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="6773"/>
+        <location filename="../UI/UserInterface.py" line="6786"/>
         <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="6780"/>
+        <location filename="../UI/UserInterface.py" line="6793"/>
         <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="6874"/>
-        <source>Update available</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6874"/>
-        <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="6887"/>
-        <source>Eric6 is up to date</source>
+        <source>Update available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="6887"/>
+        <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="6900"/>
+        <source>Eric6 is up to date</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6900"/>
         <source>You are using the latest version of eric6</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6894"/>
+        <location filename="../UI/UserInterface.py" line="6907"/>
         <source>Error during updates check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6894"/>
+        <location filename="../UI/UserInterface.py" line="6907"/>
         <source>Could not perform updates check.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6918"/>
+        <location filename="../UI/UserInterface.py" line="6931"/>
         <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="6969"/>
+        <location filename="../UI/UserInterface.py" line="6982"/>
         <source>First time usage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6969"/>
+        <location filename="../UI/UserInterface.py" line="6982"/>
         <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="6988"/>
+        <location filename="../UI/UserInterface.py" line="7001"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76039,7 +76044,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6286"/>
+        <location filename="../UI/UserInterface.py" line="6299"/>
         <source>Load session</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76054,17 +76059,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6286"/>
+        <location filename="../UI/UserInterface.py" line="6299"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6333"/>
+        <location filename="../UI/UserInterface.py" line="6346"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6333"/>
+        <location filename="../UI/UserInterface.py" line="6346"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76079,17 +76084,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6862"/>
+        <location filename="../UI/UserInterface.py" line="6875"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6862"/>
+        <location filename="../UI/UserInterface.py" line="6875"/>
         <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="6852"/>
+        <location filename="../UI/UserInterface.py" line="6865"/>
         <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>
@@ -76144,7 +76149,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5584"/>
+        <location filename="../UI/UserInterface.py" line="5590"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
--- a/i18n/eric6_en.ts	Fri Nov 16 20:00:03 2018 +0100
+++ b/i18n/eric6_en.ts	Sat Nov 17 12:45:58 2018 +0100
@@ -5371,35 +5371,40 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="542"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="539"/>
         <source>uic error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="542"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="539"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="754"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="751"/>
         <source>Code Generation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="620"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="617"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="656"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="653"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="754"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="751"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="207"/>
+        <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>Crypto</name>
@@ -6599,47 +6604,47 @@
 <context>
     <name>DebuggerInterfacePython</name>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/>
         <source>Start Debugger</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/>
         <source>&lt;p&gt;The debugger backend could not be started.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="936"/>
-        <source>Parent Process</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebuggerInterfacePython.py" line="937"/>
-        <source>Child process</source>
+        <source>Parent Process</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/>
+        <source>Child process</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/>
         <source>Client forking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/>
         <source>Select the fork branch to follow.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/>
         <source>Debug Protocol Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/>
         <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="348"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="349"/>
         <source>&lt;p&gt;No suitable {0} environment configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41486,7 +41491,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="350"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="354"/>
         <source>Press to connect to the selected network</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41516,57 +41521,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/>
         <source>Save Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="421"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="425"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/>
         <source>Error saving Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="475"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/>
-        <source>Cut all</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/>
+        <source>Cut all</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="484"/>
         <source>Copy all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="485"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="489"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="490"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="494"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="345"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="349"/>
         <source>Press to disconnect from the network</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42016,253 +42021,253 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="243"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="255"/>
         <source>Disconnect from Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="243"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="255"/>
         <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="196"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="197"/>
         <source>SSL Connection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="196"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="197"/>
         <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="563"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="579"/>
         <source>Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="222"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="230"/>
         <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="231"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="241"/>
         <source>Looking for server {0} (port {1})...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="252"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="264"/>
         <source>Disconnecting from server {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="519"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="533"/>
         <source>Server found,connecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="528"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="542"/>
         <source>Connected,logging in...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="563"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="579"/>
         <source>Server disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="626"/>
         <source>Message Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="626"/>
         <source>Unknown message received from server:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="678"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="694"/>
         <source>Notice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="696"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="712"/>
         <source>Mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="703"/>
-        <source>You have left channel {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="714"/>
-        <source>You are now known as {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="719"/>
+        <source>You have left channel {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="730"/>
+        <source>You are now known as {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="735"/>
         <source>User {0} is now known as {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="729"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="745"/>
         <source>Server Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="765"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="781"/>
         <source>Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="780"/>
-        <source>Welcome</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="782"/>
-        <source>Support</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="784"/>
-        <source>User</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="786"/>
-        <source>MOTD</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="788"/>
-        <source>Away</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="790"/>
-        <source>Info ({0})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="794"/>
-        <source>Message of the day</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="796"/>
-        <source>End of message of the day</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="799"/>
-        <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="805"/>
-        <source>Current users on {0}: {1}, max. {2}</source>
+        <source>Welcome</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="798"/>
+        <source>Support</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="800"/>
+        <source>User</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="802"/>
+        <source>MOTD</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="804"/>
+        <source>Away</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="806"/>
+        <source>Info ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Network/IRC/IrcWidget.py" line="810"/>
+        <source>Message of the day</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="812"/>
+        <source>End of message of the day</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="815"/>
+        <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="821"/>
+        <source>Current users on {0}: {1}, max. {2}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="826"/>
         <source>Current users on the network: {0}, max. {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="814"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="830"/>
         <source>You are no longer marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="816"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="832"/>
         <source>You have been marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="952"/>
         <source>SSL Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="877"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="894"/>
         <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="925"/>
         <source>Socket Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="885"/>
-        <source>The host was not found. Please check the host name and port settings.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="891"/>
-        <source>The connection was refused by the peer. Please check the host name and port settings.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="902"/>
+        <source>The host was not found. Please check the host name and port settings.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
+        <source>The connection was refused by the peer. Please check the host name and port settings.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="919"/>
         <source>The following network error occurred:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1034"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1051"/>
         <source>{0} ({1})</source>
         <comment>channel name, users count</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1069"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1094"/>
         <source>Critical</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1049"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1074"/>
         <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1069"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1094"/>
         <source>The given nickname is already in use.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="1036"/>
+        <source>CTCP</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="1013"/>
+        <source>Received Version request from {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="1019"/>
-        <source>CTCP</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="996"/>
-        <source>Received Version request from {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1002"/>
         <source>Received CTCP-PING request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1010"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1027"/>
         <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1019"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1036"/>
         <source>Received unknown CTCP-{0} request from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="689"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="705"/>
         <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="693"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="709"/>
         <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42277,47 +42282,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="897"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="914"/>
         <source>The SSL handshake failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="925"/>
         <source>A network error occurred.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="921"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="938"/>
         <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="952"/>
         <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="257"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="269"/>
         <source>Disconnecting from network {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="262"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="274"/>
         <source>Disconnecting from server.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="645"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="661"/>
         <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="651"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="667"/>
         <source>Received unknown CTCP-{0} response from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="725"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="741"/>
         <source>Received PONG from {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53513,12 +53518,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="821"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/>
         <source>Write temporary project file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="778"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/>
         <source>No translation files (*.ts) selected.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53538,7 +53543,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53563,7 +53568,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/>
         <source>&lt;p&gt;Could not start lrelease.&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>
@@ -74801,7 +74806,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5945"/>
+        <location filename="../UI/UserInterface.py" line="5958"/>
         <source>Export Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74821,7 +74826,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5969"/>
+        <location filename="../UI/UserInterface.py" line="5982"/>
         <source>Import Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75066,7 +75071,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4789"/>
+        <location filename="../UI/UserInterface.py" line="4795"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75121,7 +75126,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6932"/>
+        <location filename="../UI/UserInterface.py" line="6945"/>
         <source>&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75176,209 +75181,209 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4736"/>
+        <location filename="../UI/UserInterface.py" line="4742"/>
         <source>Qt 3 support</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4915"/>
+        <location filename="../UI/UserInterface.py" line="4921"/>
         <source>Problem</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4915"/>
+        <location filename="../UI/UserInterface.py" line="4921"/>
         <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="5104"/>
+        <location filename="../UI/UserInterface.py" line="5110"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4643"/>
+        <location filename="../UI/UserInterface.py" line="4645"/>
         <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="4710"/>
+        <location filename="../UI/UserInterface.py" line="4714"/>
         <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="4761"/>
+        <location filename="../UI/UserInterface.py" line="4767"/>
         <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="4789"/>
+        <location filename="../UI/UserInterface.py" line="4795"/>
         <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="4803"/>
+        <location filename="../UI/UserInterface.py" line="4809"/>
         <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="4823"/>
+        <location filename="../UI/UserInterface.py" line="4829"/>
         <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="4871"/>
+        <location filename="../UI/UserInterface.py" line="4877"/>
         <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="4926"/>
+        <location filename="../UI/UserInterface.py" line="4932"/>
         <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="4947"/>
+        <location filename="../UI/UserInterface.py" line="4953"/>
         <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="5049"/>
+        <location filename="../UI/UserInterface.py" line="5055"/>
         <source>External Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5040"/>
+        <location filename="../UI/UserInterface.py" line="5046"/>
         <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="5049"/>
+        <location filename="../UI/UserInterface.py" line="5055"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5088"/>
+        <location filename="../UI/UserInterface.py" line="5094"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5104"/>
+        <location filename="../UI/UserInterface.py" line="5110"/>
         <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="5180"/>
+        <location filename="../UI/UserInterface.py" line="5186"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5601"/>
+        <location filename="../UI/UserInterface.py" line="5607"/>
         <source>Documentation Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5601"/>
+        <location filename="../UI/UserInterface.py" line="5607"/>
         <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="5584"/>
+        <location filename="../UI/UserInterface.py" line="5590"/>
         <source>Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5398"/>
+        <location filename="../UI/UserInterface.py" line="5404"/>
         <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="5969"/>
+        <location filename="../UI/UserInterface.py" line="5982"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6138"/>
+        <location filename="../UI/UserInterface.py" line="6151"/>
         <source>Save tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6138"/>
+        <location filename="../UI/UserInterface.py" line="6151"/>
         <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="6167"/>
+        <location filename="../UI/UserInterface.py" line="6180"/>
         <source>Read tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6167"/>
+        <location filename="../UI/UserInterface.py" line="6180"/>
         <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="6264"/>
+        <location filename="../UI/UserInterface.py" line="6277"/>
         <source>Save session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6201"/>
+        <location filename="../UI/UserInterface.py" line="6214"/>
         <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="6248"/>
+        <location filename="../UI/UserInterface.py" line="6261"/>
         <source>Read session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6248"/>
+        <location filename="../UI/UserInterface.py" line="6261"/>
         <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="6528"/>
+        <location filename="../UI/UserInterface.py" line="6541"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6528"/>
+        <location filename="../UI/UserInterface.py" line="6541"/>
         <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="6707"/>
+        <location filename="../UI/UserInterface.py" line="6720"/>
         <source>&amp;Cancel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6716"/>
+        <location filename="../UI/UserInterface.py" line="6729"/>
         <source>Trying host {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6874"/>
+        <location filename="../UI/UserInterface.py" line="6887"/>
         <source>Update available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6894"/>
+        <location filename="../UI/UserInterface.py" line="6907"/>
         <source>Error during updates check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6894"/>
+        <location filename="../UI/UserInterface.py" line="6907"/>
         <source>Could not perform updates check.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6918"/>
+        <location filename="../UI/UserInterface.py" line="6931"/>
         <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="6969"/>
+        <location filename="../UI/UserInterface.py" line="6982"/>
         <source>First time usage</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75418,27 +75423,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6780"/>
+        <location filename="../UI/UserInterface.py" line="6793"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6773"/>
+        <location filename="../UI/UserInterface.py" line="6786"/>
         <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="5737"/>
+        <location filename="../UI/UserInterface.py" line="5743"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5737"/>
+        <location filename="../UI/UserInterface.py" line="5743"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6780"/>
+        <location filename="../UI/UserInterface.py" line="6793"/>
         <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>
@@ -75524,12 +75529,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5017"/>
+        <location filename="../UI/UserInterface.py" line="5023"/>
         <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="6988"/>
+        <location filename="../UI/UserInterface.py" line="7001"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75904,7 +75909,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5464"/>
+        <location filename="../UI/UserInterface.py" line="5470"/>
         <source>&lt;p&gt;The PyQt5 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75914,7 +75919,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6707"/>
+        <location filename="../UI/UserInterface.py" line="6720"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75934,7 +75939,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6711"/>
+        <location filename="../UI/UserInterface.py" line="6724"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76004,27 +76009,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4736"/>
+        <location filename="../UI/UserInterface.py" line="4742"/>
         <source>Qt v.3 is not supported by eric6.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6874"/>
-        <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="6887"/>
+        <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="6900"/>
         <source>Eric6 is up to date</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6887"/>
+        <location filename="../UI/UserInterface.py" line="6900"/>
         <source>You are using the latest version of eric6</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6969"/>
+        <location filename="../UI/UserInterface.py" line="6982"/>
         <source>eric6 has not been configured yet. The configuration dialog will be started.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76044,7 +76049,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6727"/>
+        <location filename="../UI/UserInterface.py" line="6740"/>
         <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>
@@ -76089,7 +76094,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6286"/>
+        <location filename="../UI/UserInterface.py" line="6299"/>
         <source>Load session</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76104,17 +76109,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6286"/>
+        <location filename="../UI/UserInterface.py" line="6299"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6333"/>
+        <location filename="../UI/UserInterface.py" line="6346"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6333"/>
+        <location filename="../UI/UserInterface.py" line="6346"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76129,17 +76134,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6862"/>
+        <location filename="../UI/UserInterface.py" line="6875"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6862"/>
+        <location filename="../UI/UserInterface.py" line="6875"/>
         <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="6852"/>
+        <location filename="../UI/UserInterface.py" line="6865"/>
         <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>
@@ -76194,7 +76199,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5584"/>
+        <location filename="../UI/UserInterface.py" line="5590"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
--- a/i18n/eric6_es.ts	Fri Nov 16 20:00:03 2018 +0100
+++ b/i18n/eric6_es.ts	Sat Nov 17 12:45:58 2018 +0100
@@ -5400,12 +5400,12 @@
         <translation>Filtrar c&amp;on:</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="542"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="539"/>
         <source>uic error</source>
         <translation>error de uic</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="754"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="751"/>
         <source>Code Generation</source>
         <translation>Generación de Código</translation>
     </message>
@@ -5420,25 +5420,30 @@
         <translation>El archivo &lt;b&gt;{0}&lt;/b&gt; existe pero no contiene ninguna clase.</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="542"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="539"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ha ocurrido un error al cargar el formulario &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="620"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="617"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido cargar el archivo con la plantilla de código &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="656"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="653"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido abrir el archivo de codigo fuente &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="754"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="751"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido escribir en el archivo de codigo fuente &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
+    <message>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="207"/>
+        <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>Crypto</name>
@@ -6656,47 +6661,47 @@
 <context>
     <name>DebuggerInterfacePython</name>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/>
         <source>Start Debugger</source>
         <translation>Iniciar Depurador</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/>
         <source>&lt;p&gt;The debugger backend could not be started.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No ha sido posible lanzar el extremo del depurador.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="936"/>
-        <source>Parent Process</source>
-        <translation>Proceso Padre</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebuggerInterfacePython.py" line="937"/>
-        <source>Child process</source>
-        <translation>Proceso hijo</translation>
+        <source>Parent Process</source>
+        <translation>Proceso Padre</translation>
     </message>
     <message>
         <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/>
+        <source>Child process</source>
+        <translation>Proceso hijo</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/>
         <source>Client forking</source>
         <translation>Fork del cliente</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/>
         <source>Select the fork branch to follow.</source>
         <translation>Seleccionar la rama de fork para continuar.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/>
         <source>Debug Protocol Error</source>
         <translation>Error de Protocolo de Depuración</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/>
         <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;La respuesta recibida desde el backend del depurador no se ha podido descodificar. Por favor, informar de este problema junto con los datos recibidos a la dirección de email para bugs de eric.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Datos:&lt;br/&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="348"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="349"/>
         <source>&lt;p&gt;No suitable {0} environment configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No hay configurado un entorno {0} adecuado.&lt;/p&gt;</translation>
     </message>
@@ -41680,7 +41685,7 @@
         <translation>Seleccionar una red para conectarse</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="350"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="354"/>
         <source>Press to connect to the selected network</source>
         <translation>Pulsar para conectar a la red seleccionada</translation>
     </message>
@@ -41710,57 +41715,57 @@
         <translation>Pulsar para unirse al canal</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/>
         <source>Save Messages</source>
         <translation>Guardar Mensajes</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="421"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="425"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation>Archivos HTML (*.{0});;Archivos de Texto (*.txt);;Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/>
         <source>Error saving Messages</source>
         <translation>Error al guardar Mensajes</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Los contenidos de mensajes no se han podido guardar en &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="475"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/>
-        <source>Cut all</source>
-        <translation>Cortar todo</translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/>
+        <source>Cut all</source>
+        <translation>Cortar todo</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="484"/>
         <source>Copy all</source>
         <translation>Copiar todo</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="485"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="489"/>
         <source>Clear</source>
         <translation>Limpiar</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="490"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="494"/>
         <source>Save</source>
         <translation>Guardar</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="345"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="349"/>
         <source>Press to disconnect from the network</source>
         <translation>Pulsar para desconectar de la red</translation>
     </message>
@@ -42210,253 +42215,253 @@
         <translation>Pulsar para abandonar el canal actual</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="243"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="255"/>
         <source>Disconnect from Server</source>
         <translation>Desconectar del Servidor</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="243"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="255"/>
         <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
         <translation>&lt;p&gt;¿Desea realmente desconectar de &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;Se cerrarán todos los canales.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="196"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="197"/>
         <source>SSL Connection</source>
         <translation>Conexión SSL</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="196"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="197"/>
         <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
         <translation>Se ha solicitado una conexión encriptada pero SSL no está disponible. Por favor, cambie la configuración del servidor.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="563"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="579"/>
         <source>Info</source>
         <translation>Info</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="222"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="230"/>
         <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
         <translation>Buscando el servidor {0} (puerto {1}) utilizando una conexión encriptada a través de SSL...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="231"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="241"/>
         <source>Looking for server {0} (port {1})...</source>
         <translation>Buscando servidor {0} (puerto {1})...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="252"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="264"/>
         <source>Disconnecting from server {0}...</source>
         <translation>Desconectando del servidor {0}...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="519"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="533"/>
         <source>Server found,connecting...</source>
         <translation>Servidor encontrado, conectando...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="528"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="542"/>
         <source>Connected,logging in...</source>
         <translation>Conectado, validándose...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="563"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="579"/>
         <source>Server disconnected.</source>
         <translation>Servidor desconectado.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="626"/>
         <source>Message Error</source>
         <translation>Error de Mensaje</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="626"/>
         <source>Unknown message received from server:&lt;br/&gt;{0}</source>
         <translation>Mensaje desconocido recibido del servidor: &lt;/br&gt;{0}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="678"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="694"/>
         <source>Notice</source>
         <translation>Aviso</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="696"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="712"/>
         <source>Mode</source>
         <translation>Modo</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="703"/>
-        <source>You have left channel {0}.</source>
-        <translation>Ha dejado el canal {0}.</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="714"/>
-        <source>You are now known as {0}.</source>
-        <translation>Usted es conocido como {0}.</translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="719"/>
+        <source>You have left channel {0}.</source>
+        <translation>Ha dejado el canal {0}.</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="730"/>
+        <source>You are now known as {0}.</source>
+        <translation>Usted es conocido como {0}.</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="735"/>
         <source>User {0} is now known as {1}.</source>
         <translation>Usuario {0} es conocido ahora como {1}.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="729"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="745"/>
         <source>Server Error</source>
         <translation>Error de Servidor</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="765"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="781"/>
         <source>Error</source>
         <translation>Error</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="780"/>
-        <source>Welcome</source>
-        <translation>Bienvenido</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="782"/>
-        <source>Support</source>
-        <translation>Soporte</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="784"/>
-        <source>User</source>
-        <translation>Usuario</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="786"/>
-        <source>MOTD</source>
-        <translation>MOTD</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="788"/>
-        <source>Away</source>
-        <translation>Ausente</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="790"/>
-        <source>Info ({0})</source>
-        <translation>Info ({0})</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="794"/>
-        <source>Message of the day</source>
-        <translation>Mensaje del día</translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="796"/>
-        <source>End of message of the day</source>
-        <translation>Fin de mensaje del día</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="799"/>
-        <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
-        <translation>Servidor {0} (Versión {1}), Modos de Usuario: {2}, Modos de Canal: {3}</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="805"/>
-        <source>Current users on {0}: {1}, max. {2}</source>
-        <translation>Usuarios actuales en {0}: {1}, máx. {2}</translation>
+        <source>Welcome</source>
+        <translation>Bienvenido</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="798"/>
+        <source>Support</source>
+        <translation>Soporte</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="800"/>
+        <source>User</source>
+        <translation>Usuario</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="802"/>
+        <source>MOTD</source>
+        <translation>MOTD</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="804"/>
+        <source>Away</source>
+        <translation>Ausente</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="806"/>
+        <source>Info ({0})</source>
+        <translation>Info ({0})</translation>
     </message>
     <message>
         <location filename="../Network/IRC/IrcWidget.py" line="810"/>
+        <source>Message of the day</source>
+        <translation>Mensaje del día</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="812"/>
+        <source>End of message of the day</source>
+        <translation>Fin de mensaje del día</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="815"/>
+        <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
+        <translation>Servidor {0} (Versión {1}), Modos de Usuario: {2}, Modos de Canal: {3}</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="821"/>
+        <source>Current users on {0}: {1}, max. {2}</source>
+        <translation>Usuarios actuales en {0}: {1}, máx. {2}</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="826"/>
         <source>Current users on the network: {0}, max. {1}</source>
         <translation>Usuarios actuales en la red: {0}, máx. {1}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="814"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="830"/>
         <source>You are no longer marked as being away.</source>
         <translation>Usted ya no está marcado como ausente.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="816"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="832"/>
         <source>You have been marked as being away.</source>
         <translation>Usted ha sido marcado como ausente.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="952"/>
         <source>SSL Error</source>
         <translation>Error de SSL</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="877"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="894"/>
         <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
         <translation>Conexión al servidor {0} (puerto {1}) perdida mientras se esperaba respuesta de usuario a un error SSL.</translation>
     </message>
     <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="925"/>
+        <source>Socket Error</source>
+        <translation>Error de Socket</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
+        <source>The host was not found. Please check the host name and port settings.</source>
+        <translation>El host no ha sido encontrado. Por favor, compruebe los ajustes de nombre de host y puerto.</translation>
+    </message>
+    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="908"/>
-        <source>Socket Error</source>
-        <translation>Error de Socket</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="885"/>
-        <source>The host was not found. Please check the host name and port settings.</source>
-        <translation>El host no ha sido encontrado. Por favor, compruebe los ajustes de nombre de host y puerto.</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="891"/>
         <source>The connection was refused by the peer. Please check the host name and port settings.</source>
         <translation>La conexión ha sido rechazada por el otro extremo. Por favor, compruebe los ajustes de nombre de host y puerto.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="919"/>
         <source>The following network error occurred:&lt;br/&gt;{0}</source>
         <translation>Ha ocurrido el siguiente error de red: &lt;br/&gt;{0}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1034"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1051"/>
         <source>{0} ({1})</source>
         <comment>channel name, users count</comment>
         <translation>{0} ({1})</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1069"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1094"/>
         <source>Critical</source>
         <translation>Crítico</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1049"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1074"/>
         <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
         <translation>No hay un sobrenombre que el servidor acepte configurado para &lt;b&gt;{0}&lt;/b&gt;. Desconectando...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1069"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1094"/>
         <source>The given nickname is already in use.</source>
         <translation>El sobrenombre proporcionado ya está en uso.</translation>
     </message>
     <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="1036"/>
+        <source>CTCP</source>
+        <translation>CTCP</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="1013"/>
+        <source>Received Version request from {0}.</source>
+        <translation>Se ha recibido una solicitud de Versión de {0}.</translation>
+    </message>
+    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="1019"/>
-        <source>CTCP</source>
-        <translation>CTCP</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="996"/>
-        <source>Received Version request from {0}.</source>
-        <translation>Se ha recibido una solicitud de Versión de {0}.</translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1002"/>
         <source>Received CTCP-PING request from {0}, sending answer.</source>
         <translation>Recibida solicitud CTCP-PING desde {0}, enviando respuesta.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1010"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1027"/>
         <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
         <translation>Recibida solicitud CTCP-CLIENTINFO desde {0}, enviando respuesta.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1019"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1036"/>
         <source>Received unknown CTCP-{0} request from {1}.</source>
         <translation>Recibida solicitud CTCP desconocida desde {1}.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="689"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="705"/>
         <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
         <translation>Usted ha establecido sus modos personales a &lt;b&gt;[{0}]&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="693"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="709"/>
         <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
         <translation>{0} ha cambiado los modos personales de usted a &lt;b&gt;[{1}]&lt;/b&gt;.</translation>
     </message>
@@ -42471,47 +42476,47 @@
         <translation>Red</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="897"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="914"/>
         <source>The SSL handshake failed.</source>
         <translation>Ha fallado el SSL handshake.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="925"/>
         <source>A network error occurred.</source>
         <translation>Ha ocurrido un error de red.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="921"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="938"/>
         <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
         <translation>No se ha podido conectar a {0} (puerto {1}) utilizando una conexión encriptada sobre SSL. O bien el servidor no soporta SSL (¿se ha utilizado el puerto correcto?) o bien usted ha rechazado el certificado.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="952"/>
         <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
         <translation>El certificado SSL para el servidor {0} (puerto {1}) ha fallado la comprobación de autenticidad. Los errores SSL han sido aceptados por usted.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="257"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="269"/>
         <source>Disconnecting from network {0}...</source>
         <translation>Desconectando de la red {0}...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="262"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="274"/>
         <source>Disconnecting from server.</source>
         <translation>Desconectando del servidor.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="645"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="661"/>
         <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
         <translation>Recibida respuesta CTCP-PING desde {0} con una latencia de {1} ms.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="651"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="667"/>
         <source>Received unknown CTCP-{0} response from {1}.</source>
         <translation>Recibida respuesta CTCP-{0} desconocida desde {1}.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="725"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="741"/>
         <source>Received PONG from {0}</source>
         <translation>Recibido PONG desde {0}</translation>
     </message>
@@ -53701,12 +53706,12 @@
         <translation>¿Realmente quiere borrar estas archivos de traducción del proyecto?</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="821"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/>
         <source>Write temporary project file</source>
         <translation>Guardar archivo de proyecto temporal</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="778"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/>
         <source>No translation files (*.ts) selected.</source>
         <translation>No se han seleccionado archivos de traducción (*.ts).</translation>
     </message>
@@ -53721,7 +53726,7 @@
         <translation>La generación de archivos de traducción (*.ts) ha sido satisfactoria.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
@@ -53766,7 +53771,7 @@
         <translation>No se ha podido ejecutar {0}.&lt;br&gt;Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/>
         <source>&lt;p&gt;Could not start lrelease.&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 lrelease.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -75063,7 +75068,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="5945"/>
+        <location filename="../UI/UserInterface.py" line="5958"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Exportar Atajos de Teclado</translation>
     </message>
@@ -75083,7 +75088,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="5969"/>
+        <location filename="../UI/UserInterface.py" line="5982"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Importar Atajos de Teclado</translation>
     </message>
@@ -75273,7 +75278,7 @@
         <translation>Ajustes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4789"/>
+        <location filename="../UI/UserInterface.py" line="4795"/>
         <source>Help</source>
         <translation>Ayuda</translation>
     </message>
@@ -75293,7 +75298,7 @@
         <translation>&lt;h3&gt;Números de Versiones&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6932"/>
+        <location filename="../UI/UserInterface.py" line="6945"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
@@ -75338,82 +75343,82 @@
         <translation>No hay script principal definido para el proyecto actual. Abortando</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4915"/>
+        <location filename="../UI/UserInterface.py" line="4921"/>
         <source>Problem</source>
         <translation>Problema</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5104"/>
+        <location filename="../UI/UserInterface.py" line="5110"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4789"/>
+        <location filename="../UI/UserInterface.py" line="4795"/>
         <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="4823"/>
+        <location filename="../UI/UserInterface.py" line="4829"/>
         <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="5601"/>
+        <location filename="../UI/UserInterface.py" line="5607"/>
         <source>Documentation Missing</source>
         <translation>Falta documentación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5584"/>
+        <location filename="../UI/UserInterface.py" line="5590"/>
         <source>Documentation</source>
         <translation>Documentación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5398"/>
+        <location filename="../UI/UserInterface.py" line="5404"/>
         <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="6138"/>
+        <location filename="../UI/UserInterface.py" line="6151"/>
         <source>Save tasks</source>
         <translation>Guardar tareas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6167"/>
+        <location filename="../UI/UserInterface.py" line="6180"/>
         <source>Read tasks</source>
         <translation>Leer tareas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6528"/>
+        <location filename="../UI/UserInterface.py" line="6541"/>
         <source>Drop Error</source>
         <translation>Error de volcado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6894"/>
+        <location filename="../UI/UserInterface.py" line="6907"/>
         <source>Error during updates check</source>
         <translation>Error durante la verificación de actualización</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6707"/>
+        <location filename="../UI/UserInterface.py" line="6720"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Cancelar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6874"/>
+        <location filename="../UI/UserInterface.py" line="6887"/>
         <source>Update available</source>
         <translation>Actualizaciones disponibles</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6894"/>
+        <location filename="../UI/UserInterface.py" line="6907"/>
         <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="6918"/>
+        <location filename="../UI/UserInterface.py" line="6931"/>
         <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="6969"/>
+        <location filename="../UI/UserInterface.py" line="6982"/>
         <source>First time usage</source>
         <translation>Usado por primera vez</translation>
     </message>
@@ -75473,7 +75478,7 @@
         <translation>Restaurando Gestor de Barras de Herramientas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5049"/>
+        <location filename="../UI/UserInterface.py" line="5055"/>
         <source>External Tools</source>
         <translation>Herramientas Externas</translation>
     </message>
@@ -75488,12 +75493,12 @@
         <translation>Visor de &amp;Multiproyecto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6264"/>
+        <location filename="../UI/UserInterface.py" line="6277"/>
         <source>Save session</source>
         <translation>Guardar sesión</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6248"/>
+        <location filename="../UI/UserInterface.py" line="6261"/>
         <source>Read session</source>
         <translation>Cargar sesión</translation>
     </message>
@@ -75723,7 +75728,7 @@
         <translation>Editor de &amp;Iconos...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4736"/>
+        <location filename="../UI/UserInterface.py" line="4742"/>
         <source>Qt 3 support</source>
         <translation>Soporte para Qt 3</translation>
     </message>
@@ -75763,106 +75768,106 @@
         <translation>Herramientas Externas/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4915"/>
+        <location filename="../UI/UserInterface.py" line="4921"/>
         <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="4643"/>
+        <location filename="../UI/UserInterface.py" line="4645"/>
         <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="4710"/>
+        <location filename="../UI/UserInterface.py" line="4714"/>
         <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="4761"/>
+        <location filename="../UI/UserInterface.py" line="4767"/>
         <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="4803"/>
+        <location filename="../UI/UserInterface.py" line="4809"/>
         <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="4871"/>
+        <location filename="../UI/UserInterface.py" line="4877"/>
         <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="4926"/>
+        <location filename="../UI/UserInterface.py" line="4932"/>
         <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="4947"/>
+        <location filename="../UI/UserInterface.py" line="4953"/>
         <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="5040"/>
+        <location filename="../UI/UserInterface.py" line="5046"/>
         <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="5049"/>
+        <location filename="../UI/UserInterface.py" line="5055"/>
         <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="5088"/>
+        <location filename="../UI/UserInterface.py" line="5094"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Comenzando proceso &apos;{0} {1}&apos;.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5104"/>
+        <location filename="../UI/UserInterface.py" line="5110"/>
         <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="5180"/>
+        <location filename="../UI/UserInterface.py" line="5186"/>
         <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="5601"/>
+        <location filename="../UI/UserInterface.py" line="5607"/>
         <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="6138"/>
+        <location filename="../UI/UserInterface.py" line="6151"/>
         <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="6167"/>
+        <location filename="../UI/UserInterface.py" line="6180"/>
         <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="6201"/>
+        <location filename="../UI/UserInterface.py" line="6214"/>
         <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="6248"/>
+        <location filename="../UI/UserInterface.py" line="6261"/>
         <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="6528"/>
+        <location filename="../UI/UserInterface.py" line="6541"/>
         <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="6716"/>
+        <location filename="../UI/UserInterface.py" line="6729"/>
         <source>Trying host {0}</source>
         <translation>Probando host {0}</translation>
     </message>
@@ -75897,7 +75902,7 @@
         <translation>Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5969"/>
+        <location filename="../UI/UserInterface.py" line="5982"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation>Archivo de atajos de teclado (*.e4k)</translation>
     </message>
@@ -75937,27 +75942,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="6780"/>
+        <location filename="../UI/UserInterface.py" line="6793"/>
         <source>Error getting versions information</source>
         <translation>Error al obtener información de versiones</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6773"/>
+        <location filename="../UI/UserInterface.py" line="6786"/>
         <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="5737"/>
+        <location filename="../UI/UserInterface.py" line="5743"/>
         <source>Open Browser</source>
         <translation>Abrir Navegador</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5737"/>
+        <location filename="../UI/UserInterface.py" line="5743"/>
         <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="6780"/>
+        <location filename="../UI/UserInterface.py" line="6793"/>
         <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>
@@ -76043,12 +76048,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="5017"/>
+        <location filename="../UI/UserInterface.py" line="5023"/>
         <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="6988"/>
+        <location filename="../UI/UserInterface.py" line="7001"/>
         <source>Select Workspace Directory</source>
         <translation>Seleccionar Directorio para el Espacio de Trabajo</translation>
     </message>
@@ -76423,7 +76428,7 @@
         <translation>Abrir Documentación de PyQt5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5464"/>
+        <location filename="../UI/UserInterface.py" line="5470"/>
         <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>
@@ -76433,7 +76438,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="6707"/>
+        <location filename="../UI/UserInterface.py" line="6720"/>
         <source>%v/%m</source>
         <translation>%v/%m</translation>
     </message>
@@ -76453,7 +76458,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="6711"/>
+        <location filename="../UI/UserInterface.py" line="6724"/>
         <source>Version Check</source>
         <translation>Verificación de Versión</translation>
     </message>
@@ -76523,27 +76528,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="4736"/>
+        <location filename="../UI/UserInterface.py" line="4742"/>
         <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="6874"/>
-        <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="6887"/>
+        <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="6900"/>
         <source>Eric6 is up to date</source>
         <translation>Eric6 está actualizado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6887"/>
+        <location filename="../UI/UserInterface.py" line="6900"/>
         <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="6969"/>
+        <location filename="../UI/UserInterface.py" line="6982"/>
         <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>
@@ -76563,7 +76568,7 @@
         <translation>No se han Configurado Herramientas de Usuario</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6727"/>
+        <location filename="../UI/UserInterface.py" line="6740"/>
         <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>
@@ -76608,7 +76613,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="6286"/>
+        <location filename="../UI/UserInterface.py" line="6299"/>
         <source>Load session</source>
         <translation>Cargar sesión</translation>
     </message>
@@ -76623,17 +76628,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="6286"/>
+        <location filename="../UI/UserInterface.py" line="6299"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation>Archivos de Sesión de eric6 (*.e5s)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6333"/>
+        <location filename="../UI/UserInterface.py" line="6346"/>
         <source>Crash Session found!</source>
         <translation>¡Se ha hallado una sesión perdida!</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6333"/>
+        <location filename="../UI/UserInterface.py" line="6346"/>
         <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>
@@ -76648,17 +76653,17 @@
         <translation>Inicializando Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6862"/>
+        <location filename="../UI/UserInterface.py" line="6875"/>
         <source>Update Check</source>
         <translation>Comprobación Actualización</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6862"/>
+        <location filename="../UI/UserInterface.py" line="6875"/>
         <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="6852"/>
+        <location filename="../UI/UserInterface.py" line="6865"/>
         <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>
@@ -76713,7 +76718,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="5584"/>
+        <location filename="../UI/UserInterface.py" line="5590"/>
         <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>
--- a/i18n/eric6_fr.ts	Fri Nov 16 20:00:03 2018 +0100
+++ b/i18n/eric6_fr.ts	Sat Nov 17 12:45:58 2018 +0100
@@ -5538,12 +5538,12 @@
         <translation>Filtrer &amp;avec:</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="754"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="751"/>
         <source>Code Generation</source>
         <translation>Génération de code</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="542"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="539"/>
         <source>uic error</source>
         <translation>erreur uic</translation>
     </message>
@@ -5558,25 +5558,30 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="542"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="539"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="620"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="617"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="656"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="653"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="754"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="751"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="207"/>
+        <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>Crypto</name>
@@ -6891,47 +6896,47 @@
 <context>
     <name>DebuggerInterfacePython</name>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/>
         <source>Start Debugger</source>
         <translation type="unfinished">Démarrage du débogueur</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/>
         <source>&lt;p&gt;The debugger backend could not be started.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Impossible de lancer le débogueur en arrière-plan.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="936"/>
-        <source>Parent Process</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebuggerInterfacePython.py" line="937"/>
-        <source>Child process</source>
+        <source>Parent Process</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/>
+        <source>Child process</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/>
         <source>Client forking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/>
         <source>Select the fork branch to follow.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/>
         <source>Debug Protocol Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/>
         <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="348"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="349"/>
         <source>&lt;p&gt;No suitable {0} environment configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42583,7 +42588,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="350"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="354"/>
         <source>Press to connect to the selected network</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42613,57 +42618,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/>
         <source>Save Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="421"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="425"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/>
         <source>Error saving Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="475"/>
         <source>Copy</source>
         <translation type="unfinished">Copier</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/>
-        <source>Cut all</source>
-        <translation type="unfinished">Couper tous</translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/>
+        <source>Cut all</source>
+        <translation type="unfinished">Couper tous</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="484"/>
         <source>Copy all</source>
         <translation type="unfinished">Copier tous</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="485"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="489"/>
         <source>Clear</source>
         <translation type="unfinished">Effacer</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="490"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="494"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="345"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="349"/>
         <source>Press to disconnect from the network</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43123,298 +43128,298 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="243"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="255"/>
         <source>Disconnect from Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="243"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="255"/>
         <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="196"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="197"/>
         <source>SSL Connection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="196"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="197"/>
         <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="563"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="579"/>
         <source>Info</source>
         <translation type="unfinished">Info</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="222"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="230"/>
         <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="231"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="241"/>
         <source>Looking for server {0} (port {1})...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="252"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="264"/>
         <source>Disconnecting from server {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="519"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="533"/>
         <source>Server found,connecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="528"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="542"/>
         <source>Connected,logging in...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="563"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="579"/>
         <source>Server disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="626"/>
         <source>Message Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="626"/>
         <source>Unknown message received from server:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="678"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="694"/>
         <source>Notice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="689"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="705"/>
         <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="693"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="709"/>
         <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="696"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="712"/>
         <source>Mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="703"/>
-        <source>You have left channel {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="714"/>
-        <source>You are now known as {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="719"/>
+        <source>You have left channel {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="730"/>
+        <source>You are now known as {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="735"/>
         <source>User {0} is now known as {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="729"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="745"/>
         <source>Server Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="765"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="781"/>
         <source>Error</source>
         <translation type="unfinished">Erreur</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="780"/>
-        <source>Welcome</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="782"/>
-        <source>Support</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="784"/>
-        <source>User</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="786"/>
-        <source>MOTD</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="788"/>
-        <source>Away</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="790"/>
-        <source>Info ({0})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="794"/>
-        <source>Message of the day</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="796"/>
-        <source>End of message of the day</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="799"/>
-        <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="805"/>
-        <source>Current users on {0}: {1}, max. {2}</source>
+        <source>Welcome</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="798"/>
+        <source>Support</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="800"/>
+        <source>User</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="802"/>
+        <source>MOTD</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="804"/>
+        <source>Away</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="806"/>
+        <source>Info ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Network/IRC/IrcWidget.py" line="810"/>
+        <source>Message of the day</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="812"/>
+        <source>End of message of the day</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="815"/>
+        <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="821"/>
+        <source>Current users on {0}: {1}, max. {2}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="826"/>
         <source>Current users on the network: {0}, max. {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="814"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="830"/>
         <source>You are no longer marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="816"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="832"/>
         <source>You have been marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="952"/>
         <source>SSL Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="877"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="894"/>
         <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="925"/>
+        <source>Socket Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
+        <source>The host was not found. Please check the host name and port settings.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="908"/>
-        <source>Socket Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="885"/>
-        <source>The host was not found. Please check the host name and port settings.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="891"/>
         <source>The connection was refused by the peer. Please check the host name and port settings.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="897"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="914"/>
         <source>The SSL handshake failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="919"/>
         <source>The following network error occurred:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="925"/>
         <source>A network error occurred.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1019"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1036"/>
         <source>CTCP</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="996"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1013"/>
         <source>Received Version request from {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1002"/>
-        <source>Received CTCP-PING request from {0}, sending answer.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1010"/>
-        <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="1019"/>
+        <source>Received CTCP-PING request from {0}, sending answer.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="1027"/>
+        <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="1036"/>
         <source>Received unknown CTCP-{0} request from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1034"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1051"/>
         <source>{0} ({1})</source>
         <comment>channel name, users count</comment>
         <translation type="unfinished">{0}({1})</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1069"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1094"/>
         <source>Critical</source>
         <translation type="unfinished">Critique</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1049"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1074"/>
         <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1069"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1094"/>
         <source>The given nickname is already in use.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="921"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="938"/>
         <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="952"/>
         <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="257"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="269"/>
         <source>Disconnecting from network {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="262"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="274"/>
         <source>Disconnecting from server.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="645"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="661"/>
         <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="651"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="667"/>
         <source>Received unknown CTCP-{0} response from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="725"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="741"/>
         <source>Received PONG from {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54619,7 +54624,7 @@
         <translation>Ajouter une traduction...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="821"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/>
         <source>Write temporary project file</source>
         <translation>Ecrire un fichier projet temporaire</translation>
     </message>
@@ -54634,7 +54639,7 @@
         <translation>La génération des fichiers de traduction (*.ts) a réussi.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
@@ -54709,7 +54714,7 @@
         <translation>Voulez-vous réellement supprimer ces traductions du projet?</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="778"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/>
         <source>No translation files (*.ts) selected.</source>
         <translation>Aucun fichier de traduction (*.ts) sélectionné.</translation>
     </message>
@@ -54749,7 +54754,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/>
         <source>&lt;p&gt;Could not start lrelease.&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>
@@ -76050,7 +76055,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="5945"/>
+        <location filename="../UI/UserInterface.py" line="5958"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Exporter les raccourcis clavier</translation>
     </message>
@@ -76070,7 +76075,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="5969"/>
+        <location filename="../UI/UserInterface.py" line="5982"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Importer des raccourcis clavier</translation>
     </message>
@@ -76115,7 +76120,7 @@
         <translation>Outils</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4789"/>
+        <location filename="../UI/UserInterface.py" line="4795"/>
         <source>Help</source>
         <translation>Aide</translation>
     </message>
@@ -76130,12 +76135,12 @@
         <translation>&amp;Barres d&apos;Outils</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4915"/>
+        <location filename="../UI/UserInterface.py" line="4921"/>
         <source>Problem</source>
         <translation>Problème</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5104"/>
+        <location filename="../UI/UserInterface.py" line="5110"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
@@ -76251,7 +76256,7 @@
         <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="6528"/>
+        <location filename="../UI/UserInterface.py" line="6541"/>
         <source>Drop Error</source>
         <translation>Erreur de suppression</translation>
     </message>
@@ -76386,22 +76391,22 @@
         <translation>Visualisueur de tâches</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6138"/>
+        <location filename="../UI/UserInterface.py" line="6151"/>
         <source>Save tasks</source>
         <translation>Enregistrement des tâches</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6167"/>
+        <location filename="../UI/UserInterface.py" line="6180"/>
         <source>Read tasks</source>
         <translation>Lecture des tâches</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4789"/>
+        <location filename="../UI/UserInterface.py" line="4795"/>
         <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="5601"/>
+        <location filename="../UI/UserInterface.py" line="5607"/>
         <source>Documentation Missing</source>
         <translation>Documentation Manquante</translation>
     </message>
@@ -76501,7 +76506,7 @@
         <translation>Ouvre la documentation sur les APIs Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4823"/>
+        <location filename="../UI/UserInterface.py" line="4829"/>
         <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>
@@ -76582,22 +76587,22 @@
         <translation>Outils &amp;internes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5584"/>
+        <location filename="../UI/UserInterface.py" line="5590"/>
         <source>Documentation</source>
         <translation>Documentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5398"/>
+        <location filename="../UI/UserInterface.py" line="5404"/>
         <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="6894"/>
+        <location filename="../UI/UserInterface.py" line="6907"/>
         <source>Error during updates check</source>
         <translation>Erreur durant la recherche de mises à jour</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6874"/>
+        <location filename="../UI/UserInterface.py" line="6887"/>
         <source>Update available</source>
         <translation>Mise à jour disponible</translation>
     </message>
@@ -76607,17 +76612,17 @@
         <translation>&lt;h3&gt;Numéros de version&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6932"/>
+        <location filename="../UI/UserInterface.py" line="6945"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5737"/>
+        <location filename="../UI/UserInterface.py" line="5743"/>
         <source>Open Browser</source>
         <translation type="unfinished">Ouverture du navigateur</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5737"/>
+        <location filename="../UI/UserInterface.py" line="5743"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished">Impossible de lancer le navigateur web</translation>
     </message>
@@ -76642,17 +76647,17 @@
         <translation>Afficher les &amp;outils externes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6707"/>
+        <location filename="../UI/UserInterface.py" line="6720"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Annuler</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6894"/>
+        <location filename="../UI/UserInterface.py" line="6907"/>
         <source>Could not perform updates check.</source>
         <translation>Impossible de vérifier les mises à jour.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6969"/>
+        <location filename="../UI/UserInterface.py" line="6982"/>
         <source>First time usage</source>
         <translation>Première utilisation</translation>
     </message>
@@ -76747,7 +76752,7 @@
         <translation>Affiche les versions disponibles pour le téléchargement</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6918"/>
+        <location filename="../UI/UserInterface.py" line="6931"/>
         <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>
@@ -76837,17 +76842,17 @@
         <translation>Gestionnaire de &amp;multi-projet</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5049"/>
+        <location filename="../UI/UserInterface.py" line="5055"/>
         <source>External Tools</source>
         <translation>Outils externes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6264"/>
+        <location filename="../UI/UserInterface.py" line="6277"/>
         <source>Save session</source>
         <translation>Enregistrer la session</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6248"/>
+        <location filename="../UI/UserInterface.py" line="6261"/>
         <source>Read session</source>
         <translation>Chargement de session</translation>
     </message>
@@ -77077,7 +77082,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4736"/>
+        <location filename="../UI/UserInterface.py" line="4742"/>
         <source>Qt 3 support</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77117,104 +77122,104 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4915"/>
+        <location filename="../UI/UserInterface.py" line="4921"/>
         <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="4643"/>
+        <location filename="../UI/UserInterface.py" line="4645"/>
         <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="4710"/>
+        <location filename="../UI/UserInterface.py" line="4714"/>
         <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="4761"/>
+        <location filename="../UI/UserInterface.py" line="4767"/>
         <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="4803"/>
+        <location filename="../UI/UserInterface.py" line="4809"/>
         <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="4871"/>
+        <location filename="../UI/UserInterface.py" line="4877"/>
         <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="4926"/>
+        <location filename="../UI/UserInterface.py" line="4932"/>
         <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="4947"/>
+        <location filename="../UI/UserInterface.py" line="4953"/>
         <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="5040"/>
+        <location filename="../UI/UserInterface.py" line="5046"/>
         <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="5049"/>
+        <location filename="../UI/UserInterface.py" line="5055"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5088"/>
+        <location filename="../UI/UserInterface.py" line="5094"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5104"/>
+        <location filename="../UI/UserInterface.py" line="5110"/>
         <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="5180"/>
+        <location filename="../UI/UserInterface.py" line="5186"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5601"/>
+        <location filename="../UI/UserInterface.py" line="5607"/>
         <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="6138"/>
+        <location filename="../UI/UserInterface.py" line="6151"/>
         <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="6167"/>
+        <location filename="../UI/UserInterface.py" line="6180"/>
         <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="6201"/>
+        <location filename="../UI/UserInterface.py" line="6214"/>
         <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="6248"/>
+        <location filename="../UI/UserInterface.py" line="6261"/>
         <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="6528"/>
+        <location filename="../UI/UserInterface.py" line="6541"/>
         <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="6716"/>
+        <location filename="../UI/UserInterface.py" line="6729"/>
         <source>Trying host {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77249,7 +77254,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5969"/>
+        <location filename="../UI/UserInterface.py" line="5982"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77289,17 +77294,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6780"/>
+        <location filename="../UI/UserInterface.py" line="6793"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6773"/>
+        <location filename="../UI/UserInterface.py" line="6786"/>
         <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="6780"/>
+        <location filename="../UI/UserInterface.py" line="6793"/>
         <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>
@@ -77385,12 +77390,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5017"/>
+        <location filename="../UI/UserInterface.py" line="5023"/>
         <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="6988"/>
+        <location filename="../UI/UserInterface.py" line="7001"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77765,7 +77770,7 @@
         <translation type="unfinished">Lance la documentation PyQt4 {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5464"/>
+        <location filename="../UI/UserInterface.py" line="5470"/>
         <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>
@@ -77775,7 +77780,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6707"/>
+        <location filename="../UI/UserInterface.py" line="6720"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77795,7 +77800,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6711"/>
+        <location filename="../UI/UserInterface.py" line="6724"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77865,27 +77870,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="4736"/>
+        <location filename="../UI/UserInterface.py" line="4742"/>
         <source>Qt v.3 is not supported by eric6.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6874"/>
-        <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="6887"/>
+        <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="6900"/>
         <source>Eric6 is up to date</source>
         <translation type="unfinished">Eric4 est à jour {5 ?} {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6887"/>
+        <location filename="../UI/UserInterface.py" line="6900"/>
         <source>You are using the latest version of eric6</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6969"/>
+        <location filename="../UI/UserInterface.py" line="6982"/>
         <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>
@@ -77905,7 +77910,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6727"/>
+        <location filename="../UI/UserInterface.py" line="6740"/>
         <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>
@@ -77950,7 +77955,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6286"/>
+        <location filename="../UI/UserInterface.py" line="6299"/>
         <source>Load session</source>
         <translation type="unfinished">Charger la session</translation>
     </message>
@@ -77965,17 +77970,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6286"/>
+        <location filename="../UI/UserInterface.py" line="6299"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6333"/>
+        <location filename="../UI/UserInterface.py" line="6346"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6333"/>
+        <location filename="../UI/UserInterface.py" line="6346"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77990,17 +77995,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6862"/>
+        <location filename="../UI/UserInterface.py" line="6875"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6862"/>
+        <location filename="../UI/UserInterface.py" line="6875"/>
         <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="6852"/>
+        <location filename="../UI/UserInterface.py" line="6865"/>
         <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>
@@ -78055,7 +78060,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5584"/>
+        <location filename="../UI/UserInterface.py" line="5590"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
--- a/i18n/eric6_it.ts	Fri Nov 16 20:00:03 2018 +0100
+++ b/i18n/eric6_it.ts	Sat Nov 17 12:45:58 2018 +0100
@@ -5441,12 +5441,12 @@
         <translation>&amp;Filtra con:</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="754"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="751"/>
         <source>Code Generation</source>
         <translation>Generazione del codice</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="542"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="539"/>
         <source>uic error</source>
         <translation>errore uic</translation>
     </message>
@@ -5461,25 +5461,30 @@
         <translation>Il file &lt;b&gt;{0}&lt;/b&gt; esiste ma non contiene nessuna classe.</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="542"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="539"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;C&apos;è un errore nel caricamento del form&lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="620"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="617"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso aprire il file del modello del codice &quot;{0}&quot;.&lt;p&gt;&lt;p&gt;Ragione: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="656"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="653"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso aprire il file sorgente &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Ragione: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="754"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="751"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso scrivere il file sorgente &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Ragione: {1}&lt;/p&gt;</translation>
     </message>
+    <message>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="207"/>
+        <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>Crypto</name>
@@ -6744,47 +6749,47 @@
 <context>
     <name>DebuggerInterfacePython</name>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/>
         <source>Start Debugger</source>
         <translation type="unfinished">Avvia Debugger</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/>
         <source>&lt;p&gt;The debugger backend could not be started.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Il debugger non può essere avviato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="936"/>
-        <source>Parent Process</source>
-        <translation type="unfinished">Processo padre</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebuggerInterfacePython.py" line="937"/>
-        <source>Child process</source>
-        <translation type="unfinished">Processo figlio</translation>
+        <source>Parent Process</source>
+        <translation type="unfinished">Processo padre</translation>
     </message>
     <message>
         <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/>
+        <source>Child process</source>
+        <translation type="unfinished">Processo figlio</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/>
         <source>Client forking</source>
         <translation type="unfinished">Lancio processo figlio in corso</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/>
         <source>Select the fork branch to follow.</source>
         <translation type="unfinished">Seleziona il client da seguire.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/>
         <source>Debug Protocol Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/>
         <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="348"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="349"/>
         <source>&lt;p&gt;No suitable {0} environment configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41914,7 +41919,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="350"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="354"/>
         <source>Press to connect to the selected network</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41944,57 +41949,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/>
         <source>Save Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="421"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="425"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/>
         <source>Error saving Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="475"/>
         <source>Copy</source>
         <translation type="unfinished">Copia</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/>
-        <source>Cut all</source>
-        <translation type="unfinished">Taglia tutto</translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/>
+        <source>Cut all</source>
+        <translation type="unfinished">Taglia tutto</translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="484"/>
         <source>Copy all</source>
         <translation type="unfinished">Copia tutto</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="485"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="489"/>
         <source>Clear</source>
         <translation type="unfinished">Pulisci</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="490"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="494"/>
         <source>Save</source>
         <translation type="unfinished">Salva</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="345"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="349"/>
         <source>Press to disconnect from the network</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42444,253 +42449,253 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="243"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="255"/>
         <source>Disconnect from Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="243"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="255"/>
         <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="196"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="197"/>
         <source>SSL Connection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="196"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="197"/>
         <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="563"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="579"/>
         <source>Info</source>
         <translation type="unfinished">Info</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="222"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="230"/>
         <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="231"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="241"/>
         <source>Looking for server {0} (port {1})...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="252"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="264"/>
         <source>Disconnecting from server {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="519"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="533"/>
         <source>Server found,connecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="528"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="542"/>
         <source>Connected,logging in...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="563"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="579"/>
         <source>Server disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="626"/>
         <source>Message Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="626"/>
         <source>Unknown message received from server:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="678"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="694"/>
         <source>Notice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="696"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="712"/>
         <source>Mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="703"/>
-        <source>You have left channel {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="714"/>
-        <source>You are now known as {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="719"/>
+        <source>You have left channel {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="730"/>
+        <source>You are now known as {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="735"/>
         <source>User {0} is now known as {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="729"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="745"/>
         <source>Server Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="765"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="781"/>
         <source>Error</source>
         <translation type="unfinished">Errore</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="780"/>
-        <source>Welcome</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="782"/>
-        <source>Support</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="784"/>
-        <source>User</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="786"/>
-        <source>MOTD</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="788"/>
-        <source>Away</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="790"/>
-        <source>Info ({0})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="794"/>
-        <source>Message of the day</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="796"/>
-        <source>End of message of the day</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="799"/>
-        <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="805"/>
-        <source>Current users on {0}: {1}, max. {2}</source>
+        <source>Welcome</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="798"/>
+        <source>Support</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="800"/>
+        <source>User</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="802"/>
+        <source>MOTD</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="804"/>
+        <source>Away</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="806"/>
+        <source>Info ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Network/IRC/IrcWidget.py" line="810"/>
+        <source>Message of the day</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="812"/>
+        <source>End of message of the day</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="815"/>
+        <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="821"/>
+        <source>Current users on {0}: {1}, max. {2}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="826"/>
         <source>Current users on the network: {0}, max. {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="814"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="830"/>
         <source>You are no longer marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="816"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="832"/>
         <source>You have been marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="952"/>
         <source>SSL Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="877"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="894"/>
         <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="925"/>
         <source>Socket Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="885"/>
-        <source>The host was not found. Please check the host name and port settings.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="891"/>
-        <source>The connection was refused by the peer. Please check the host name and port settings.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="902"/>
+        <source>The host was not found. Please check the host name and port settings.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
+        <source>The connection was refused by the peer. Please check the host name and port settings.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="919"/>
         <source>The following network error occurred:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1034"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1051"/>
         <source>{0} ({1})</source>
         <comment>channel name, users count</comment>
         <translation type="unfinished">{0} ({1})</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1069"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1094"/>
         <source>Critical</source>
         <translation type="unfinished">Critico</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1049"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1074"/>
         <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1069"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1094"/>
         <source>The given nickname is already in use.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="1036"/>
+        <source>CTCP</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Network/IRC/IrcWidget.py" line="1013"/>
+        <source>Received Version request from {0}.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Network/IRC/IrcWidget.py" line="1019"/>
-        <source>CTCP</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="996"/>
-        <source>Received Version request from {0}.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1002"/>
         <source>Received CTCP-PING request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1010"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1027"/>
         <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1019"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1036"/>
         <source>Received unknown CTCP-{0} request from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="689"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="705"/>
         <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="693"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="709"/>
         <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42705,47 +42710,47 @@
         <translation type="unfinished">Rete</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="897"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="914"/>
         <source>The SSL handshake failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="925"/>
         <source>A network error occurred.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="921"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="938"/>
         <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="952"/>
         <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="257"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="269"/>
         <source>Disconnecting from network {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="262"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="274"/>
         <source>Disconnecting from server.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="645"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="661"/>
         <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="651"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="667"/>
         <source>Received unknown CTCP-{0} response from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="725"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="741"/>
         <source>Received PONG from {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53936,7 +53941,7 @@
         <translation>Aggiungi traduzione...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="821"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/>
         <source>Write temporary project file</source>
         <translation>Scrivi un file progetto temporaneo</translation>
     </message>
@@ -53951,7 +53956,7 @@
         <translation>La generazione dei file di traduzione (*.ts) è avvenuta con successo.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
@@ -54026,7 +54031,7 @@
         <translation>Vuoi veramente cancellare questi file traduzione del progetto ?</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="778"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1214"/>
         <source>No translation files (*.ts) selected.</source>
         <translation>Nessun file traduzione (*.ts) selezionato.</translation>
     </message>
@@ -54066,7 +54071,7 @@
         <translation>Non posso avviare {0}.&lt;br&gt;Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectTranslationsBrowser.py" line="1240"/>
+        <location filename="../Project/ProjectTranslationsBrowser.py" line="1242"/>
         <source>&lt;p&gt;Could not start lrelease.&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 lrelease.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -74961,7 +74966,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="5945"/>
+        <location filename="../UI/UserInterface.py" line="5958"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Esporta scorciatoie da tastiera</translation>
     </message>
@@ -74981,7 +74986,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="5969"/>
+        <location filename="../UI/UserInterface.py" line="5982"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Importa scorciatoie da tastiera</translation>
     </message>
@@ -75021,7 +75026,7 @@
         <translation>Strumenti</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4789"/>
+        <location filename="../UI/UserInterface.py" line="4795"/>
         <source>Help</source>
         <translation>Aiuto</translation>
     </message>
@@ -75036,12 +75041,12 @@
         <translation>&amp;Toolbar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4915"/>
+        <location filename="../UI/UserInterface.py" line="4921"/>
         <source>Problem</source>
         <translation>Problema</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5104"/>
+        <location filename="../UI/UserInterface.py" line="5110"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
@@ -75156,7 +75161,7 @@
         <translation>Non c&apos;è uno script principale definito per il progetto. Esco</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6528"/>
+        <location filename="../UI/UserInterface.py" line="6541"/>
         <source>Drop Error</source>
         <translation>Errore Drop</translation>
     </message>
@@ -75291,22 +75296,22 @@
         <translation>Task-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6138"/>
+        <location filename="../UI/UserInterface.py" line="6151"/>
         <source>Save tasks</source>
         <translation>Salva task</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6167"/>
+        <location filename="../UI/UserInterface.py" line="6180"/>
         <source>Read tasks</source>
         <translation>Leggi task</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4789"/>
+        <location filename="../UI/UserInterface.py" line="4795"/>
         <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="5601"/>
+        <location filename="../UI/UserInterface.py" line="5607"/>
         <source>Documentation Missing</source>
         <translation>Documentazione mancante</translation>
     </message>
@@ -75406,7 +75411,7 @@
         <translation>Apri documentazione API di Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4823"/>
+        <location filename="../UI/UserInterface.py" line="4829"/>
         <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>
@@ -75487,22 +75492,22 @@
         <translation>Tool &amp;Builtin</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5584"/>
+        <location filename="../UI/UserInterface.py" line="5590"/>
         <source>Documentation</source>
         <translation>Documentazione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5398"/>
+        <location filename="../UI/UserInterface.py" line="5404"/>
         <source>&lt;p&gt;The PyQt4 documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;L&apos;inizio della documentazione di PySide non è stato configurato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6894"/>
+        <location filename="../UI/UserInterface.py" line="6907"/>
         <source>Error during updates check</source>
         <translation>Errore nel controllo per gli update</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6874"/>
+        <location filename="../UI/UserInterface.py" line="6887"/>
         <source>Update available</source>
         <translation>Aggiornamento disponibile</translation>
     </message>
@@ -75512,7 +75517,7 @@
         <translation>&lt;h3&gt;Numeri di versione&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6932"/>
+        <location filename="../UI/UserInterface.py" line="6945"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
@@ -75537,17 +75542,17 @@
         <translation>Mostra toll &amp;esterni</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6707"/>
+        <location filename="../UI/UserInterface.py" line="6720"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Cancella</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6894"/>
+        <location filename="../UI/UserInterface.py" line="6907"/>
         <source>Could not perform updates check.</source>
         <translation>Non posso controllare per gli update.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6969"/>
+        <location filename="../UI/UserInterface.py" line="6982"/>
         <source>First time usage</source>
         <translation>Primo avvio</translation>
     </message>
@@ -75642,7 +75647,7 @@
         <translation>Mostra le versioni disponibili per il download</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6918"/>
+        <location filename="../UI/UserInterface.py" line="6931"/>
         <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>
@@ -75732,17 +75737,17 @@
         <translation>&amp;Multiproject-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5049"/>
+        <location filename="../UI/UserInterface.py" line="5055"/>
         <source>External Tools</source>
         <translation>Tool esterni</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6264"/>
+        <location filename="../UI/UserInterface.py" line="6277"/>
         <source>Save session</source>
         <translation>Salva sessione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6248"/>
+        <location filename="../UI/UserInterface.py" line="6261"/>
         <source>Read session</source>
         <translation>Leggi sessione</translation>
     </message>
@@ -75972,7 +75977,7 @@
         <translation>Editor di &amp;icone...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4736"/>
+        <location filename="../UI/UserInterface.py" line="4742"/>
         <source>Qt 3 support</source>
         <translation>Supporto Qt3</translation>
     </message>
@@ -76012,105 +76017,105 @@
         <translation>Tool Esterni/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4915"/>
+        <location filename="../UI/UserInterface.py" line="4921"/>
         <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="4643"/>
+        <location filename="../UI/UserInterface.py" line="4645"/>
         <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="4710"/>
+        <location filename="../UI/UserInterface.py" line="4714"/>
         <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="4761"/>
+        <location filename="../UI/UserInterface.py" line="4767"/>
         <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="4803"/>
+        <location filename="../UI/UserInterface.py" line="4809"/>
         <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="4871"/>
+        <location filename="../UI/UserInterface.py" line="4877"/>
         <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="4926"/>
+        <location filename="../UI/UserInterface.py" line="4932"/>
         <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="4947"/>
+        <location filename="../UI/UserInterface.py" line="4953"/>
         <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="5040"/>
+        <location filename="../UI/UserInterface.py" line="5046"/>
         <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="5049"/>
+        <location filename="../UI/UserInterface.py" line="5055"/>
         <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="5088"/>
+        <location filename="../UI/UserInterface.py" line="5094"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Avvio processo &apos;{0} {1}&apos;.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5104"/>
+        <location filename="../UI/UserInterface.py" line="5110"/>
         <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="5180"/>
+        <location filename="../UI/UserInterface.py" line="5186"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>Il processo &apos;{0}&apos; è terminato.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5601"/>
+        <location filename="../UI/UserInterface.py" line="5607"/>
         <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="6138"/>
+        <location filename="../UI/UserInterface.py" line="6151"/>
         <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="6167"/>
+        <location filename="../UI/UserInterface.py" line="6180"/>
         <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="6201"/>
+        <location filename="../UI/UserInterface.py" line="6214"/>
         <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="6248"/>
+        <location filename="../UI/UserInterface.py" line="6261"/>
         <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="6528"/>
+        <location filename="../UI/UserInterface.py" line="6541"/>
         <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="6716"/>
+        <location filename="../UI/UserInterface.py" line="6729"/>
         <source>Trying host {0}</source>
         <translation>Tento su host {0}</translation>
     </message>
@@ -76145,7 +76150,7 @@
         <translation>Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5969"/>
+        <location filename="../UI/UserInterface.py" line="5982"/>
         <source>Keyboard shortcut file (*.e4k)</source>
         <translation>File scorciatoi tastiera (*.e4k)</translation>
     </message>
@@ -76185,27 +76190,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="6780"/>
+        <location filename="../UI/UserInterface.py" line="6793"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6773"/>
+        <location filename="../UI/UserInterface.py" line="6786"/>
         <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="5737"/>
+        <location filename="../UI/UserInterface.py" line="5743"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5737"/>
+        <location filename="../UI/UserInterface.py" line="5743"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6780"/>
+        <location filename="../UI/UserInterface.py" line="6793"/>
         <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>
@@ -76291,12 +76296,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5017"/>
+        <location filename="../UI/UserInterface.py" line="5023"/>
         <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="6988"/>
+        <location filename="../UI/UserInterface.py" line="7001"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished">Seleziona cartella di lavoro</translation>
     </message>
@@ -76671,7 +76676,7 @@
         <translation type="unfinished">Apri documentazione su PyQt4 {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5464"/>
+        <location filename="../UI/UserInterface.py" line="5470"/>
         <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>
@@ -76681,7 +76686,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6707"/>
+        <location filename="../UI/UserInterface.py" line="6720"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76701,7 +76706,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6711"/>
+        <location filename="../UI/UserInterface.py" line="6724"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76771,27 +76776,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="4736"/>
+        <location filename="../UI/UserInterface.py" line="4742"/>
         <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="6874"/>
-        <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="6887"/>
+        <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="6900"/>
         <source>Eric6 is up to date</source>
         <translation type="unfinished">Eric6 è aggiornato</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6887"/>
+        <location filename="../UI/UserInterface.py" line="6900"/>
         <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="6969"/>
+        <location filename="../UI/UserInterface.py" line="6982"/>
         <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>
@@ -76811,7 +76816,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6727"/>
+        <location filename="../UI/UserInterface.py" line="6740"/>
         <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>
@@ -76856,7 +76861,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6286"/>
+        <location filename="../UI/UserInterface.py" line="6299"/>
         <source>Load session</source>
         <translation type="unfinished">Carica sessione</translation>
     </message>
@@ -76871,17 +76876,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6286"/>
+        <location filename="../UI/UserInterface.py" line="6299"/>
         <source>eric6 Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6333"/>
+        <location filename="../UI/UserInterface.py" line="6346"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6333"/>
+        <location filename="../UI/UserInterface.py" line="6346"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76896,17 +76901,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6862"/>
+        <location filename="../UI/UserInterface.py" line="6875"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6862"/>
+        <location filename="../UI/UserInterface.py" line="6875"/>
         <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="6852"/>
+        <location filename="../UI/UserInterface.py" line="6865"/>
         <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>
@@ -76961,7 +76966,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5584"/>
+        <location filename="../UI/UserInterface.py" line="5590"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
--- a/i18n/eric6_pt.ts	Fri Nov 16 20:00:03 2018 +0100
+++ b/i18n/eric6_pt.ts	Sat Nov 17 12:45:58 2018 +0100
@@ -5603,35 +5603,40 @@
         <translation>O ficheiro &lt;b&gt;{0}&lt;/b&gt; existe mas não tem classes.</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="542"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="539"/>
         <source>uic error</source>
         <translation>erro uic</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="542"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="539"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Houve um erro ao carregar o form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="754"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="751"/>
         <source>Code Generation</source>
         <translation>Geração de Código</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="620"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="617"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não se pode abrir o ficheiro modelo de código &quot;{0}&quot;&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="656"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="653"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não se pode abrir o ficheiro fonte &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="754"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="751"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não se pode escrever o ficheiro fonte &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
+    <message>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="207"/>
+        <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>Crypto</name>
@@ -6976,7 +6981,7 @@
 <context>
     <name>DebuggerInterfacePython</name>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/>
         <source>Start Debugger</source>
         <translation type="unfinished">Iniciar o Depurador</translation>
     </message>
@@ -6986,42 +6991,42 @@
         <translation type="obsolete">&lt;p&gt;Intérprete de Python2 não configurado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/>
         <source>&lt;p&gt;The debugger backend could not be started.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;A instalação de retaguarda do depurador não pode iniciar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="936"/>
-        <source>Parent Process</source>
-        <translation type="unfinished">Processo Pai</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebuggerInterfacePython.py" line="937"/>
-        <source>Child process</source>
-        <translation type="unfinished">Processo Filho</translation>
+        <source>Parent Process</source>
+        <translation type="unfinished">Processo Pai</translation>
     </message>
     <message>
         <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/>
+        <source>Child process</source>
+        <translation type="unfinished">Processo Filho</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/>
         <source>Client forking</source>
         <translation type="unfinished">Bifurcação do Cliente</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="938"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="939"/>
         <source>Select the fork branch to follow.</source>
         <translation type="unfinished">Selecionar o ramo da bifurcação a seguir.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/>
         <source>Debug Protocol Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="983"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="985"/>
         <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="348"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="349"/>
         <source>&lt;p&gt;No suitable {0} environment configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43297,7 +43302,7 @@
         <translation>Selecionar uma rede para conetar</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="350"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="354"/>
         <source>Press to connect to the selected network</source>
         <translation>Pressionar para conetar à rede selecionada</translation>
     </message>
@@ -43327,57 +43332,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/>
         <source>Save Messages</source>
         <translation>Gravar Mensagens</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="421"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="425"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="438"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="442"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/>
         <source>Error saving Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="457"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="461"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="475"/>
         <source>Copy</source>