Debugger eric7

Fri, 01 Nov 2024 18:12:30 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 01 Nov 2024 18:12:30 +0100
branch
eric7
changeset 11029
1cd8701ed260
parent 11028
6353fe3204c9
child 11030
46172eee98b6

Debugger
- Added a configuration option to not stop at the first executable statement when debugging in passive mode.

docs/changelog.md file | annotate | diff | comparison | revisions
src/eric7/APIs/Python3/eric7.api file | annotate | diff | comparison | revisions
src/eric7/Debugger/DebugServer.py file | annotate | diff | comparison | revisions
src/eric7/Debugger/DebuggerInterfaceNone.py file | annotate | diff | comparison | revisions
src/eric7/Debugger/DebuggerInterfacePython.py file | annotate | diff | comparison | revisions
src/eric7/Documentation/Help/source.qch file | annotate | diff | comparison | revisions
src/eric7/Documentation/Help/source.qhp file | annotate | diff | comparison | revisions
src/eric7/Documentation/Source/eric7.Debugger.DebuggerInterfaceNone.html file | annotate | diff | comparison | revisions
src/eric7/Documentation/Source/eric7.Debugger.DebuggerInterfacePython.html file | annotate | diff | comparison | revisions
src/eric7/Preferences/ConfigurationPages/DebuggerGeneralPage.py file | annotate | diff | comparison | revisions
src/eric7/Preferences/ConfigurationPages/DebuggerGeneralPage.ui file | annotate | diff | comparison | revisions
src/eric7/Preferences/ConfigurationPages/Ui_DebuggerGeneralPage.py file | annotate | diff | comparison | revisions
src/eric7/Preferences/__init__.py file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_cs.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_de.qm file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_de.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_empty.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_en.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_es.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_fr.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_it.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_pt.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_ru.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_tr.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_zh_CN.ts file | annotate | diff | comparison | revisions
--- a/docs/changelog.md	Fri Nov 01 12:25:41 2024 +0100
+++ b/docs/changelog.md	Fri Nov 01 18:12:30 2024 +0100
@@ -2,6 +2,9 @@
 
 ### Version 24.12
 - bug fixes
+- Debugger
+    - Added a configuration option to not stop at the first executable statement
+      when debugging in passive mode.
 - MicroPython
     - Added support for ESP-C2, ESP32-C6, ESP32-H2, ESP32-P4 and ESP8684.
 - Project Type 'Eric7 Plugin'
--- a/src/eric7/APIs/Python3/eric7.api	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/APIs/Python3/eric7.api	Fri Nov 01 18:12:30 2024 +0100
@@ -846,6 +846,7 @@
 eric7.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteWatchpoint?4(debuggerId, cond, setWatch, temp=False)
 eric7.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteWatchpointEnable?4(debuggerId, cond, enable)
 eric7.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.remoteWatchpointIgnore?4(debuggerId, cond, count)
+eric7.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.setAutoContinue?4(autoContinue)
 eric7.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.setCallTraceEnabled?4(debuggerId, on)
 eric7.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.shutdown?4()
 eric7.Debugger.DebuggerInterfaceNone.DebuggerInterfaceNone.startRemote?4(port, runInConsole, venvName, originalPathString, workingDir=None, configOverride=None, startViaServer=None, )
@@ -890,6 +891,7 @@
 eric7.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteWatchpoint?4(debuggerId, cond, setWatch, temp=False)
 eric7.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteWatchpointEnable?4(debuggerId, cond, enable)
 eric7.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.remoteWatchpointIgnore?4(debuggerId, cond, count)
+eric7.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.setAutoContinue?4(autoContinue)
 eric7.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.setCallTraceEnabled?4(debuggerId, on)
 eric7.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.shutdown?4()
 eric7.Debugger.DebuggerInterfacePython.DebuggerInterfacePython.startRemote?4(port, runInConsole, venvName, originalPathString, workingDir="", configOverride=None, startViaServer=None, )
--- a/src/eric7/Debugger/DebugServer.py	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/Debugger/DebugServer.py	Fri Nov 01 18:12:30 2024 +0100
@@ -966,6 +966,9 @@
 
         if self.passive:
             self.__createDebuggerInterface(Preferences.getDebugger("PassiveDbgType"))
+            self.debuggerInterface.setAutoContinue(
+                Preferences.getDebugger("PassivAutoContinue")
+            )
 
         self.debuggerInterface.newConnection(sock)
 
--- a/src/eric7/Debugger/DebuggerInterfaceNone.py	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/Debugger/DebuggerInterfaceNone.py	Fri Nov 01 18:12:30 2024 +0100
@@ -579,6 +579,18 @@
         """
         return
 
+    def setAutoContinue(self, autoContinue):
+        """
+        Public method to set the automatic continue flag of the interface.
+
+        If this is set to True, the debugger will tell the debug client to continue
+        when it stops at the first line of the script to be debugged.
+
+        @param autoContinue flag indicating the auto continue state
+        @type bool
+        """
+        return
+
 
 def createDebuggerInterfaceNone(debugServer, passive):
     """
--- a/src/eric7/Debugger/DebuggerInterfacePython.py	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/Debugger/DebuggerInterfacePython.py	Fri Nov 01 18:12:30 2024 +0100
@@ -1617,6 +1617,18 @@
             debuggerId,
         )
 
+    def setAutoContinue(self, autoContinue):
+        """
+        Public method to set the automatic continue flag of the interface.
+
+        If this is set to True, the debugger will tell the debug client to continue
+        when it stops at the first line of the script to be debugged.
+
+        @param autoContinue flag indicating the auto continue state
+        @type bool
+        """
+        self.__autoContinue = autoContinue
+
     def __receiveJson(self, sock):
         """
         Private method to handle data from the client.
Binary file src/eric7/Documentation/Help/source.qch has changed
--- a/src/eric7/Documentation/Help/source.qhp	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/Documentation/Help/source.qhp	Fri Nov 01 18:12:30 2024 +0100
@@ -4255,6 +4255,7 @@
       <keyword name="DebuggerInterfaceNone.remoteWatchpoint" id="DebuggerInterfaceNone.remoteWatchpoint" ref="eric7.Debugger.DebuggerInterfaceNone.html#DebuggerInterfaceNone.remoteWatchpoint" />
       <keyword name="DebuggerInterfaceNone.remoteWatchpointEnable" id="DebuggerInterfaceNone.remoteWatchpointEnable" ref="eric7.Debugger.DebuggerInterfaceNone.html#DebuggerInterfaceNone.remoteWatchpointEnable" />
       <keyword name="DebuggerInterfaceNone.remoteWatchpointIgnore" id="DebuggerInterfaceNone.remoteWatchpointIgnore" ref="eric7.Debugger.DebuggerInterfaceNone.html#DebuggerInterfaceNone.remoteWatchpointIgnore" />
+      <keyword name="DebuggerInterfaceNone.setAutoContinue" id="DebuggerInterfaceNone.setAutoContinue" ref="eric7.Debugger.DebuggerInterfaceNone.html#DebuggerInterfaceNone.setAutoContinue" />
       <keyword name="DebuggerInterfaceNone.setCallTraceEnabled" id="DebuggerInterfaceNone.setCallTraceEnabled" ref="eric7.Debugger.DebuggerInterfaceNone.html#DebuggerInterfaceNone.setCallTraceEnabled" />
       <keyword name="DebuggerInterfaceNone.shutdown" id="DebuggerInterfaceNone.shutdown" ref="eric7.Debugger.DebuggerInterfaceNone.html#DebuggerInterfaceNone.shutdown" />
       <keyword name="DebuggerInterfaceNone.startRemote" id="DebuggerInterfaceNone.startRemote" ref="eric7.Debugger.DebuggerInterfaceNone.html#DebuggerInterfaceNone.startRemote" />
@@ -4312,6 +4313,7 @@
       <keyword name="DebuggerInterfacePython.remoteWatchpoint" id="DebuggerInterfacePython.remoteWatchpoint" ref="eric7.Debugger.DebuggerInterfacePython.html#DebuggerInterfacePython.remoteWatchpoint" />
       <keyword name="DebuggerInterfacePython.remoteWatchpointEnable" id="DebuggerInterfacePython.remoteWatchpointEnable" ref="eric7.Debugger.DebuggerInterfacePython.html#DebuggerInterfacePython.remoteWatchpointEnable" />
       <keyword name="DebuggerInterfacePython.remoteWatchpointIgnore" id="DebuggerInterfacePython.remoteWatchpointIgnore" ref="eric7.Debugger.DebuggerInterfacePython.html#DebuggerInterfacePython.remoteWatchpointIgnore" />
+      <keyword name="DebuggerInterfacePython.setAutoContinue" id="DebuggerInterfacePython.setAutoContinue" ref="eric7.Debugger.DebuggerInterfacePython.html#DebuggerInterfacePython.setAutoContinue" />
       <keyword name="DebuggerInterfacePython.setCallTraceEnabled" id="DebuggerInterfacePython.setCallTraceEnabled" ref="eric7.Debugger.DebuggerInterfacePython.html#DebuggerInterfacePython.setCallTraceEnabled" />
       <keyword name="DebuggerInterfacePython.shutdown" id="DebuggerInterfacePython.shutdown" ref="eric7.Debugger.DebuggerInterfacePython.html#DebuggerInterfacePython.shutdown" />
       <keyword name="DebuggerInterfacePython.startRemote" id="DebuggerInterfacePython.startRemote" ref="eric7.Debugger.DebuggerInterfacePython.html#DebuggerInterfacePython.startRemote" />
--- a/src/eric7/Documentation/Source/eric7.Debugger.DebuggerInterfaceNone.html	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/Documentation/Source/eric7.Debugger.DebuggerInterfaceNone.html	Fri Nov 01 18:12:30 2024 +0100
@@ -204,6 +204,10 @@
 <td>Public method to ignore a watch expression the next couple of occurrences.</td>
 </tr>
 <tr>
+<td><a href="#DebuggerInterfaceNone.setAutoContinue">setAutoContinue</a></td>
+<td>Public method to set the automatic continue flag of the interface.</td>
+</tr>
+<tr>
 <td><a href="#DebuggerInterfaceNone.setCallTraceEnabled">setCallTraceEnabled</a></td>
 <td>Public method to set the call trace state.</td>
 </tr>
@@ -976,6 +980,24 @@
 number of occurrences to ignore
 </dd>
 </dl>
+<a NAME="DebuggerInterfaceNone.setAutoContinue" ID="DebuggerInterfaceNone.setAutoContinue"></a>
+<h4>DebuggerInterfaceNone.setAutoContinue</h4>
+<b>setAutoContinue</b>(<i>autoContinue</i>)
+<p>
+        Public method to set the automatic continue flag of the interface.
+</p>
+<p>
+        If this is set to True, the debugger will tell the debug client to continue
+        when it stops at the first line of the script to be debugged.
+</p>
+
+<dl>
+
+<dt><i>autoContinue</i> (bool)</dt>
+<dd>
+flag indicating the auto continue state
+</dd>
+</dl>
 <a NAME="DebuggerInterfaceNone.setCallTraceEnabled" ID="DebuggerInterfaceNone.setCallTraceEnabled"></a>
 <h4>DebuggerInterfaceNone.setCallTraceEnabled</h4>
 <b>setCallTraceEnabled</b>(<i>debuggerId, on</i>)
--- a/src/eric7/Documentation/Source/eric7.Debugger.DebuggerInterfacePython.html	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/Documentation/Source/eric7.Debugger.DebuggerInterfacePython.html	Fri Nov 01 18:12:30 2024 +0100
@@ -264,6 +264,10 @@
 <td>Public method to ignore a watch expression the next couple of occurrences.</td>
 </tr>
 <tr>
+<td><a href="#DebuggerInterfacePython.setAutoContinue">setAutoContinue</a></td>
+<td>Public method to set the automatic continue flag of the interface.</td>
+</tr>
+<tr>
 <td><a href="#DebuggerInterfacePython.setCallTraceEnabled">setCallTraceEnabled</a></td>
 <td>Public method to set the call trace state.</td>
 </tr>
@@ -1341,6 +1345,24 @@
 number of occurrences to ignore
 </dd>
 </dl>
+<a NAME="DebuggerInterfacePython.setAutoContinue" ID="DebuggerInterfacePython.setAutoContinue"></a>
+<h4>DebuggerInterfacePython.setAutoContinue</h4>
+<b>setAutoContinue</b>(<i>autoContinue</i>)
+<p>
+        Public method to set the automatic continue flag of the interface.
+</p>
+<p>
+        If this is set to True, the debugger will tell the debug client to continue
+        when it stops at the first line of the script to be debugged.
+</p>
+
+<dl>
+
+<dt><i>autoContinue</i> (bool)</dt>
+<dd>
+flag indicating the auto continue state
+</dd>
+</dl>
 <a NAME="DebuggerInterfacePython.setCallTraceEnabled" ID="DebuggerInterfacePython.setCallTraceEnabled"></a>
 <h4>DebuggerInterfacePython.setCallTraceEnabled</h4>
 <b>setCallTraceEnabled</b>(<i>debuggerId, on</i>)
--- a/src/eric7/Preferences/ConfigurationPages/DebuggerGeneralPage.py	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/Preferences/ConfigurationPages/DebuggerGeneralPage.py	Fri Nov 01 18:12:30 2024 +0100
@@ -135,6 +135,9 @@
             if index == -1:
                 index = 0
             self.passiveDbgBackendCombo.setCurrentIndex(index)
+            self.passiveAutoContinueCheckBox.setChecked(
+                Preferences.getDebugger("PassivAutoContinue")
+            )
 
         self.debugEnvironReplaceCheckBox.setChecked(
             Preferences.getDebugger("DebugEnvironmentReplace")
@@ -208,11 +211,19 @@
         Preferences.setDebugger("RemoteExecution", self.execLineEdit.text())
         Preferences.setDebugger("RemoteDebugClient", self.remoteDebugClientEdit.text())
 
-        Preferences.setDebugger("PassiveDbgEnabled", self.passiveDbgGroup.isChecked())
-        Preferences.setDebugger("PassiveDbgPort", self.passiveDbgPortSpinBox.value())
-        Preferences.setDebugger(
-            "PassiveDbgType", self.passiveDbgBackendCombo.currentText()
-        )
+        if self.passiveDbgGroup.isEnabled():
+            Preferences.setDebugger(
+                "PassiveDbgEnabled", self.passiveDbgGroup.isChecked()
+            )
+            Preferences.setDebugger(
+                "PassiveDbgPort", self.passiveDbgPortSpinBox.value()
+            )
+            Preferences.setDebugger(
+                "PassiveDbgType", self.passiveDbgBackendCombo.currentText()
+            )
+            Preferences.setDebugger(
+                "PassivAutoContinue", self.passiveAutoContinueCheckBox.isChecked()
+            )
 
         interface = self.interfaceSelectorComboBox.currentData()
         if interface == "selected":
--- a/src/eric7/Preferences/ConfigurationPages/DebuggerGeneralPage.ui	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/Preferences/ConfigurationPages/DebuggerGeneralPage.ui	Fri Nov 01 18:12:30 2024 +0100
@@ -218,30 +218,20 @@
          <bool>true</bool>
         </property>
         <layout class="QGridLayout" name="gridLayout">
-         <item row="2" column="0">
-          <widget class="QLabel" name="label">
+         <item row="0" column="0" colspan="4">
+          <widget class="QLabel" name="TextLabel1_2_2">
            <property name="text">
-            <string>Debugger Type:</string>
+            <string>&lt;font color=&quot;#FF0000&quot;&gt;&lt;b&gt;Note:&lt;/b&gt; These settings are activated at the next startup of the application.&lt;/font&gt;</string>
+           </property>
+           <property name="wordWrap">
+            <bool>true</bool>
            </property>
           </widget>
          </item>
-         <item row="1" column="2" colspan="2">
-          <spacer name="horizontalSpacer_2">
-           <property name="orientation">
-            <enum>Qt::Horizontal</enum>
-           </property>
-           <property name="sizeHint" stdset="0">
-            <size>
-             <width>91</width>
-             <height>20</height>
-            </size>
-           </property>
-          </spacer>
-         </item>
-         <item row="2" column="1" colspan="2">
-          <widget class="QComboBox" name="passiveDbgBackendCombo">
-           <property name="toolTip">
-            <string>Select the debugger type of the backend</string>
+         <item row="1" column="0">
+          <widget class="QLabel" name="passiveDbgPortLabel">
+           <property name="text">
+            <string>Debug Server Port:</string>
            </property>
           </widget>
          </item>
@@ -265,13 +255,30 @@
            </property>
           </widget>
          </item>
-         <item row="0" column="0" colspan="4">
-          <widget class="QLabel" name="TextLabel1_2_2">
+         <item row="1" column="2" colspan="2">
+          <spacer name="horizontalSpacer_2">
+           <property name="orientation">
+            <enum>Qt::Horizontal</enum>
+           </property>
+           <property name="sizeHint" stdset="0">
+            <size>
+             <width>91</width>
+             <height>20</height>
+            </size>
+           </property>
+          </spacer>
+         </item>
+         <item row="2" column="0">
+          <widget class="QLabel" name="label">
            <property name="text">
-            <string>&lt;font color=&quot;#FF0000&quot;&gt;&lt;b&gt;Note:&lt;/b&gt; These settings are activated at the next startup of the application.&lt;/font&gt;</string>
+            <string>Debugger Type:</string>
            </property>
-           <property name="wordWrap">
-            <bool>true</bool>
+          </widget>
+         </item>
+         <item row="2" column="1" colspan="2">
+          <widget class="QComboBox" name="passiveDbgBackendCombo">
+           <property name="toolTip">
+            <string>Select the debugger type of the backend</string>
            </property>
           </widget>
          </item>
@@ -288,10 +295,19 @@
            </property>
           </spacer>
          </item>
-         <item row="1" column="0">
-          <widget class="QLabel" name="passiveDbgPortLabel">
+         <item row="3" column="0" colspan="4">
+          <widget class="QCheckBox" name="passiveAutoContinueCheckBox">
+           <property name="toolTip">
+            <string>Select to not stop the debugger at the first executable line.</string>
+           </property>
+           <property name="whatsThis">
+            <string>&lt;b&gt;Don't stop at first line&lt;/b&gt;&lt;p&gt;This prevents the debugger from stopping at the first executable line.&lt;/p&gt;</string>
+           </property>
            <property name="text">
-            <string>Debug Server Port:</string>
+            <string>Don't stop at first line</string>
+           </property>
+           <property name="checked">
+            <bool>true</bool>
            </property>
           </widget>
          </item>
@@ -871,6 +887,7 @@
   <tabstop>passiveDbgGroup</tabstop>
   <tabstop>passiveDbgPortSpinBox</tabstop>
   <tabstop>passiveDbgBackendCombo</tabstop>
+  <tabstop>passiveAutoContinueCheckBox</tabstop>
   <tabstop>remoteDebuggerGroup</tabstop>
   <tabstop>hostLineEdit</tabstop>
   <tabstop>execLineEdit</tabstop>
--- a/src/eric7/Preferences/ConfigurationPages/Ui_DebuggerGeneralPage.py	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/Preferences/ConfigurationPages/Ui_DebuggerGeneralPage.py	Fri Nov 01 18:12:30 2024 +0100
@@ -101,29 +101,33 @@
         self.passiveDbgGroup.setObjectName("passiveDbgGroup")
         self.gridLayout = QtWidgets.QGridLayout(self.passiveDbgGroup)
         self.gridLayout.setObjectName("gridLayout")
-        self.label = QtWidgets.QLabel(parent=self.passiveDbgGroup)
-        self.label.setObjectName("label")
-        self.gridLayout.addWidget(self.label, 2, 0, 1, 1)
-        spacerItem2 = QtWidgets.QSpacerItem(91, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
-        self.gridLayout.addItem(spacerItem2, 1, 2, 1, 2)
-        self.passiveDbgBackendCombo = QtWidgets.QComboBox(parent=self.passiveDbgGroup)
-        self.passiveDbgBackendCombo.setObjectName("passiveDbgBackendCombo")
-        self.gridLayout.addWidget(self.passiveDbgBackendCombo, 2, 1, 1, 2)
+        self.TextLabel1_2_2 = QtWidgets.QLabel(parent=self.passiveDbgGroup)
+        self.TextLabel1_2_2.setWordWrap(True)
+        self.TextLabel1_2_2.setObjectName("TextLabel1_2_2")
+        self.gridLayout.addWidget(self.TextLabel1_2_2, 0, 0, 1, 4)
+        self.passiveDbgPortLabel = QtWidgets.QLabel(parent=self.passiveDbgGroup)
+        self.passiveDbgPortLabel.setObjectName("passiveDbgPortLabel")
+        self.gridLayout.addWidget(self.passiveDbgPortLabel, 1, 0, 1, 1)
         self.passiveDbgPortSpinBox = QtWidgets.QSpinBox(parent=self.passiveDbgGroup)
         self.passiveDbgPortSpinBox.setMinimum(1024)
         self.passiveDbgPortSpinBox.setMaximum(65535)
         self.passiveDbgPortSpinBox.setProperty("value", 42424)
         self.passiveDbgPortSpinBox.setObjectName("passiveDbgPortSpinBox")
         self.gridLayout.addWidget(self.passiveDbgPortSpinBox, 1, 1, 1, 1)
-        self.TextLabel1_2_2 = QtWidgets.QLabel(parent=self.passiveDbgGroup)
-        self.TextLabel1_2_2.setWordWrap(True)
-        self.TextLabel1_2_2.setObjectName("TextLabel1_2_2")
-        self.gridLayout.addWidget(self.TextLabel1_2_2, 0, 0, 1, 4)
+        spacerItem2 = QtWidgets.QSpacerItem(91, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
+        self.gridLayout.addItem(spacerItem2, 1, 2, 1, 2)
+        self.label = QtWidgets.QLabel(parent=self.passiveDbgGroup)
+        self.label.setObjectName("label")
+        self.gridLayout.addWidget(self.label, 2, 0, 1, 1)
+        self.passiveDbgBackendCombo = QtWidgets.QComboBox(parent=self.passiveDbgGroup)
+        self.passiveDbgBackendCombo.setObjectName("passiveDbgBackendCombo")
+        self.gridLayout.addWidget(self.passiveDbgBackendCombo, 2, 1, 1, 2)
         spacerItem3 = QtWidgets.QSpacerItem(91, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
         self.gridLayout.addItem(spacerItem3, 2, 3, 1, 1)
-        self.passiveDbgPortLabel = QtWidgets.QLabel(parent=self.passiveDbgGroup)
-        self.passiveDbgPortLabel.setObjectName("passiveDbgPortLabel")
-        self.gridLayout.addWidget(self.passiveDbgPortLabel, 1, 0, 1, 1)
+        self.passiveAutoContinueCheckBox = QtWidgets.QCheckBox(parent=self.passiveDbgGroup)
+        self.passiveAutoContinueCheckBox.setChecked(True)
+        self.passiveAutoContinueCheckBox.setObjectName("passiveAutoContinueCheckBox")
+        self.gridLayout.addWidget(self.passiveAutoContinueCheckBox, 3, 0, 1, 4)
         self.verticalLayout_2.addWidget(self.passiveDbgGroup)
         self.remoteDebuggerGroup = QtWidgets.QGroupBox(parent=self.groupBox_12)
         self.remoteDebuggerGroup.setCheckable(True)
@@ -348,7 +352,8 @@
         DebuggerGeneralPage.setTabOrder(self.deleteAllowedHostButton, self.passiveDbgGroup)
         DebuggerGeneralPage.setTabOrder(self.passiveDbgGroup, self.passiveDbgPortSpinBox)
         DebuggerGeneralPage.setTabOrder(self.passiveDbgPortSpinBox, self.passiveDbgBackendCombo)
-        DebuggerGeneralPage.setTabOrder(self.passiveDbgBackendCombo, self.remoteDebuggerGroup)
+        DebuggerGeneralPage.setTabOrder(self.passiveDbgBackendCombo, self.passiveAutoContinueCheckBox)
+        DebuggerGeneralPage.setTabOrder(self.passiveAutoContinueCheckBox, self.remoteDebuggerGroup)
         DebuggerGeneralPage.setTabOrder(self.remoteDebuggerGroup, self.hostLineEdit)
         DebuggerGeneralPage.setTabOrder(self.hostLineEdit, self.execLineEdit)
         DebuggerGeneralPage.setTabOrder(self.execLineEdit, self.remoteDebugClientEdit)
@@ -393,13 +398,16 @@
         self.groupBox_12.setTitle(_translate("DebuggerGeneralPage", "Remote Debugging"))
         self.label_3.setText(_translate("DebuggerGeneralPage", "<font color=\"#FF0000\"><b>Note:</b> Only one or none of \'Passive\' or \'Remote Debugger must be activated.</font>"))
         self.passiveDbgGroup.setTitle(_translate("DebuggerGeneralPage", "Passive Debugger"))
-        self.label.setText(_translate("DebuggerGeneralPage", "Debugger Type:"))
-        self.passiveDbgBackendCombo.setToolTip(_translate("DebuggerGeneralPage", "Select the debugger type of the backend"))
+        self.TextLabel1_2_2.setText(_translate("DebuggerGeneralPage", "<font color=\"#FF0000\"><b>Note:</b> These settings are activated at the next startup of the application.</font>"))
+        self.passiveDbgPortLabel.setText(_translate("DebuggerGeneralPage", "Debug Server Port:"))
         self.passiveDbgPortSpinBox.setToolTip(_translate("DebuggerGeneralPage", "Enter the port the debugger should listen on"))
         self.passiveDbgPortSpinBox.setWhatsThis(_translate("DebuggerGeneralPage", "<b>Debug Server Port</b>\n"
 "<p>Enter the port the debugger should listen on.</p>"))
-        self.TextLabel1_2_2.setText(_translate("DebuggerGeneralPage", "<font color=\"#FF0000\"><b>Note:</b> These settings are activated at the next startup of the application.</font>"))
-        self.passiveDbgPortLabel.setText(_translate("DebuggerGeneralPage", "Debug Server Port:"))
+        self.label.setText(_translate("DebuggerGeneralPage", "Debugger Type:"))
+        self.passiveDbgBackendCombo.setToolTip(_translate("DebuggerGeneralPage", "Select the debugger type of the backend"))
+        self.passiveAutoContinueCheckBox.setToolTip(_translate("DebuggerGeneralPage", "Select to not stop the debugger at the first executable line."))
+        self.passiveAutoContinueCheckBox.setWhatsThis(_translate("DebuggerGeneralPage", "<b>Don\'t stop at first line</b><p>This prevents the debugger from stopping at the first executable line.</p>"))
+        self.passiveAutoContinueCheckBox.setText(_translate("DebuggerGeneralPage", "Don\'t stop at first line"))
         self.remoteDebuggerGroup.setToolTip(_translate("DebuggerGeneralPage", "Select, if the debugger should be run remotely"))
         self.remoteDebuggerGroup.setTitle(_translate("DebuggerGeneralPage", "Remote Debugger"))
         self.hostLabel.setText(_translate("DebuggerGeneralPage", "Remote Host:"))
--- a/src/eric7/Preferences/__init__.py	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/Preferences/__init__.py	Fri Nov 01 18:12:30 2024 +0100
@@ -77,6 +77,7 @@
         "PassiveDbgEnabled": False,
         "PassiveDbgPort": 42424,
         "PassiveDbgType": "Python",
+        "PassivAutoContinue": False,
         "AutomaticReset": False,
         "Autosave": True,
         "ThreeStateBreakPoints": False,
@@ -2015,6 +2016,7 @@
     if key in (
         "RemoteDbgEnabled",
         "PassiveDbgEnabled",
+        "PassivAutoContinue",
         "AutomaticReset",
         "DebugEnvironmentReplace",
         "PythonRedirect",
--- a/src/eric7/i18n/eric7_cs.ts	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/i18n/eric7_cs.ts	Fri Nov 01 18:12:30 2024 +0100
@@ -2015,47 +2015,47 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="281" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="284" />
       <source>Formatting Failure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="282" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="285" />
       <source>&lt;p&gt;Formatting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="545" />
-      <source>would reformat</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../CodeFormatting/BlackFormattingDialog.py" line="548" />
+      <source>would reformat</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="551" />
       <source>reformatted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="553" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="556" />
       <source>unchanged</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="557" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="560" />
       <source>unmodified</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="561" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="564" />
       <source>ignored</source>
       <translation type="unfinished">ignorováno</translation>
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="565" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="568" />
       <source>failed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="570" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="573" />
       <source>invalid status ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -4412,16 +4412,16 @@
   <context>
     <name>CircuitPythonUpdaterInterface</name>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="600" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="592" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="579" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="546" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="516" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="506" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="486" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="469" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="460" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="446" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="615" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="607" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="594" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="561" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="531" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="521" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="501" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="484" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="475" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="54" />
       <source>Install Modules</source>
       <translation type="unfinished" />
@@ -4457,10 +4457,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="385" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="375" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="365" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="346" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="396" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="355" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="95" />
       <source>Update Modules</source>
       <translation type="unfinished" />
@@ -4481,8 +4481,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="642" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="621" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="658" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="636" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="108" />
       <source>Uninstall Modules</source>
       <translation type="unfinished" />
@@ -4503,25 +4503,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="249" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="236" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="225" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="213" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="201" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="188" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="251" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="238" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="227" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="215" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="203" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="190" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="118" />
       <source>Add Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="284" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="269" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="287" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="271" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="119" />
       <source>Remove Bundles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="671" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="689" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="121" />
       <source>Show Local Cache Path</source>
       <translation type="unfinished" />
@@ -4542,132 +4542,132 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="189" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="191" />
       <source>Enter Bundle by 'User/Repo' Github String:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="202" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="204" />
       <source>&lt;p&gt;The bundle &lt;b&gt;{0}&lt;/b&gt; is already in the list.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="214" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="216" />
       <source>&lt;p&gt;The bundle string is invalid, expecting github URL or 'user/repository' string.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="226" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="228" />
       <source>&lt;p&gt;The bundle string is invalid. The repository doesn't exist (error code 404).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="237" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="239" />
       <source>&lt;p&gt;The bundle string is invalid. Is the repository a valid circup bundle?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="250" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="252" />
       <source>&lt;p&gt;Added bundle &lt;b&gt;{0}&lt;/b&gt; ({1}).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="270" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="272" />
       <source>Select the bundles to be removed:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="285" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="288" />
       <source>&lt;p&gt;These bundles were removed from the local bundles list.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="347" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="356" />
       <source>All modules are already up-to-date.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="366" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="377" />
       <source>&lt;p&gt;There was an error updating &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="387" />
       <source>&lt;p&gt;These modules were updated on the connected device.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="397" />
       <source>No modules could be updated.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="448" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="463" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation type="unfinished">Textové soubory (*.txt);;Všechny soubory (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="476" />
       <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not contain valid modules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="470" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="485" />
       <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="488" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="503" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished">Python soubory (*.py);;Všechny soubory (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="507" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="522" />
       <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not contain valid import statements or does not import external modules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="517" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="532" />
       <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="547" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="562" />
       <source>&lt;p&gt;Ready to install these modules?{0}{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="552" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="567" />
       <source>Dependencies:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="580" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="595" />
       <source>&lt;p&gt;Installation complete. These modules were installed successfully.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="593" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="608" />
       <source>&lt;p&gt;Installation complete. No modules were installed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="601" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="616" />
       <source>&lt;p&gt;No modules installation is required.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="622" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="637" />
       <source>Select the modules/packages to be uninstalled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="643" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="659" />
       <source>&lt;p&gt;These modules/packages were uninstalled from the connected device.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="672" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="690" />
       <source>&lt;p&gt;&lt;b&gt;circup&lt;/b&gt; stores the downloaded CircuitPython bundles in this directory.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -4675,44 +4675,44 @@
   <context>
     <name>CircupFunctions</name>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="75" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="84" />
       <source>Find Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="76" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="85" />
       <source>&lt;p&gt;There was an error: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="148" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="109" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="157" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="118" />
       <source>Download Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="110" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="119" />
       <source>&lt;p&gt;There was a problem downloading the bundle. Please try again in a moment.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="149" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="158" />
       <source>&lt;p&gt;Missing file &lt;b&gt;boot_out.txt&lt;/b&gt; on the device: wrong path or drive corrupted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="243" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="232" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="252" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="241" />
       <source>Install Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="233" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="242" />
       <source>&lt;p&gt;The compiled version of module &lt;b&gt;{0}&lt;/b&gt; cannot be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="244" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="253" />
       <source>&lt;p&gt;The module name &lt;b&gt;{0}&lt;/b&gt; is not known.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -4836,17 +4836,17 @@
   <context>
     <name>Closehead</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="52" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54" />
       <source>Revision &lt;{0}&gt; closed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="56" />
       <source>Revisions &lt;{0}&gt; closed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="61" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="63" />
       <source>Closing Heads</source>
       <translation type="unfinished" />
     </message>
@@ -6172,19 +6172,19 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1650" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1609" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1652" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1611" />
       <source>{0} - {1}</source>
       <comment>issue code, message</comment>
       <translation type="unfinished">{0} - {1}</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2995" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2997" />
       <source>Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2996" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2998" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
@@ -7460,7 +7460,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="713" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="715" />
       <location filename="../CondaInterface/CondaPackagesWidget.py" line="181" />
       <source>Delete Environment</source>
       <translation type="unfinished" />
@@ -7507,22 +7507,22 @@
       <translation type="unfinished">Textové soubory (*.txt);;Všechny soubory (*)</translation>
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="686" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="687" />
       <source>Create Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="714" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="716" />
       <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="739" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="741" />
       <source>Edit Configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="740" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="742" />
       <source>The configuration file "{0}" does not exist or is not writable.</source>
       <translation type="unfinished" />
     </message>
@@ -8865,30 +8865,30 @@
   <context>
     <name>CycloneDX</name>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="190" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="182" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="151" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="115" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="192" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="184" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="153" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="117" />
       <source>CycloneDX - SBOM Creation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="118" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="120" />
       <source>&lt;p&gt;The configured input file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="152" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="154" />
       <source>&lt;p&gt;Some of the dependencies do not have pinned version numbers.&lt;ul&gt;{0}&lt;/ul&gt;The above listed packages will NOT be included in the generated CycloneDX SBOM file as version is a mandatory field.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="183" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="185" />
       <source>&lt;p&gt;The SBOM data was written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="191" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="193" />
       <source>&lt;p&gt;The SBOM file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9230,23 +9230,23 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1355" />
-      <location filename="../Debugger/DebugServer.py" line="1272" />
-      <location filename="../Debugger/DebugServer.py" line="1188" />
-      <location filename="../Debugger/DebugServer.py" line="1098" />
+      <location filename="../Debugger/DebugServer.py" line="1358" />
+      <location filename="../Debugger/DebugServer.py" line="1275" />
+      <location filename="../Debugger/DebugServer.py" line="1191" />
+      <location filename="../Debugger/DebugServer.py" line="1101" />
       <source>Start Debugger</source>
       <translation type="unfinished">Spustit debuger</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1356" />
-      <location filename="../Debugger/DebugServer.py" line="1273" />
-      <location filename="../Debugger/DebugServer.py" line="1189" />
-      <location filename="../Debugger/DebugServer.py" line="1099" />
+      <location filename="../Debugger/DebugServer.py" line="1359" />
+      <location filename="../Debugger/DebugServer.py" line="1276" />
+      <location filename="../Debugger/DebugServer.py" line="1192" />
+      <location filename="../Debugger/DebugServer.py" line="1102" />
       <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1945" />
+      <location filename="../Debugger/DebugServer.py" line="1948" />
       <source>
 Not connected
 </source>
@@ -9255,35 +9255,35 @@
 </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2110" />
+      <location filename="../Debugger/DebugServer.py" line="2113" />
       <source>Passive debug connection received
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2119" />
+      <location filename="../Debugger/DebugServer.py" line="2122" />
       <source>Passive debug connection received while not in passive mode.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2125" />
+      <location filename="../Debugger/DebugServer.py" line="2128" />
       <source>Debug Client Connection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2126" />
+      <location filename="../Debugger/DebugServer.py" line="2129" />
       <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2141" />
+      <location filename="../Debugger/DebugServer.py" line="2144" />
       <source>Passive debug connection closed
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2272" />
+      <location filename="../Debugger/DebugServer.py" line="2275" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9296,7 +9296,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2374" />
+      <location filename="../Debugger/DebugUI.py" line="2380" />
       <location filename="../Debugger/DebugUI.py" line="234" />
       <source>Run Script</source>
       <translation>Spustit skript</translation>
@@ -9317,8 +9317,8 @@
       <translation>&lt;b&gt;Spustit skript&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění skriptu bez debugeru. Pokud jsou v souboru neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="2386" />
       <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="2374" />
       <location filename="../Debugger/DebugUI.py" line="255" />
       <source>Run Project</source>
       <translation>Spustit projekt</translation>
@@ -9419,7 +9419,7 @@
       <translation>&lt;b&gt;Profilovat projekt&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění projektu s profilováním kódu. Pokud jsou v projektu neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2567" />
+      <location filename="../Debugger/DebugUI.py" line="2573" />
       <location filename="../Debugger/DebugUI.py" line="365" />
       <source>Debug Script</source>
       <translation>Debugovat skript</translation>
@@ -9440,8 +9440,8 @@
       <translation>&lt;b&gt;Debugovat skript&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a aktuální řádky jako první python příkaz v aktuálním editačním okně. Pokud jsou ve skriptu neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="2579" />
       <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="2567" />
       <location filename="../Debugger/DebugUI.py" line="387" />
       <source>Debug Project</source>
       <translation>Debugovat projekt</translation>
@@ -9462,7 +9462,7 @@
       <translation>&lt;b&gt;Debugovat projekt&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a nastavení aktuální řádky jako první python příkaz hlavního skriptu v aktuálním projektu. Pokud jsou v projektu neuložené změny, měly by se měly nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2889" />
+      <location filename="../Debugger/DebugUI.py" line="2895" />
       <location filename="../Debugger/DebugUI.py" line="411" />
       <location filename="../Debugger/DebugUI.py" line="409" />
       <source>Restart</source>
@@ -9901,66 +9901,66 @@
       <translation>&lt;p&gt;Podmínka breakpointu &lt;b&gt;{0}, {1}&lt;/b&gt; obsahuje syntaktickou chybu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1775" />
+      <location filename="../Debugger/DebugUI.py" line="1779" />
       <source>Watch Expression Error</source>
       <translation>Chyba sledovacího bodu</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1776" />
+      <location filename="../Debugger/DebugUI.py" line="1780" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Sledovací bod &lt;b&gt;{0}&lt;/b&gt; obsahuje syntaktickou chybu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1804" />
+      <location filename="../Debugger/DebugUI.py" line="1810" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Sledovací bod '&lt;b&gt;{0}&lt;/b&gt;' již existuje.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1809" />
-      <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Sledovací bod '&lt;b&gt;{0}&lt;/b&gt;' pro proměnnou &lt;b&gt;{1}&lt;/b&gt; již existuje.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="1815" />
+      <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Sledovací bod '&lt;b&gt;{0}&lt;/b&gt;' pro proměnnou &lt;b&gt;{1}&lt;/b&gt; již existuje.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="1821" />
       <source>Watch expression already exists</source>
       <translation>Sledovací bod již existuje</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1980" />
-      <location filename="../Debugger/DebugUI.py" line="1971" />
+      <location filename="../Debugger/DebugUI.py" line="1986" />
+      <location filename="../Debugger/DebugUI.py" line="1977" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1973" />
+      <location filename="../Debugger/DebugUI.py" line="1979" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2381" />
-      <location filename="../Debugger/DebugUI.py" line="2183" />
-      <location filename="../Debugger/DebugUI.py" line="1981" />
+      <location filename="../Debugger/DebugUI.py" line="2387" />
+      <location filename="../Debugger/DebugUI.py" line="2189" />
+      <location filename="../Debugger/DebugUI.py" line="1987" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>V aktuálním projektu není definován hlavní skript. Zrušeno</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2182" />
-      <location filename="../Debugger/DebugUI.py" line="2173" />
+      <location filename="../Debugger/DebugUI.py" line="2188" />
+      <location filename="../Debugger/DebugUI.py" line="2179" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2175" />
+      <location filename="../Debugger/DebugUI.py" line="2181" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2574" />
+      <location filename="../Debugger/DebugUI.py" line="2580" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>V aktuálním projektu není definován hlavní skript. Debugování není možné.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3246" />
+      <location filename="../Debugger/DebugUI.py" line="3252" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -10123,26 +10123,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="325" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="312" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="336" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="323" />
       <source>Add allowed host</source>
       <translation>Přidat povoleného hosta</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="349" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="313" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="360" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="324" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Zadání IP adresy povoleného hosta</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="363" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="326" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="374" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="337" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Zadaná adresa &lt;b&gt;{0}&lt;/b&gt; není validní IP v4 nebo IP v6. Zrušeno...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="362" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="348" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="373" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="359" />
       <source>Edit allowed host</source>
       <translation>Editovat povolené hosty</translation>
     </message>
@@ -10239,13 +10239,8 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debugger Type:</source>
-      <translation>Typ debuggeru:</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Select the debugger type of the backend</source>
-      <translation>Vybrat typ debuggeru pro backend</translation>
+      <source>Debug Server Port:</source>
+      <translation>Port debug serveru:</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
@@ -10260,8 +10255,28 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debug Server Port:</source>
-      <translation>Port debug serveru:</translation>
+      <source>Debugger Type:</source>
+      <translation>Typ debuggeru:</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select the debugger type of the backend</source>
+      <translation>Vybrat typ debuggeru pro backend</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select to not stop the debugger at the first executable line.</source>
+      <translation type="unfinished">Vybrat pro zastavení debugeru na první spustitelné řádce.</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>&lt;b&gt;Don't stop at first line&lt;/b&gt;&lt;p&gt;This prevents the debugger from stopping at the first executable line.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;Nezastavovat na první řádce&lt;/b&gt;&lt;p&gt;Toto debugeru zabrání zastavit se na první spustitelné řádce.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Don't stop at first line</source>
+      <translation type="unfinished">Nezastavovat na prvním řádku</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
@@ -10608,46 +10623,46 @@
   <context>
     <name>DebuggerInterfacePython</name>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="728" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="705" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="609" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="563" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="445" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="422" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="345" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="321" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="258" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="747" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="724" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="628" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="582" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="464" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="441" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="364" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="340" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="277" />
       <source>Start Debugger</source>
       <translation type="unfinished">Spustit debuger</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="564" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="259" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="583" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="278" />
       <source>&lt;p&gt;No suitable Python3 environment configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="729" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="706" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="610" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="446" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="423" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="322" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="748" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="725" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="629" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="465" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="442" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="341" />
       <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="346" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="365" />
       <source>&lt;p&gt;Remote debugging is configured but no command for remote login was given.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1691" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1692" />
       <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;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -11653,8 +11668,8 @@
   <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="450" />
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="420" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421" />
       <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.ui" line="0" />
       <source>.desktop Wizard</source>
       <translation type="unfinished" />
@@ -12011,8 +12026,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451" />
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="452" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="422" />
       <source>Only one of 'Only Show In' or  'Not Show In' allowed.</source>
       <translation type="unfinished" />
     </message>
@@ -15170,12 +15185,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="287" />
+      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288" />
       <source>Tab and Indent Override</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288" />
+      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="289" />
       <source>Shall the selected entries really be removed?</source>
       <translation type="unfinished" />
     </message>
@@ -15510,27 +15525,27 @@
       <translation>Importovat styly zvýraznění</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="803" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="805" />
       <source>Delete Sub-Style</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="804" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="806" />
       <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="840" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="842" />
       <source>{0} - Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="867" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="869" />
       <source>Reset Sub-Styles to Default</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="868" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="870" />
       <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -21837,14 +21852,14 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="395" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="193" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1775" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1759" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1782" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1766" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="197" />
       <source>Erase Flash</source>
       <translation type="unfinished" />
@@ -21855,7 +21870,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1864" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1877" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="204" />
       <source>Flash Additional Firmware</source>
       <translation type="unfinished" />
@@ -21867,25 +21882,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="367" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="368" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="211" />
       <source>Restore Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="465" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="467" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="215" />
       <source>Show Chip ID</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="488" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="491" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="218" />
       <source>Show Flash ID</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="511" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="515" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="221" />
       <source>Show MAC Address</source>
       <translation type="unfinished" />
@@ -21906,139 +21921,139 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1863" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1820" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="366" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1876" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1830" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="367" />
       <source>'esptool write_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="396" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="425" />
       <source>unknown</source>
       <translation type="unfinished">neznámý</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="434" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="436" />
       <source>&lt;h4&gt;{0} Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="442" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="444" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="448" />
       <source>{0} Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="466" />
       <source>'esptool chip_id' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="487" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="490" />
       <source>'esptool flash_id' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="510" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="514" />
       <source>'esptool read_mac' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="641" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="646" />
       <source>Set Country</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="642" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="647" />
       <source>Reset Country</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="965" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="970" />
       <source>Error saving credentials: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="976" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="981" />
       <source>Error saving auto-connect script: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="980" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="985" />
       <source>Error modifying 'boot.py': {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1017" />
       <source>Error deleting credentials: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1096" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1101" />
       <source>unknown ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1475" />
-      <source>Active</source>
-      <translation type="unfinished">Aktivní</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1476" />
-      <source>Name</source>
-      <translation type="unfinished">Jméno</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1477" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/EspDevices.py" line="1480" />
-      <source>Address Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1481" />
-      <source>Public</source>
-      <translation type="unfinished" />
+      <source>Active</source>
+      <translation type="unfinished">Aktivní</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/EspDevices.py" line="1481" />
+      <source>Name</source>
+      <translation type="unfinished">Jméno</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1482" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1485" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1486" />
+      <source>Public</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1486" />
       <source>Random</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1484" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1489" />
       <source>MTU</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1484" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1489" />
       <source>{0} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1760" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1767" />
       <source>Shall the flash of the selected device really be erased?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1774" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1781" />
       <source>'esptool erase_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1821" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1831" />
       <source>Flash µPy/CPy Firmware</source>
       <translation type="unfinished" />
     </message>
@@ -22046,7 +22061,7 @@
   <context>
     <name>EspFirmwareSelectionDialog</name>
     <message>
-      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="68" />
+      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="77" />
       <source>Firmware Files (*.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -24335,22 +24350,22 @@
   <context>
     <name>FindFileFiltersEditDialog</name>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="109" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="111" />
       <source>Delete Selected Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="110" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="112" />
       <source>Shall the selected filters really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="127" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="129" />
       <source>Default Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="128" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="130" />
       <source>Do you really want to clear the list of defined file filters and replace it with the list of default filters?</source>
       <translation type="unfinished" />
     </message>
@@ -25039,7 +25054,7 @@
   <context>
     <name>FormattingDiffWidget</name>
     <message>
-      <location filename="../CodeFormatting/FormattingDiffWidget.py" line="63" />
+      <location filename="../CodeFormatting/FormattingDiffWidget.py" line="65" />
       <source>There is no difference.</source>
       <translation type="unfinished">Žádné rozdíly nebyly nalezeny.</translation>
     </message>
@@ -25139,7 +25154,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1715" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1747" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="219" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -25165,153 +25180,153 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="308" />
       <source>Adding files to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="316" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="321" />
       <source>Initial commit to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="348" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="357" />
       <source>Cloning project from a Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="448" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="460" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="449" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="461" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="518" />
       <source>Committing changes to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="584" />
       <source>Switch</source>
       <translation type="unfinished">Přepnout</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="585" />
       <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="597" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="614" />
       <source>Synchronizing with the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="664" />
       <source>Adding files/directories to the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="721" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="743" />
       <source>Removing files/directories from the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="814" />
       <source>Renaming {0}</source>
       <translation type="unfinished">Přejmenování {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="942" />
       <source>Unstage files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="968" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="957" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="996" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="985" />
       <source>Revert changes</source>
       <translation type="unfinished">Vrátit změny</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="958" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="986" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="969" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="997" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="975" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1003" />
       <source>Reverting changes</source>
       <translation type="unfinished">Navrácení změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1028" />
-      <source>Merging</source>
-      <translation type="unfinished">Merging</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1057" />
+      <source>Merging</source>
+      <translation type="unfinished">Merging</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1086" />
       <source>Main branch head</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1285" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1315" />
       <source>Git Command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1396" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1426" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1430" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Rodiče&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1406" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1436" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tagy&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1412" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1442" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Větve&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1417" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1447" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1422" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1457" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1462" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1437" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1467" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1443" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1473" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -25321,459 +25336,459 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1553" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1554" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1574" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1621" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1604" />
       <source>Git Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1575" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1605" />
       <source>&lt;p&gt;Copying the directory &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1592" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1622" />
       <source>&lt;p&gt;Copying the file &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2845" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1717" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2920" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1749" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1788" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1775" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1764" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1822" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1809" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1798" />
       <source>Git Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1823" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nelze přečíst.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1842" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1877" />
       <source>Fetching from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1879" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918" />
       <source>Pulling from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1919" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1962" />
       <source>Pushing to a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1948" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1994" />
       <source>Committing failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1974" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2021" />
       <source>Aborting uncommitted/failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2008" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2056" />
       <source>Applying patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2043" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2091" />
       <source>Check patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2046" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2094" />
       <source>Apply patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2130" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2181" />
       <source>Tagging in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2443" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2488" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2510" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2511" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2484" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2578" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2560" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2542" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2486" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2544" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2503" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2561" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2550" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2608" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2597" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2689" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2571" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2753" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2699" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2599" />
       <source>Git Bundle Files (*.bundle);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2580" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2627" />
       <source>List Bundle Heads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2687" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2751" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2697" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2660" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2775" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2746" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2816" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished">Neplatný bisect podpříkaz ({0}).</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3025" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2861" />
+      <source>Git Bisect ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2919" />
+      <source>Process Generation Error</source>
+      <translation type="unfinished">Chyba v procesu generování</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2965" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2948" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2930" />
+      <source>Create Bisect Replay File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2932" />
+      <source>Git Bisect Replay Files (*.replay)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2949" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2789" />
-      <source>Git Bisect ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2844" />
-      <source>Process Generation Error</source>
-      <translation type="unfinished">Chyba v procesu generování</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2890" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2873" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2855" />
-      <source>Create Bisect Replay File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2857" />
-      <source>Git Bisect Replay Files (*.replay)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2874" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2891" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2966" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2911" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2940" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2913" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3015" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2988" />
       <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3013" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3299" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3121" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3378" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3200" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3181" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3260" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3182" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3261" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3323" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3402" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3384" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3417" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3497" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3442" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3468" />
-      <source>Copy Changesets (Cancel)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3549" />
+      <source>Copy Changesets (Cancel)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3630" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3763" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3844" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3673" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3845" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3802" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3751" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3674" />
+      <source>Select a stash (empty for latest stash):</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3708" />
+      <source>Restore Stash</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3721" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
-      <source>Select a stash (empty for latest stash):</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3669" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3627" />
-      <source>Restore Stash</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3683" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3720" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3801" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3790" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3710" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3735" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3774" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3855" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3775" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3856" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3785" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3866" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3807" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3888" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3889" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3895" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3876" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3958" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished">Zobrazení nastavení kombinovaných konfigurací</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3899" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3985" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3921" />
-      <source>Performing Repository Housekeeping</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3963" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3965" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3970" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3976" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3982" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3987" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3993" />
-      <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3999" />
-      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011" />
+      <source>Performing Repository Housekeeping</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4054" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4056" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4061" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4067" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4073" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4078" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4084" />
+      <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4090" />
+      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4095" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4102" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4080" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4172" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4120" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4186" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4278" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4187" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4279" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4200" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4292" />
       <source>All</source>
       <translation type="unfinished">Vše</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4204" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4296" />
       <source>Submodule Path</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4297" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4254" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4347" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4382" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4357" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4318" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4453" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4414" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4387" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4484" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4441" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4539" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -32439,101 +32454,101 @@
       <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="519" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="520" />
       <source>Add Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="537" />
-      <source>Lock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538" />
-      <source>Enter a reason for the lock:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="556" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538" />
+      <source>Lock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="539" />
+      <source>Enter a reason for the lock:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="557" />
       <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="580" />
-      <source>Unlock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="581" />
+      <source>Unlock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="582" />
       <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="616" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="599" />
-      <source>Move Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600" />
-      <source>Enter the new path for the worktree:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600" />
+      <source>Move Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="601" />
+      <source>Enter the new path for the worktree:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="618" />
       <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="637" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="638" />
       <source>Remove Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="640" />
       <source>Remove Worktree Forcefully</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="645" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="646" />
       <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="672" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="673" />
       <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="727" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="703" />
-      <source>Prune Worktree Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704" />
-      <source>Do you really want to prune the information of these worktrees?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="728" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704" />
+      <source>Prune Worktree Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="705" />
+      <source>Do you really want to prune the information of these worktrees?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="729" />
       <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="765" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="754" />
-      <source>Repair Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755" />
-      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755" />
+      <source>Repair Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="756" />
+      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="767" />
       <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -32650,12 +32665,12 @@
   <context>
     <name>Gpg</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="73" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="76" />
       <source>Verify Signatures</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="124" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="128" />
       <source>Sign Revision</source>
       <translation type="unfinished" />
     </message>
@@ -35252,456 +35267,456 @@
   <context>
     <name>Hg</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="300" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="303" />
       <source>Create project repository</source>
       <translation>Vytvořit repozitář projektu</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="301" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="304" />
       <source>The project repository could not be created.</source>
       <translation>Úložiště projektu nelze vytvořit.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="334" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="338" />
       <source>Creating Mercurial repository</source>
       <translation>Vytváření Mercurial úložiště</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="353" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="359" />
       <source>Initial commit to Mercurial repository</source>
       <translation>Úvodní zápis změn (commit) do Mercurial úložiště</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="405" />
       <source>Cloning project from a Mercurial repository</source>
       <translation>Naklonovat projekt z Mercurial úložiště</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="503" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="516" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="504" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="517" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="566" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="580" />
       <source>Committing changes to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="661" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="679" />
       <source>Synchronizing with the Mercurial repository</source>
       <translation>Synchronizovat s Mercurial úložištěm</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="692" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="713" />
       <source>Adding files/directories to the Mercurial repository</source>
       <translation>Přidat soubory/složky do Mercurial úložiště</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="751" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="774" />
       <source>Removing files/directories from the Mercurial repository</source>
       <translation>Odebrat soubory/složky z Mercurial úložiště</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="829" />
       <source>Renaming {0}</source>
       <translation>Přejmenování {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="935" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="964" />
       <source>Tagging in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="981" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="970" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1011" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1000" />
       <source>Revert changes</source>
       <translation type="unfinished">Vrátit změny</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="971" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1001" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="982" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1012" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="988" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018" />
       <source>Reverting changes</source>
       <translation>Navrácení změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1033" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064" />
       <source>Merging</source>
       <translation>Merging</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1072" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1103" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1095" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1065" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1096" />
       <source>Do you really want to re-merge these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1073" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1104" />
       <source>Do you really want to re-merge the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1076" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1108" />
       <source>Re-Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1098" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1131" />
       <source>Current branch tip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1280" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1314" />
       <source>Mercurial command</source>
       <translation>Mercurial příkaz</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1457" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1492" />
       <source>Copying {0}</source>
       <translation>Kopírování {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1720" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1699" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1746" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737" />
       <source>Mercurial Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1721" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1759" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nelze přečíst.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2391" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2380" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1797" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2457" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2446" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1835" />
       <source>Apply changegroups</source>
       <translation>Použít skupinu změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1800" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1838" />
       <source>Pulling from a remote Mercurial repository</source>
       <translation>Stažení (pull) z Mercurial repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1845" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1884" />
       <source>Pushing to a remote Mercurial repository</source>
       <translation>Odeslání (push) do Mercurial repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1985" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2027" />
       <source>Marking as 'unresolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1987" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2029" />
       <source>Marking as 'resolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2009" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2051" />
       <source>Aborting uncommitted merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2032" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2075" />
       <source>Creating branch in the Mercurial repository</source>
       <translation>Vytvoření větve v Mercurial repozitáři</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2040" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2086" />
       <source>Created new branch &lt;{0}&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2095" />
       <source>Showing current branch</source>
       <translation>Zobrazení aktuální větve</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2136" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2184" />
       <source>Verifying the integrity of the Mercurial repository</source>
       <translation>Ověřit integritu Mercurial repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2149" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2200" />
       <source>Showing the combined configuration settings</source>
       <translation>Zobrazení nastavení kombinovaných konfigurací</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2160" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2215" />
       <source>Showing aliases for remote repositories</source>
       <translation>Zobrazení aliasů pro vzdálené úložiště</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2171" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230" />
       <source>Recovering from interrupted transaction</source>
       <translation>Obnovení z přerušené transakce</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2182" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2245" />
       <source>Identifying project directory</source>
       <translation>Rozpoznat složku projektu</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2227" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2291" />
       <source>Create .hgignore file</source>
       <translation>Vytvořit soubor .hgignore</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2292" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2329" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2303" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2285" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2351" />
       <source>Create changegroup</source>
       <translation>Vytvořit skupinu změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2287" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2353" />
       <source>Mercurial Changegroup Files (*.hg)</source>
       <translation>Soubory Mercurial skupiny změn (*.hg)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2304" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370" />
       <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2409" />
       <source>Preview changegroup</source>
       <translation>Náhled skupiny změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2372" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2345" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2438" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2411" />
       <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
       <translation>Soubory Mercurial skupiny změn (*.hg);;Všechny soubory (*)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2381" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2447" />
       <source>Shall the working directory be updated?</source>
       <translation>Má být pracovní adresář aktualizován?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2413" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2479" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation>Neplatný bisect podpříkaz ({0}).</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2433" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2501" />
       <source>Mercurial Bisect ({0})</source>
       <translation>Mercurial Bisect ({0})</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2527" />
       <source>Removing files from the Mercurial repository only</source>
       <translation>Odebrat soubory jen z Mercurial úložiště</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2500" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2481" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2576" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2557" />
       <source>Backing out changeset</source>
       <translation>Zálohovat skupinu změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2482" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2558" />
       <source>No revision given. Aborting...</source>
       <translation>Nebyla dána žádná revize. Ruším...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2516" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2511" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2593" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2587" />
       <source>Rollback last transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2512" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2588" />
       <source>Are you sure you want to rollback the last transaction?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2579" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2657" />
       <source>Import Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2627" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2707" />
       <source>Export Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2749" />
       <source>Change Phase</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2724" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2804" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2843" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2853" />
       <source>Copy Changesets (Stop)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2783" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2863" />
       <source>Copy Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2806" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2887" />
       <source>Create Unversioned Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2820" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2902" />
       <source>Delete All Backups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2821" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2903" />
       <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2912" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2892" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2881" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2994" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2963" />
       <source>Add Sub-repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2951" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2882" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3033" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2964" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2893" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2975" />
       <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2969" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2913" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3051" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2995" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2968" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2950" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2936" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3050" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3032" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3018" />
       <source>Remove Sub-repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2937" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3019" />
       <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3056" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3296" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3138" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3057" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3139" />
       <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3207" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3297" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3329" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3420" />
       <source>Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3437" />
       <source>Delete Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3347" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3438" />
       <source>Select the bookmark to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3449" />
       <source>Delete Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3382" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3476" />
       <source>Rename Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3421" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3518" />
       <source>Move Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3502" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3600" />
       <source>Pull Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3503" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3601" />
       <source>Select the bookmark to be pulled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3515" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3613" />
       <source>Pulling bookmark from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3641" />
       <source>Push Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3542" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3642" />
       <source>Select the bookmark to be push:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3657" />
       <source>Pushing bookmark to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
@@ -43250,22 +43265,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="644" />
       <source>Delete Host Minimum Protocol</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="643" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="645" />
       <source>&lt;p&gt;Shall the minimum protocol entry for host &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="708" />
       <source>Edit User Configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="707" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="709" />
       <source>You will loose all changes made in this dialog. Shall the data be saved first?</source>
       <translation type="unfinished" />
     </message>
@@ -43385,22 +43400,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="79" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="108" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="164" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -49046,52 +49061,52 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="300" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="303" />
       <source>Imports Sorting Failure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="301" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="304" />
       <source>&lt;p&gt;Imports sorting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="352" />
-      <source>would resort</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../CodeFormatting/IsortFormattingDialog.py" line="355" />
+      <source>would resort</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="358" />
       <source>resorted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="360" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="363" />
       <source>unchanged</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="364" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="367" />
       <source>skipped</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="368" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="371" />
       <source>failed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="373" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="376" />
       <source>error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="374" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="377" />
       <source>Unsupported 'isort' action ({0}) given.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="381" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="384" />
       <source>invalid status ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -49228,7 +49243,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="682" />
+      <location filename="../JediInterface/JediServer.py" line="683" />
       <location filename="../JediInterface/JediServer.py" line="522" />
       <source>Rename Variable</source>
       <translation type="unfinished" />
@@ -49259,27 +49274,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="690" />
+      <location filename="../JediInterface/JediServer.py" line="692" />
       <source>Refactoring</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="691" />
+      <location filename="../JediInterface/JediServer.py" line="693" />
       <source>&lt;p&gt;The refactoring could not be performed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="749" />
+      <location filename="../JediInterface/JediServer.py" line="751" />
       <source>Apply Refactoring</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="750" />
+      <location filename="../JediInterface/JediServer.py" line="752" />
       <source>&lt;p&gt;The refactoring could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="786" />
+      <location filename="../JediInterface/JediServer.py" line="788" />
       <source>The data received from the Jedi server could not be decoded. Please report this issue with the received data to the eric bugs email address.
 Error: {0}
 Data:
@@ -49288,7 +49303,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="796" />
+      <location filename="../JediInterface/JediServer.py" line="798" />
       <source>An exception happened in the Jedi client. Please report it to the eric bugs email address.
 Exception: {0}
 Value: {1}
@@ -49297,25 +49312,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="838" />
+      <location filename="../JediInterface/JediServer.py" line="840" />
       <source>The jedi and/or parso library is not installed.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="843" />
+      <location filename="../JediInterface/JediServer.py" line="845" />
       <source>'{0}' is not supported because the configured interpreter could not be started.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="851" />
+      <location filename="../JediInterface/JediServer.py" line="853" />
       <source>'{0}' is not supported because no suitable interpreter is configured.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="953" />
+      <location filename="../JediInterface/JediServer.py" line="955" />
       <source>Jedi</source>
       <translation type="unfinished" />
     </message>
@@ -49323,37 +49338,37 @@
   <context>
     <name>Largefiles</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="72" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="75" />
       <source>Convert Project - Converting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="88" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="92" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="89" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="93" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="100" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="104" />
       <source>Convert Project - Extracting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="145" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="150" />
       <source>Adding files to the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="174" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="182" />
       <source>Pulling large files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="196" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="205" />
       <source>Verifying the integrity of large files</source>
       <translation type="unfinished" />
     </message>
@@ -50666,13 +50681,13 @@
     <name>Lexers</name>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="412" />
-      <location filename="../Preferences/__init__.py" line="596" />
+      <location filename="../Preferences/__init__.py" line="597" />
       <source>Python Files (*.py *.py3)</source>
       <translation type="unfinished">Python soubory (*.py *.py3)</translation>
     </message>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="505" />
-      <location filename="../Preferences/__init__.py" line="599" />
+      <location filename="../Preferences/__init__.py" line="600" />
       <source>Python3 Files (*.py)</source>
       <translation>Python3 soubory (*.py)</translation>
     </message>
@@ -52501,18 +52516,18 @@
   <context>
     <name>MicroPythonDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="356" />
+      <location filename="../MicroPython/Devices/__init__.py" line="369" />
       <source>Generic MicroPython Board</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="403" />
+      <location filename="../MicroPython/Devices/__init__.py" line="416" />
       <source>RP2040/RP2350 based</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="566" />
-      <location filename="../MicroPython/Devices/__init__.py" line="555" />
+      <location filename="../MicroPython/Devices/__init__.py" line="579" />
+      <location filename="../MicroPython/Devices/__init__.py" line="568" />
       <source>Unknown Device</source>
       <translation type="unfinished" />
     </message>
@@ -53910,343 +53925,343 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="737" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="724" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="740" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="725" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="728" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="735" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1193" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1185" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="735" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1196" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1188" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="738" />
       <source>unknown</source>
       <translation type="unfinished">neznámý</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="796" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="787" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="799" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
       <source>Run Script</source>
       <translation type="unfinished">Spustit skript</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="779" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
       <source>There is no editor open. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="788" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="797" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="800" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="836" />
       <source>Start Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="834" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="837" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="849" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="852" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="866" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="869" />
       <source>Unsaved Chart Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="867" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="870" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="915" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="918" />
       <source>Start File Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="916" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="919" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="939" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1012" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1015" />
       <source>Downloads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1059" />
-      <source>Show Version</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1062" />
-      <source>Show Implementation</source>
+      <source>Show Version</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
+      <source>Show Implementation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Board Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1268" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1271" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1073" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1073" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Show Device Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
-      <source>Show Local Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <source>Show Local Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1082" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1085" />
       <source>Show Builtin Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1094" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1086" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1689" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1097" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1089" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1723" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1720" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1090" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1725" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1093" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1497" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1501" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1103" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1523" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1514" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1104" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1527" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1518" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1107" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1125" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1128" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1132" />
-      <source>Show Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1135" />
+      <source>Show Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Convert To UF2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1136" />
-      <source>Flash UF2 Device</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1139" />
-      <source>Manage Unknown Devices</source>
+      <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
-      <source>Ignored Serial Devices</source>
+      <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
-      <source>Configure</source>
-      <translation type="unfinished">Konfigurovat</translation>
+      <source>Ignored Serial Devices</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
+      <source>Configure</source>
+      <translation type="unfinished">Konfigurovat</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Quit</source>
       <translation type="unfinished">Konec</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1157" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1160" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1168" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1164" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1171" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1167" />
       <source>Device Version Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1172" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1202" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1215" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1206" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1218" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1209" />
       <source>Device Implementation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1207" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1210" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1216" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1219" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1272" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1299" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1302" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1315" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1318" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1327" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
       <source>Local Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1369" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1352" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1372" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1355" />
       <source>Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1353" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1356" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1370" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1373" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1394" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1397" />
       <source>Error handling device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1395" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1398" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1437" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1440" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1463" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1466" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished">Python soubory (*.py);;Všechny soubory (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1473" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1476" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1483" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1486" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1515" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1519" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1607" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1611" />
       <source>Add Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1608" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1657" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1709" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1714" />
       <source>Package '{0}' was installed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1724" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1729" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -56128,237 +56143,237 @@
   <context>
     <name>MultiProject</name>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="338" />
-      <location filename="../MultiProject/MultiProject.py" line="324" />
+      <location filename="../MultiProject/MultiProject.py" line="341" />
+      <location filename="../MultiProject/MultiProject.py" line="327" />
       <source>Copy Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="325" />
+      <location filename="../MultiProject/MultiProject.py" line="328" />
       <source>Enter directory for the new project (must not exist already):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="339" />
+      <location filename="../MultiProject/MultiProject.py" line="342" />
       <source>&lt;p&gt;The source project &lt;b&gt;{0}&lt;/b&gt; could not be copied to its destination &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="349" />
+      <location filename="../MultiProject/MultiProject.py" line="352" />
       <source>{0} - Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="499" />
+      <location filename="../MultiProject/MultiProject.py" line="502" />
       <source>Open Multi Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="556" />
-      <location filename="../MultiProject/MultiProject.py" line="546" />
-      <location filename="../MultiProject/MultiProject.py" line="501" />
+      <location filename="../MultiProject/MultiProject.py" line="559" />
+      <location filename="../MultiProject/MultiProject.py" line="549" />
+      <location filename="../MultiProject/MultiProject.py" line="504" />
       <source>Multi Project Files (*.emj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="554" />
+      <location filename="../MultiProject/MultiProject.py" line="557" />
       <source>Save Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="570" />
+      <location filename="../MultiProject/MultiProject.py" line="573" />
       <source>Save File</source>
       <translation>Uložit soubor</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="571" />
+      <location filename="../MultiProject/MultiProject.py" line="574" />
       <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="../MultiProject/MultiProject.py" line="598" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
       <source>Close Multiproject</source>
       <translation>Zavřít multiprojekt</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="599" />
+      <location filename="../MultiProject/MultiProject.py" line="602" />
       <source>The current multiproject has unsaved changes.</source>
       <translation>Aktuální multiprojekt obsahuje neuložené změny.</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="653" />
+      <location filename="../MultiProject/MultiProject.py" line="656" />
       <source>New multiproject</source>
       <translation>Nový multiprojekt</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="655" />
+      <location filename="../MultiProject/MultiProject.py" line="658" />
       <source>&amp;New...</source>
       <translation>&amp;Nový...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="661" />
+      <location filename="../MultiProject/MultiProject.py" line="664" />
       <source>Generate a new multiproject</source>
       <translation>Vygenerovat nový multiprojekt</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="663" />
+      <location filename="../MultiProject/MultiProject.py" line="666" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nový...&lt;/b&gt;&lt;p&gt;Otevře se dialogové okno pro zadání informací o novém multiprojektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="673" />
+      <location filename="../MultiProject/MultiProject.py" line="676" />
       <source>Open multiproject</source>
       <translation>Otevřít multiprojekt</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="675" />
+      <location filename="../MultiProject/MultiProject.py" line="678" />
       <source>&amp;Open...</source>
       <translation>&amp;Otevřít...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="681" />
+      <location filename="../MultiProject/MultiProject.py" line="684" />
       <source>Open an existing multiproject</source>
       <translation>Otevřít existující multiprojekt</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="683" />
+      <location filename="../MultiProject/MultiProject.py" line="686" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Otevřít....&lt;/b&gt;&lt;p&gt;Otevře existující multiprojekt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="689" />
+      <location filename="../MultiProject/MultiProject.py" line="692" />
       <source>Close multiproject</source>
       <translation>Zavřít multiprojekt</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="691" />
+      <location filename="../MultiProject/MultiProject.py" line="694" />
       <source>&amp;Close</source>
       <translation>&amp;Zavřít</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="697" />
+      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>Close the current multiproject</source>
       <translation>Uzavře aktuální multiprojekt</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="699" />
+      <location filename="../MultiProject/MultiProject.py" line="702" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zavřít&lt;/b&gt;&lt;p&gt;Aktuální multiprojekt se uzavře.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="705" />
+      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>Save multiproject</source>
       <translation>Uložit multiprojekt</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="707" />
+      <location filename="../MultiProject/MultiProject.py" line="710" />
       <source>&amp;Save</source>
       <translation>&amp;Uložit</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="713" />
+      <location filename="../MultiProject/MultiProject.py" line="716" />
       <source>Save the current multiproject</source>
       <translation>Uložit aktuální multiprojekt</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="715" />
+      <location filename="../MultiProject/MultiProject.py" line="718" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Uložit&lt;/b&gt;&lt;p&gt;Aktuální multiprojekt se uloží.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="721" />
+      <location filename="../MultiProject/MultiProject.py" line="724" />
       <source>Save multiproject as</source>
       <translation>Uložit multiprojekt jako</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="723" />
+      <location filename="../MultiProject/MultiProject.py" line="726" />
       <source>Save &amp;as...</source>
       <translation>Uložit j&amp;ako...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="730" />
-      <source>Save the current multiproject to a new file</source>
-      <translation>Uloží aktuální multiprojekt do nového souboru</translation>
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="733" />
+      <source>Save the current multiproject to a new file</source>
+      <translation>Uloží aktuální multiprojekt do nového souboru</translation>
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Uložit jako&lt;/b&gt;&lt;p&gt;Uloží aktuální mulktiprojekt do nového souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="742" />
+      <location filename="../MultiProject/MultiProject.py" line="745" />
       <source>Add project to multiproject</source>
       <translation>Přidat projekt do multiprojektu</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
+      <location filename="../MultiProject/MultiProject.py" line="747" />
       <source>Add &amp;project...</source>
       <translation>Přidat &amp;projekt...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="751" />
-      <source>Add a project to the current multiproject</source>
-      <translation>Projekt se přidá do aktuálního multiprojektu</translation>
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="754" />
+      <source>Add a project to the current multiproject</source>
+      <translation>Projekt se přidá do aktuálního multiprojektu</translation>
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="757" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Přidat projekt...&lt;/b&gt;&lt;p&gt;Otevře dialog pro přidání projektu do aktuálního multiprojektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <location filename="../MultiProject/MultiProject.py" line="767" />
       <source>Multiproject properties</source>
       <translation>Nastavení multiprojektu</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="766" />
+      <location filename="../MultiProject/MultiProject.py" line="769" />
       <source>&amp;Properties...</source>
       <translation>&amp;Natavení...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="772" />
+      <location filename="../MultiProject/MultiProject.py" line="775" />
       <source>Show the multiproject properties</source>
       <translation>Zobrazit nastavení projektu</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="774" />
+      <location filename="../MultiProject/MultiProject.py" line="777" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nastavení...&lt;/b&gt;&lt;p&gt;Zobrazí dialog s editací nastavení multiprojektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="786" />
-      <location filename="../MultiProject/MultiProject.py" line="784" />
+      <location filename="../MultiProject/MultiProject.py" line="789" />
+      <location filename="../MultiProject/MultiProject.py" line="787" />
       <source>Clear Out</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="793" />
-      <source>Remove all projects marked as removed</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="796" />
+      <source>Remove all projects marked as removed</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="799" />
       <source>&lt;b&gt;Clear Out...&lt;/b&gt;&lt;p&gt;This removes all projects marked as removed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="818" />
+      <location filename="../MultiProject/MultiProject.py" line="821" />
       <source>&amp;Multiproject</source>
       <translation>&amp;Multiprojekt</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
+      <location filename="../MultiProject/MultiProject.py" line="822" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation>Otevřít poslední multip&amp;rojekty</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="862" />
-      <location filename="../MultiProject/MultiProject.py" line="860" />
+      <location filename="../MultiProject/MultiProject.py" line="865" />
+      <location filename="../MultiProject/MultiProject.py" line="863" />
       <source>Multiproject</source>
       <translation />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="918" />
+      <location filename="../MultiProject/MultiProject.py" line="921" />
       <source>&amp;Clear</source>
       <translation>&amp;Vyčistit</translation>
     </message>
@@ -59384,108 +59399,108 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="562" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="583" />
+      <location filename="../PipInterface/Pip.py" line="585" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="618" />
-      <location filename="../PipInterface/Pip.py" line="608" />
+      <location filename="../PipInterface/Pip.py" line="620" />
+      <location filename="../PipInterface/Pip.py" line="610" />
       <source>Install 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="739" />
-      <location filename="../PipInterface/Pip.py" line="609" />
+      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="611" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="619" />
+      <location filename="../PipInterface/Pip.py" line="621" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="638" />
+      <location filename="../PipInterface/Pip.py" line="641" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="766" />
-      <location filename="../PipInterface/Pip.py" line="695" />
-      <location filename="../PipInterface/Pip.py" line="667" />
-      <location filename="../PipInterface/Pip.py" line="658" />
+      <location filename="../PipInterface/Pip.py" line="775" />
+      <location filename="../PipInterface/Pip.py" line="701" />
+      <location filename="../PipInterface/Pip.py" line="671" />
+      <location filename="../PipInterface/Pip.py" line="662" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="767" />
-      <location filename="../PipInterface/Pip.py" line="696" />
-      <location filename="../PipInterface/Pip.py" line="659" />
+      <location filename="../PipInterface/Pip.py" line="776" />
+      <location filename="../PipInterface/Pip.py" line="702" />
+      <location filename="../PipInterface/Pip.py" line="663" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="712" />
+      <location filename="../PipInterface/Pip.py" line="719" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="738" />
+      <location filename="../PipInterface/Pip.py" line="758" />
+      <location filename="../PipInterface/Pip.py" line="747" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="750" />
+      <location filename="../PipInterface/Pip.py" line="759" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
+      <location filename="../PipInterface/Pip.py" line="786" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1185" />
+      <location filename="../PipInterface/Pip.py" line="1195" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1211" />
-      <location filename="../PipInterface/Pip.py" line="1202" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
+      <location filename="../PipInterface/Pip.py" line="1212" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1203" />
+      <location filename="../PipInterface/Pip.py" line="1213" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1235" />
-      <location filename="../PipInterface/Pip.py" line="1228" />
+      <location filename="../PipInterface/Pip.py" line="1245" />
+      <location filename="../PipInterface/Pip.py" line="1238" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1239" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1260" />
-      <location filename="../PipInterface/Pip.py" line="1252" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
+      <location filename="../PipInterface/Pip.py" line="1262" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1263" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -62070,18 +62085,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1904" />
+      <location filename="../Preferences/__init__.py" line="1905" />
       <source>Export Preferences</source>
       <translation>Předvolby exportu</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1933" />
-      <location filename="../Preferences/__init__.py" line="1906" />
+      <location filename="../Preferences/__init__.py" line="1934" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1931" />
+      <location filename="../Preferences/__init__.py" line="1932" />
       <source>Import Preferences</source>
       <translation>Předvolby importu</translation>
     </message>
@@ -62102,7 +62117,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="509" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="520" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -62729,430 +62744,430 @@
   <context>
     <name>Project</name>
     <message>
-      <location filename="../Project/Project.py" line="187" />
+      <location filename="../Project/Project.py" line="188" />
       <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source>
       <translation>Python3 soubory (*.py *.py3);;Python3 GUI soubory (*.pyw *.pyw3);;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="250" />
-      <source>Add File Category</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="251" />
+      <source>Add File Category</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="252" />
       <source>&lt;p&gt;The file category &lt;b&gt;{0}&lt;/b&gt; has already been added. This attempt will be ignored.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="336" />
-      <source>PyQt5 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="337" />
-      <source>PyQt5 Console</source>
+      <source>PyQt5 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="338" />
-      <source>PyQt6 GUI</source>
+      <source>PyQt5 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="339" />
-      <source>PyQt6 Console</source>
+      <source>PyQt6 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="340" />
-      <source>Eric7 Plugin</source>
+      <source>PyQt6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="341" />
-      <source>Console</source>
-      <translation>Konzole</translation>
+      <source>Eric7 Plugin</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="342" />
+      <source>Console</source>
+      <translation>Konzole</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="343" />
       <source>Other</source>
       <translation>Ostatní</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="361" />
-      <source>PySide2 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="362" />
+      <source>PySide2 GUI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="363" />
       <source>PySide2 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="366" />
-      <source>PySide6 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="367" />
+      <source>PySide6 GUI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="465" />
-      <location filename="../Project/Project.py" line="453" />
-      <location filename="../Project/Project.py" line="442" />
-      <source>Registering Project Type</source>
-      <translation>Zaregistrovat typ projektu</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="443" />
-      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="454" />
-      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="466" />
+      <location filename="../Project/Project.py" line="454" />
+      <location filename="../Project/Project.py" line="443" />
+      <source>Registering Project Type</source>
+      <translation>Zaregistrovat typ projektu</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="444" />
+      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="455" />
+      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="467" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="771" />
+      <location filename="../Project/Project.py" line="772" />
       <source>All Files (*)</source>
       <translation type="unfinished">Všechny soubory (*)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1332" />
+      <location filename="../Project/Project.py" line="1333" />
       <source>Read Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1578" />
-      <location filename="../Project/Project.py" line="1552" />
-      <location filename="../Project/Project.py" line="1516" />
-      <location filename="../Project/Project.py" line="1434" />
-      <location filename="../Project/Project.py" line="1395" />
-      <location filename="../Project/Project.py" line="1370" />
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1579" />
+      <location filename="../Project/Project.py" line="1553" />
+      <location filename="../Project/Project.py" line="1517" />
+      <location filename="../Project/Project.py" line="1435" />
+      <location filename="../Project/Project.py" line="1396" />
+      <location filename="../Project/Project.py" line="1371" />
+      <location filename="../Project/Project.py" line="1334" />
       <source>Please save the project first.</source>
       <translation>Prosím, nejdříve uložte projekt.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1369" />
+      <location filename="../Project/Project.py" line="1370" />
       <source>Save Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1411" />
-      <location filename="../Project/Project.py" line="1394" />
+      <location filename="../Project/Project.py" line="1412" />
+      <location filename="../Project/Project.py" line="1395" />
       <source>Delete Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1401" />
+      <location filename="../Project/Project.py" line="1402" />
       <source>Delete Remote Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1420" />
+      <location filename="../Project/Project.py" line="1421" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor s relací projektu &lt;b&gt;{0}&lt;/b&gt; nelze smazat.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1433" />
+      <location filename="../Project/Project.py" line="1434" />
       <source>Read Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1515" />
+      <location filename="../Project/Project.py" line="1516" />
       <source>Read Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1551" />
+      <location filename="../Project/Project.py" line="1552" />
       <source>Save Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1594" />
-      <location filename="../Project/Project.py" line="1577" />
+      <location filename="../Project/Project.py" line="1595" />
+      <location filename="../Project/Project.py" line="1578" />
       <source>Delete Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1584" />
+      <location filename="../Project/Project.py" line="1585" />
       <source>Delete Remote Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1603" />
+      <location filename="../Project/Project.py" line="1604" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor s nastaveními debuggeru &lt;b&gt;{0}&lt;/b&gt; nelze smazat.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1774" />
+      <location filename="../Project/Project.py" line="1777" />
       <source>Add Language</source>
       <translation>Přidat jazyk</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1775" />
+      <location filename="../Project/Project.py" line="1778" />
       <source>You have to specify a translation pattern first.</source>
       <translation>Nejdříve musíte specifikovat vzor překladu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1916" />
+      <location filename="../Project/Project.py" line="1919" />
       <source>Delete Translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1943" />
-      <location filename="../Project/Project.py" line="1917" />
+      <location filename="../Project/Project.py" line="1946" />
+      <location filename="../Project/Project.py" line="1920" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1942" />
+      <location filename="../Project/Project.py" line="1945" />
       <source>Delete translation</source>
       <translation>Smazat překlad</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2093" />
-      <location filename="../Project/Project.py" line="2076" />
+      <location filename="../Project/Project.py" line="2098" />
+      <location filename="../Project/Project.py" line="2081" />
       <source>Add File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2195" />
-      <location filename="../Project/Project.py" line="2077" />
+      <location filename="../Project/Project.py" line="2200" />
+      <location filename="../Project/Project.py" line="2082" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2094" />
+      <location filename="../Project/Project.py" line="2099" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Vybraný soubor &lt;b&gt;{0}&lt;/b&gt; nelze přidat do &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Důvod: {2}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2106" />
+      <location filename="../Project/Project.py" line="2111" />
       <source>Add file</source>
       <translation>Přidat soubor</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2289" />
-      <location filename="../Project/Project.py" line="2107" />
+      <location filename="../Project/Project.py" line="2296" />
+      <location filename="../Project/Project.py" line="2112" />
       <source>The target directory must not be empty.</source>
       <translation>Cílový adresář nesmí být prázdný.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2194" />
-      <location filename="../Project/Project.py" line="2167" />
-      <location filename="../Project/Project.py" line="2147" />
+      <location filename="../Project/Project.py" line="2199" />
+      <location filename="../Project/Project.py" line="2172" />
+      <location filename="../Project/Project.py" line="2152" />
       <source>Add Directory</source>
       <translation type="unfinished">Přidat adresář</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2148" />
+      <location filename="../Project/Project.py" line="2153" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Zdrojový adresář neobsahuje žádné soubory související s danou kategorií.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2168" />
+      <location filename="../Project/Project.py" line="2173" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Cílový adresář &lt;b&gt;{0}&lt;/b&gt; nelze vytvořit.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2300" />
-      <location filename="../Project/Project.py" line="2288" />
+      <location filename="../Project/Project.py" line="2307" />
+      <location filename="../Project/Project.py" line="2295" />
       <source>Add directory</source>
       <translation>Přidat adresář</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2301" />
+      <location filename="../Project/Project.py" line="2308" />
       <source>The source directory must not be empty.</source>
       <translation>Cílový adresář nesmí být prázdný.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2415" />
-      <location filename="../Project/Project.py" line="2397" />
+      <location filename="../Project/Project.py" line="2422" />
+      <location filename="../Project/Project.py" line="2404" />
+      <location filename="../Project/Project.py" line="2388" />
       <location filename="../Project/Project.py" line="2381" />
-      <location filename="../Project/Project.py" line="2374" />
       <source>Rename File</source>
       <translation>Přejmenovat soubor</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8055" />
-      <location filename="../Project/Project.py" line="3898" />
-      <location filename="../Project/Project.py" line="2398" />
+      <location filename="../Project/Project.py" line="8089" />
+      <location filename="../Project/Project.py" line="3909" />
+      <location filename="../Project/Project.py" line="2405" />
       <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;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="../Project/Project.py" line="2416" />
+      <location filename="../Project/Project.py" line="2423" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nemůže být přejmenován.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2683" />
+      <location filename="../Project/Project.py" line="2690" />
       <source>Delete File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2684" />
+      <location filename="../Project/Project.py" line="2691" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2712" />
+      <location filename="../Project/Project.py" line="2719" />
       <source>Delete Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2713" />
+      <location filename="../Project/Project.py" line="2720" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2846" />
+      <location filename="../Project/Project.py" line="2853" />
       <source>Create project directory</source>
       <translation>Vytvořit adresář projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2847" />
+      <location filename="../Project/Project.py" line="2854" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Adresář projektu &lt;b&gt;{0}&lt;/b&gt; nelze vytvořit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3671" />
-      <location filename="../Project/Project.py" line="2947" />
+      <location filename="../Project/Project.py" line="3682" />
+      <location filename="../Project/Project.py" line="2954" />
       <source>Create project management directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3672" />
-      <location filename="../Project/Project.py" line="2948" />
+      <location filename="../Project/Project.py" line="3683" />
+      <location filename="../Project/Project.py" line="2955" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2988" />
+      <location filename="../Project/Project.py" line="2995" />
       <source>Create main script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2989" />
+      <location filename="../Project/Project.py" line="2996" />
       <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3454" />
-      <location filename="../Project/Project.py" line="3013" />
+      <location filename="../Project/Project.py" line="3463" />
+      <location filename="../Project/Project.py" line="3020" />
       <source>Create Makefile</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3455" />
-      <location filename="../Project/Project.py" line="3014" />
+      <location filename="../Project/Project.py" line="3464" />
+      <location filename="../Project/Project.py" line="3021" />
       <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3701" />
-      <location filename="../Project/Project.py" line="3164" />
-      <location filename="../Project/Project.py" line="3135" />
-      <location filename="../Project/Project.py" line="3103" />
-      <location filename="../Project/Project.py" line="3087" />
-      <location filename="../Project/Project.py" line="3062" />
-      <location filename="../Project/Project.py" line="3024" />
+      <location filename="../Project/Project.py" line="3712" />
+      <location filename="../Project/Project.py" line="3173" />
+      <location filename="../Project/Project.py" line="3144" />
+      <location filename="../Project/Project.py" line="3112" />
+      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="3069" />
+      <location filename="../Project/Project.py" line="3031" />
       <source>New Project</source>
       <translation>Nový projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3025" />
+      <location filename="../Project/Project.py" line="3032" />
       <source>Add existing files to the project?</source>
       <translation>Přidat existující soubory do projektu?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3702" />
-      <location filename="../Project/Project.py" line="3063" />
+      <location filename="../Project/Project.py" line="3713" />
+      <location filename="../Project/Project.py" line="3070" />
       <source>Select Version Control System</source>
       <translation>Vybrat Version Control System</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3165" />
-      <location filename="../Project/Project.py" line="3088" />
+      <location filename="../Project/Project.py" line="3174" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Would you like to edit the VCS command options?</source>
       <translation>Chcete editovat parametry VCS příkazu?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3104" />
+      <location filename="../Project/Project.py" line="3113" />
       <source>Shall the project file be added to the repository?</source>
       <translation>Má být projekt přidán do repozitáře?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3141" />
-      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3150" />
+      <location filename="../Project/Project.py" line="3139" />
       <source>None</source>
       <translation>None</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3145" />
       <source>Select version control system for the project</source>
       <translation>Výběr verzovacího systému projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3347" />
+      <location filename="../Project/Project.py" line="3356" />
       <source>Translation Pattern</source>
       <translation>Vzor překladu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3348" />
+      <location filename="../Project/Project.py" line="3357" />
       <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
       <translation>Zadejte vzor cesty pro soubory s překlady (použijte  '%language%' na místě s kódem jazyka):</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3650" />
+      <location filename="../Project/Project.py" line="3661" />
       <source>Open Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8041" />
-      <location filename="../Project/Project.py" line="8035" />
-      <location filename="../Project/Project.py" line="8025" />
-      <location filename="../Project/Project.py" line="3883" />
-      <location filename="../Project/Project.py" line="3873" />
-      <location filename="../Project/Project.py" line="3652" />
+      <location filename="../Project/Project.py" line="8075" />
+      <location filename="../Project/Project.py" line="8069" />
+      <location filename="../Project/Project.py" line="8059" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3884" />
+      <location filename="../Project/Project.py" line="3663" />
       <source>Project Files (*.epj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3897" />
-      <location filename="../Project/Project.py" line="3881" />
+      <location filename="../Project/Project.py" line="3908" />
+      <location filename="../Project/Project.py" line="3892" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3936" />
+      <location filename="../Project/Project.py" line="3947" />
       <source>Close Project</source>
       <translation>Zavřít projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3937" />
+      <location filename="../Project/Project.py" line="3948" />
       <source>The current project has unsaved changes.</source>
       <translation>Aktuální projekt obsahuje neuložené změny.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4137" />
-      <location filename="../Project/Project.py" line="4101" />
+      <location filename="../Project/Project.py" line="4148" />
+      <location filename="../Project/Project.py" line="4112" />
       <source>Syntax Errors Detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4138" />
-      <location filename="../Project/Project.py" line="4102" />
+      <location filename="../Project/Project.py" line="4149" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>Projekt obsahuje %n soubor se syntaktickými chybami.</numerusform>
@@ -63161,1268 +63176,1268 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4796" />
+      <location filename="../Project/Project.py" line="4807" />
       <source>New project</source>
       <translation>Nový projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4798" />
+      <location filename="../Project/Project.py" line="4809" />
       <source>&amp;New...</source>
       <translation>&amp;Nový...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4804" />
+      <location filename="../Project/Project.py" line="4815" />
       <source>Generate a new project</source>
       <translation>Vygenerovat nový projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4806" />
+      <location filename="../Project/Project.py" line="4817" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nový...&lt;/b&gt;&lt;p&gt;Otevře se dialogové okno pro zadání informací o novém projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4816" />
+      <location filename="../Project/Project.py" line="4827" />
       <source>Open project</source>
       <translation>Otevřít projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4818" />
+      <location filename="../Project/Project.py" line="4829" />
       <source>&amp;Open...</source>
       <translation>&amp;Otevřít...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4824" />
+      <location filename="../Project/Project.py" line="4835" />
       <source>Open an existing project</source>
       <translation>Otevřít existující projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4826" />
+      <location filename="../Project/Project.py" line="4837" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Otevřít....&lt;/b&gt;&lt;p&gt;Otevře existující projekt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4832" />
+      <location filename="../Project/Project.py" line="4843" />
       <source>Open remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4834" />
+      <location filename="../Project/Project.py" line="4845" />
       <source>Open (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4840" />
-      <source>Open an existing remote project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4842" />
-      <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4851" />
-      <source>Reload project</source>
+      <source>Open an existing remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4853" />
+      <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4862" />
+      <source>Reload project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4864" />
       <source>Re&amp;load</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4859" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>Reload the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4861" />
+      <location filename="../Project/Project.py" line="4872" />
       <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4867" />
+      <location filename="../Project/Project.py" line="4878" />
       <source>Close project</source>
       <translation>Zavřít projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4869" />
+      <location filename="../Project/Project.py" line="4880" />
       <source>&amp;Close</source>
       <translation>&amp;Zavřít</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4875" />
+      <location filename="../Project/Project.py" line="4886" />
       <source>Close the current project</source>
       <translation>Uzavře aktuální projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4877" />
+      <location filename="../Project/Project.py" line="4888" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zavřít&lt;/b&gt;&lt;p&gt;Aktuální projekt se uzavře.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4883" />
+      <location filename="../Project/Project.py" line="4894" />
       <source>Save project</source>
       <translation>Uložit projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5180" />
-      <location filename="../Project/Project.py" line="4885" />
+      <location filename="../Project/Project.py" line="5191" />
+      <location filename="../Project/Project.py" line="4896" />
       <source>&amp;Save</source>
       <translation>&amp;Uložit</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4891" />
+      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation>Uložit aktuální projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4893" />
+      <location filename="../Project/Project.py" line="4904" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Uložit&lt;/b&gt;&lt;p&gt;Aktuální projekt se uloží.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4899" />
+      <location filename="../Project/Project.py" line="4910" />
       <source>Save project as</source>
       <translation>Uložit projekt jako</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4901" />
+      <location filename="../Project/Project.py" line="4912" />
       <source>Save &amp;as...</source>
       <translation>Uložit j&amp;ako...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4907" />
-      <source>Save the current project to a new file</source>
-      <translation>Uloží aktuální projekt do nového souboru</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4909" />
-      <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Uložit jako&lt;/b&gt;&lt;p&gt;Uloží aktuální projekt do nového souboru.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4918" />
-      <source>Save project as (Remote)</source>
-      <translation type="unfinished" />
+      <source>Save the current project to a new file</source>
+      <translation>Uloží aktuální projekt do nového souboru</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4920" />
+      <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Uložit jako&lt;/b&gt;&lt;p&gt;Uloží aktuální projekt do nového souboru.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4929" />
+      <source>Save project as (Remote)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4931" />
       <source>Save as (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4927" />
+      <location filename="../Project/Project.py" line="4938" />
       <source>Save the current project to a new remote file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4930" />
+      <location filename="../Project/Project.py" line="4941" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4946" />
+      <location filename="../Project/Project.py" line="4957" />
       <source>Add files to project</source>
       <translation>Přidat soubory do projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4948" />
+      <location filename="../Project/Project.py" line="4959" />
       <source>Add &amp;files...</source>
       <translation>&amp;Přidat soubory...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4954" />
+      <location filename="../Project/Project.py" line="4965" />
       <source>Add files to the current project</source>
       <translation>Přidat soubory do aktuálního projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4956" />
-      <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Přidat soubory...&lt;/b&gt;&lt;p&gt;Otevře dialog pri přidání souborů do aktuálního projektu. Místo pro přidání je definováno extenzí souborů.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4967" />
+      <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Přidat soubory...&lt;/b&gt;&lt;p&gt;Otevře dialog pri přidání souborů do aktuálního projektu. Místo pro přidání je definováno extenzí souborů.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4978" />
       <source>Add directory to project</source>
       <translation>Přidat adresář do projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4969" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Add directory...</source>
       <translation>Přidat adresář...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4976" />
+      <location filename="../Project/Project.py" line="4987" />
       <source>Add a directory to the current project</source>
       <translation>Přidat adresář do aktuálního projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4979" />
+      <location filename="../Project/Project.py" line="4990" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Přidat adresář...&lt;/b&gt;&lt;p&gt;Otevře dialog pro přičtení adresáře do aktuálního projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4989" />
+      <location filename="../Project/Project.py" line="5000" />
       <source>Add translation to project</source>
       <translation>Přidat překlad do projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4991" />
+      <location filename="../Project/Project.py" line="5002" />
       <source>Add &amp;translation...</source>
       <translation>Přida&amp;t překlad...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4998" />
+      <location filename="../Project/Project.py" line="5009" />
       <source>Add a translation to the current project</source>
       <translation>Přidat překlad do aktuálního projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5001" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Přidat překlad&lt;/b&gt;&lt;p&gt;Otevře dialog pro přidání překladu do aktuálního projektu.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5011" />
-      <source>Search new files</source>
-      <translation>Hledat nové soubory</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5012" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Přidat překlad&lt;/b&gt;&lt;p&gt;Otevře dialog pro přidání překladu do aktuálního projektu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5022" />
+      <source>Search new files</source>
+      <translation>Hledat nové soubory</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation>&amp;Hledat nové soubory...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5018" />
+      <location filename="../Project/Project.py" line="5029" />
       <source>Search new files in the project directory.</source>
       <translation>Hledat nové soubory v adresáři projektu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5020" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5030" />
-      <source>Search Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5031" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5041" />
+      <source>Search Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5042" />
       <source>Search Project File...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5032" />
+      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5037" />
-      <source>Search for a file in the project list of files.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5039" />
-      <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5048" />
-      <source>Project properties</source>
-      <translation>Nastavení projektu</translation>
+      <source>Search for a file in the project list of files.</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5050" />
+      <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5059" />
+      <source>Project properties</source>
+      <translation>Nastavení projektu</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5061" />
       <source>&amp;Properties...</source>
       <translation>&amp;Natavení...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5056" />
-      <source>Show the project properties</source>
-      <translation>Zobrazit nastavení projektu</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5058" />
-      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Nastavení...&lt;/b&gt;&lt;p&gt;Zobrazí dialog s editací nastavení projektu.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5067" />
-      <source>User project properties</source>
-      <translation>Uživatelská nastavení projektu</translation>
+      <source>Show the project properties</source>
+      <translation>Zobrazit nastavení projektu</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5069" />
+      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Nastavení...&lt;/b&gt;&lt;p&gt;Zobrazí dialog s editací nastavení projektu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5078" />
+      <source>User project properties</source>
+      <translation>Uživatelská nastavení projektu</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5080" />
       <source>&amp;User Properties...</source>
       <translation>Uživat&amp;elská nastavení...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5076" />
+      <location filename="../Project/Project.py" line="5087" />
       <source>Show the user specific project properties</source>
       <translation>Zobrazit uživatelem definovaná nastavení projektu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5079" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Uživatelská nastavení...&lt;/b&gt;&lt;p&gt;Zobrazí dialog s editací uživatelských nastavení projektu.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5089" />
-      <source>Filetype Associations</source>
-      <translation>Asociace typů souborů</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5090" />
-      <source>Filetype Associations...</source>
-      <translation>Asociace typů souborů...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5097" />
-      <source>Show the project file type associations</source>
-      <translation type="unfinished" />
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Uživatelská nastavení...&lt;/b&gt;&lt;p&gt;Zobrazí dialog s editací uživatelských nastavení projektu.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5100" />
+      <source>Filetype Associations</source>
+      <translation>Asociace typů souborů</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5101" />
+      <source>Filetype Associations...</source>
+      <translation>Asociace typů souborů...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5108" />
+      <source>Show the project file type associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5111" />
       <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5113" />
-      <source>Lexer Associations</source>
-      <translation>Spojení lexeru</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5114" />
-      <source>Lexer Associations...</source>
-      <translation>Spojení lexeru...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5121" />
-      <source>Show the project lexer associations (overriding defaults)</source>
-      <translation>Zobrazit spojení lexeru projektu (přepíše výchozí)</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5124" />
+      <source>Lexer Associations</source>
+      <translation>Spojení lexeru</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5125" />
+      <source>Lexer Associations...</source>
+      <translation>Spojení lexeru...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5132" />
+      <source>Show the project lexer associations (overriding defaults)</source>
+      <translation>Zobrazit spojení lexeru projektu (přepíše výchozí)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5135" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Spojení lexeru...&lt;/b&gt;&lt;p&gt;Zobrazuje dialog s editací spojení lexeru projektu. Tato spojení přepisují globální lexer spojení. Lexer je použit pro zvýraznění textu v editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5142" />
+      <location filename="../Project/Project.py" line="5153" />
       <source>Debugger Properties</source>
       <translation>Nastavení debugeru</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5143" />
+      <location filename="../Project/Project.py" line="5154" />
       <source>Debugger &amp;Properties...</source>
       <translation>Nastavení &amp;debuggeru...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5149" />
+      <location filename="../Project/Project.py" line="5160" />
       <source>Show the debugger properties</source>
       <translation>Zobrazit nastavení debugeru</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Nastavení debugeru...&lt;/b&gt;&lt;p&gt;Zobrazí dialog s editací nastavení debugeru.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5161" />
-      <source>Load</source>
-      <translation>Načíst</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5162" />
+      <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Nastavení debugeru...&lt;/b&gt;&lt;p&gt;Zobrazí dialog s editací nastavení debugeru.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Load</source>
+      <translation>Načíst</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
       <source>&amp;Load</source>
       <translation>&amp;Načíst</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5168" />
-      <source>Load the debugger properties</source>
-      <translation>Načíst nastavení debugeru</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5170" />
-      <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Načíst nastavení debugeru&lt;/b&gt;&lt;p&gt;Načtou se nastavení debugeru do projektu.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5179" />
+      <source>Load the debugger properties</source>
+      <translation>Načíst nastavení debugeru</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5181" />
+      <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Načíst nastavení debugeru&lt;/b&gt;&lt;p&gt;Načtou se nastavení debugeru do projektu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5190" />
       <source>Save</source>
       <translation>Uložit</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5186" />
-      <source>Save the debugger properties</source>
-      <translation>Uložit nastavení debugeru</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5188" />
-      <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Uložit nastavení debugeru&lt;/b&gt;&lt;p&gt;Uloží nastavení debugeru definovaná v projektu..&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5197" />
+      <source>Save the debugger properties</source>
+      <translation>Uložit nastavení debugeru</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5199" />
+      <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Uložit nastavení debugeru&lt;/b&gt;&lt;p&gt;Uloží nastavení debugeru definovaná v projektu..&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5208" />
       <source>Delete</source>
       <translation>Smazat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5198" />
+      <location filename="../Project/Project.py" line="5209" />
       <source>&amp;Delete</source>
       <translation>Sma&amp;zat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5204" />
+      <location filename="../Project/Project.py" line="5215" />
       <source>Delete the debugger properties</source>
       <translation>Smazat nastavení debugeru</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5206" />
-      <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Smazat nastavení debugeru&lt;/b&gt;&lt;p&gt;Smaže se soubor obsahující nastavení debugeru v daném projektu.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5216" />
-      <source>Reset</source>
-      <translation />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5217" />
+      <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Smazat nastavení debugeru&lt;/b&gt;&lt;p&gt;Smaže se soubor obsahující nastavení debugeru v daném projektu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5227" />
+      <source>Reset</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5228" />
       <source>&amp;Reset</source>
       <translation>&amp;Reset</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5223" />
+      <location filename="../Project/Project.py" line="5234" />
       <source>Reset the debugger properties</source>
       <translation>Reset nastavení debugeru</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5225" />
+      <location filename="../Project/Project.py" line="5236" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Reset nastavení debugeru&lt;/b&gt;&lt;p&gt;Zresetuje nastavení debugeru v projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5241" />
-      <location filename="../Project/Project.py" line="5240" />
+      <location filename="../Project/Project.py" line="5252" />
+      <location filename="../Project/Project.py" line="5251" />
       <source>Load session</source>
       <translation>Načíst relaci</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5247" />
+      <location filename="../Project/Project.py" line="5258" />
       <source>Load the projects session file.</source>
       <translation>Načíst soubor s relací projektu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5249" />
+      <location filename="../Project/Project.py" line="5260" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Načíst relaci&lt;/b&gt;&lt;p&gt;Načte soubor s relací projektu. Relace obsahuje následující údaje:&lt;br&gt;- všechny otevřené zdrojové soubory&lt;br&gt;- všechny breakpointy&lt;br&gt;- argumenty příkazové řádky &lt;br&gt;- pracovní adresář&lt;br&gt;- příznak výjimky&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5265" />
-      <location filename="../Project/Project.py" line="5264" />
+      <location filename="../Project/Project.py" line="5276" />
+      <location filename="../Project/Project.py" line="5275" />
       <source>Save session</source>
       <translation>Uložit relaci</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5271" />
+      <location filename="../Project/Project.py" line="5282" />
       <source>Save the projects session file.</source>
       <translation>Uložit soubor s relací projektu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5273" />
+      <location filename="../Project/Project.py" line="5284" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Uložit relaci&lt;/b&gt;&lt;p&gt;Uloží soubor s relací projektu. Relace obsahuje následující údaje:&lt;br&gt;- všechny otevřené zdrojové soubory&lt;br&gt;- všechny breakpointy&lt;br&gt;- argumenty příkazové řádky &lt;br&gt;- pracovní adresář&lt;br&gt;- příznak výjimky&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5289" />
-      <location filename="../Project/Project.py" line="5288" />
+      <location filename="../Project/Project.py" line="5300" />
+      <location filename="../Project/Project.py" line="5299" />
       <source>Delete session</source>
       <translation>Smazat relaci</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5295" />
+      <location filename="../Project/Project.py" line="5306" />
       <source>Delete the projects session file.</source>
       <translation>Smaže soubor s relací projektu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5297" />
+      <location filename="../Project/Project.py" line="5308" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation>&lt;b&gt;Smazat relaci&lt;/b&gt;&lt;p&gt;Smaže soubor s relací projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5312" />
-      <source>Code Metrics</source>
-      <translation>Metriky kódu</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5313" />
-      <source>&amp;Code Metrics...</source>
-      <translation>Metriky &amp;kódu...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5320" />
-      <source>Show some code metrics for the project.</source>
-      <translation>Zobrazit metriky kódu projektu.</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5323" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Metriky kódu...&lt;/b&gt;&lt;p&gt;Zobrazí se metriky kódu všech python souborů v projektu.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5333" />
-      <source>Python Code Coverage</source>
-      <translation>Pokrytí python kódu</translation>
+      <source>Code Metrics</source>
+      <translation>Metriky kódu</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5324" />
+      <source>&amp;Code Metrics...</source>
+      <translation>Metriky &amp;kódu...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5331" />
+      <source>Show some code metrics for the project.</source>
+      <translation>Zobrazit metriky kódu projektu.</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5334" />
-      <source>Code Co&amp;verage...</source>
-      <translation>Pokr&amp;ytí kódu...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5341" />
-      <source>Show code coverage information for the project.</source>
-      <translation>Zobrazit informace pokrytí kódu projektu.</translation>
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Metriky kódu...&lt;/b&gt;&lt;p&gt;Zobrazí se metriky kódu všech python souborů v projektu.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5344" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Pokrytí kódu...&lt;/b&gt;&lt;p&gt;Zobrazí informace o pokrytí kódu ve všech python souborech projektu.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6778" />
-      <location filename="../Project/Project.py" line="6765" />
-      <location filename="../Project/Project.py" line="5354" />
-      <source>Profile Data</source>
-      <translation>Profilovat data</translation>
+      <source>Python Code Coverage</source>
+      <translation>Pokrytí python kódu</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5345" />
+      <source>Code Co&amp;verage...</source>
+      <translation>Pokr&amp;ytí kódu...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5352" />
+      <source>Show code coverage information for the project.</source>
+      <translation>Zobrazit informace pokrytí kódu projektu.</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5355" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Pokrytí kódu...&lt;/b&gt;&lt;p&gt;Zobrazí informace o pokrytí kódu ve všech python souborech projektu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6789" />
+      <location filename="../Project/Project.py" line="6776" />
+      <location filename="../Project/Project.py" line="5365" />
+      <source>Profile Data</source>
+      <translation>Profilovat data</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation>&amp;Profilovat data...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5362" />
+      <location filename="../Project/Project.py" line="5373" />
       <source>Show profiling data for the project.</source>
       <translation>Zobrazit profilování dat projektu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5365" />
+      <location filename="../Project/Project.py" line="5376" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profilovat data&lt;/b&gt;&lt;p&gt;Zobrazí se profilování dat projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6830" />
-      <location filename="../Project/Project.py" line="5380" />
+      <location filename="../Project/Project.py" line="6841" />
+      <location filename="../Project/Project.py" line="5391" />
       <source>Application Diagram</source>
       <translation>Diagram aplikace</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5381" />
+      <location filename="../Project/Project.py" line="5392" />
       <source>&amp;Application Diagram...</source>
       <translation>Diagram &amp;aplikace...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5388" />
+      <location filename="../Project/Project.py" line="5399" />
       <source>Show a diagram of the project.</source>
       <translation>Zobrazit diagram projektu.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="5402" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diagram aplikace...&lt;/b&gt;&lt;p&gt;Zobrazí diagram projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5400" />
+      <location filename="../Project/Project.py" line="5411" />
       <source>Load Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5401" />
+      <location filename="../Project/Project.py" line="5412" />
       <source>&amp;Load Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5407" />
+      <location filename="../Project/Project.py" line="5418" />
       <source>Load a diagram from file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5409" />
+      <location filename="../Project/Project.py" line="5420" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6998" />
-      <location filename="../Project/Project.py" line="6943" />
-      <location filename="../Project/Project.py" line="5424" />
+      <location filename="../Project/Project.py" line="7009" />
+      <location filename="../Project/Project.py" line="6954" />
+      <location filename="../Project/Project.py" line="5435" />
       <source>Create Package List</source>
       <translation>Vytvořit seznam balíčků</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5426" />
+      <location filename="../Project/Project.py" line="5437" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished">Vytvořit Plugin &amp;archiv</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5433" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5436" />
+      <location filename="../Project/Project.py" line="5447" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7068" />
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="7080" />
+      <location filename="../Project/Project.py" line="5458" />
       <source>Create Plugin Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5449" />
+      <location filename="../Project/Project.py" line="5460" />
       <source>Create Plugin &amp;Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5455" />
+      <location filename="../Project/Project.py" line="5466" />
       <source>Create eric plugin archive files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5457" />
+      <location filename="../Project/Project.py" line="5468" />
       <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5469" />
+      <location filename="../Project/Project.py" line="5480" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5471" />
+      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5478" />
+      <location filename="../Project/Project.py" line="5489" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5481" />
+      <location filename="../Project/Project.py" line="5492" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7510" />
-      <location filename="../Project/Project.py" line="7481" />
-      <location filename="../Project/Project.py" line="7435" />
-      <location filename="../Project/Project.py" line="7387" />
-      <location filename="../Project/Project.py" line="5500" />
+      <location filename="../Project/Project.py" line="7536" />
+      <location filename="../Project/Project.py" line="7507" />
+      <location filename="../Project/Project.py" line="7461" />
+      <location filename="../Project/Project.py" line="7413" />
+      <location filename="../Project/Project.py" line="5511" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5501" />
+      <location filename="../Project/Project.py" line="5512" />
       <source>&amp;Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5507" />
+      <location filename="../Project/Project.py" line="5518" />
       <source>Perform a 'make' run.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5509" />
-      <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7487" />
-      <location filename="../Project/Project.py" line="5519" />
-      <source>Test for Changes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5520" />
+      <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7513" />
+      <location filename="../Project/Project.py" line="5530" />
+      <source>Test for Changes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5531" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5527" />
+      <location filename="../Project/Project.py" line="5538" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="5541" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5548" />
-      <source>Create SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5549" />
-      <source>Create &amp;SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5556" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5559" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <source>Create SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5560" />
+      <source>Create &amp;SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5567" />
+      <source>Create a SBOM file of the project dependencies.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5570" />
-      <source>Clear Byte Code Caches</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5571" />
-      <source>Clear Byte Code &amp;Caches</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5578" />
-      <source>Clear the byte code caches of the project.</source>
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5581" />
+      <source>Clear Byte Code Caches</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5582" />
+      <source>Clear Byte Code &amp;Caches</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5589" />
+      <source>Clear the byte code caches of the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5592" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5597" />
+      <location filename="../Project/Project.py" line="5608" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5598" />
+      <location filename="../Project/Project.py" line="5609" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5604" />
+      <location filename="../Project/Project.py" line="5615" />
       <source>Show some information about 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5606" />
+      <location filename="../Project/Project.py" line="5617" />
       <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5618" />
-      <source>Format Code</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5619" />
-      <source>&amp;Format Code</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5626" />
-      <source>Format the project sources with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5629" />
+      <source>Format Code</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5630" />
+      <source>&amp;Format Code</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5637" />
+      <source>Format the project sources with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5640" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5641" />
+      <location filename="../Project/Project.py" line="5652" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5642" />
+      <location filename="../Project/Project.py" line="5653" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5649" />
+      <location filename="../Project/Project.py" line="5660" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5654" />
+      <location filename="../Project/Project.py" line="5665" />
       <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5667" />
+      <location filename="../Project/Project.py" line="5678" />
       <source>Code Formatting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5668" />
+      <location filename="../Project/Project.py" line="5679" />
       <source>Code Formatting &amp;Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5686" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5681" />
+      <location filename="../Project/Project.py" line="5692" />
       <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5846" />
-      <location filename="../Project/Project.py" line="5796" />
-      <location filename="../Project/Project.py" line="5795" />
-      <location filename="../Project/Project.py" line="5695" />
-      <location filename="../Project/Project.py" line="5694" />
+      <location filename="../Project/Project.py" line="5857" />
+      <location filename="../Project/Project.py" line="5807" />
+      <location filename="../Project/Project.py" line="5806" />
+      <location filename="../Project/Project.py" line="5706" />
+      <location filename="../Project/Project.py" line="5705" />
       <source>Configure</source>
       <translation type="unfinished">Konfigurovat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5702" />
+      <location filename="../Project/Project.py" line="5713" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5707" />
+      <location filename="../Project/Project.py" line="5718" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5723" />
+      <location filename="../Project/Project.py" line="5734" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5724" />
+      <location filename="../Project/Project.py" line="5735" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5730" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5732" />
+      <location filename="../Project/Project.py" line="5743" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5745" />
-      <location filename="../Project/Project.py" line="5744" />
-      <source>Sort Imports</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5752" />
-      <source>Sort the import statements of the project sources with 'isort'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <location filename="../Project/Project.py" line="5756" />
       <location filename="../Project/Project.py" line="5755" />
+      <source>Sort Imports</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5763" />
+      <source>Sort the import statements of the project sources with 'isort'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5766" />
       <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5769" />
-      <location filename="../Project/Project.py" line="5768" />
+      <location filename="../Project/Project.py" line="5780" />
+      <location filename="../Project/Project.py" line="5779" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5776" />
+      <location filename="../Project/Project.py" line="5787" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5782" />
+      <location filename="../Project/Project.py" line="5793" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5803" />
+      <location filename="../Project/Project.py" line="5814" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5809" />
+      <location filename="../Project/Project.py" line="5820" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5825" />
-      <source>Install Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5826" />
-      <source>&amp;Install Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5833" />
-      <source>Install the project into the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5836" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <source>Install Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5837" />
+      <source>&amp;Install Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5844" />
+      <source>Install the project into the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5847" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5854" />
+      <location filename="../Project/Project.py" line="5865" />
       <source>Configure the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5857" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5867" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5868" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5878" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5874" />
+      <location filename="../Project/Project.py" line="5885" />
       <source>Upgrade the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5876" />
+      <location filename="../Project/Project.py" line="5887" />
       <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5888" />
+      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5889" />
+      <location filename="../Project/Project.py" line="5900" />
       <source>&amp;Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5895" />
+      <location filename="../Project/Project.py" line="5906" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5897" />
+      <location filename="../Project/Project.py" line="5908" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5929" />
+      <location filename="../Project/Project.py" line="5940" />
       <source>&amp;Project</source>
       <translation>&amp;Projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5930" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Otevřít poslední p&amp;rojekty</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5932" />
-      <source>Session</source>
-      <translation>Relace</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5933" />
-      <source>Debugger</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5934" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5936" />
-      <source>Project-T&amp;ools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5937" />
-      <source>&amp;Version Control</source>
-      <translation>Kontrola &amp;verzí</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5941" />
-      <source>Chec&amp;k</source>
-      <translation>Zkontro&amp;lovat</translation>
+      <source>Open &amp;Recent Projects</source>
+      <translation>Otevřít poslední p&amp;rojekty</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
+      <source>Session</source>
+      <translation>Relace</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5944" />
+      <source>Debugger</source>
+      <translation />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Sho&amp;w</source>
-      <translation>Zo&amp;brazit</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5946" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Diagramy</translation>
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Pac&amp;kagers</source>
-      <translation>Balíč&amp;ky</translation>
+      <source>Project-T&amp;ools</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
+      <source>&amp;Version Control</source>
+      <translation>Kontrola &amp;verzí</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5952" />
+      <source>Chec&amp;k</source>
+      <translation>Zkontro&amp;lovat</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5954" />
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5956" />
+      <source>Sho&amp;w</source>
+      <translation>Zo&amp;brazit</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5957" />
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Diagramy</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5958" />
+      <source>Pac&amp;kagers</source>
+      <translation>Balíč&amp;ky</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5959" />
       <source>Source &amp;Documentation</source>
       <translation>Zd&amp;rojová dokumentace</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5950" />
+      <location filename="../Project/Project.py" line="5961" />
       <source>Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5951" />
+      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6113" />
-      <location filename="../Project/Project.py" line="6111" />
+      <location filename="../Project/Project.py" line="6124" />
+      <location filename="../Project/Project.py" line="6122" />
       <source>Project</source>
       <translation>Projekt</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6195" />
+      <location filename="../Project/Project.py" line="6206" />
       <source>&amp;Clear</source>
       <translation>&amp;Vyčistit</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6392" />
+      <location filename="../Project/Project.py" line="6403" />
       <source>Search New Files</source>
       <translation>Hledat nové soubory</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6393" />
+      <location filename="../Project/Project.py" line="6404" />
       <source>There were no new files found to be added.</source>
       <translation>Nebyly nalezeny žádné soubory, které je možné přidat.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6554" />
-      <location filename="../Project/Project.py" line="6541" />
+      <location filename="../Project/Project.py" line="6565" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>Version Control System</source>
       <translation>Version Control System</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6542" />
+      <location filename="../Project/Project.py" line="6553" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6555" />
+      <location filename="../Project/Project.py" line="6566" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Vybrané VCS &lt;b&gt;{0}&lt;/b&gt; nebylo nalezeno.&lt;br/&gt;Kontrola verzí vypnuta.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6712" />
+      <location filename="../Project/Project.py" line="6723" />
       <source>Coverage Data</source>
       <translation>Datové pokrytí</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6766" />
-      <location filename="../Project/Project.py" line="6713" />
+      <location filename="../Project/Project.py" line="6777" />
+      <location filename="../Project/Project.py" line="6724" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>V aktuálním projektu nebyl určen hlavní skript. Zrušeno</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6725" />
+      <location filename="../Project/Project.py" line="6736" />
       <source>Code Coverage</source>
       <translation>Pokrytí kódu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6726" />
+      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation>Prosím, vyberte soubor pokrytí</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6779" />
+      <location filename="../Project/Project.py" line="6790" />
       <source>Please select a profile file</source>
       <translation>Prosím, vyberte soubor s profilem</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6831" />
+      <location filename="../Project/Project.py" line="6842" />
       <source>Include module names?</source>
       <translation>Včetně jmen modulů?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6944" />
+      <location filename="../Project/Project.py" line="6955" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;PKGLIST&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Přepsat jej?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6999" />
+      <location filename="../Project/Project.py" line="7010" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;PKGLIST&lt;/b&gt; nelze vytvořit.&lt;/p&gt;&lt;p&gt;Důvod: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7295" />
-      <location filename="../Project/Project.py" line="7251" />
-      <location filename="../Project/Project.py" line="7201" />
-      <location filename="../Project/Project.py" line="7190" />
-      <location filename="../Project/Project.py" line="7172" />
-      <location filename="../Project/Project.py" line="7139" />
-      <location filename="../Project/Project.py" line="7109" />
-      <location filename="../Project/Project.py" line="7081" />
-      <location filename="../Project/Project.py" line="7051" />
-      <location filename="../Project/Project.py" line="7037" />
-      <location filename="../Project/Project.py" line="7020" />
+      <location filename="../Project/Project.py" line="7321" />
+      <location filename="../Project/Project.py" line="7277" />
+      <location filename="../Project/Project.py" line="7227" />
+      <location filename="../Project/Project.py" line="7216" />
+      <location filename="../Project/Project.py" line="7198" />
+      <location filename="../Project/Project.py" line="7151" />
+      <location filename="../Project/Project.py" line="7121" />
+      <location filename="../Project/Project.py" line="7093" />
+      <location filename="../Project/Project.py" line="7063" />
+      <location filename="../Project/Project.py" line="7048" />
+      <location filename="../Project/Project.py" line="7031" />
       <source>Create Plugin Archive</source>
       <translation>Vytvořit Plugin archiv</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7021" />
+      <location filename="../Project/Project.py" line="7032" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation>Projekt nemá definován hlavní skript. Zrušeno...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7038" />
+      <location filename="../Project/Project.py" line="7049" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7052" />
-      <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7060" />
-      <source>Creating plugin archives...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7061" />
-      <source>Abort</source>
-      <translation type="unfinished">Přerušit</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="7064" />
+      <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7072" />
+      <source>Creating plugin archives...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7073" />
+      <source>Abort</source>
+      <translation type="unfinished">Přerušit</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7076" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7082" />
+      <location filename="../Project/Project.py" line="7094" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7110" />
+      <location filename="../Project/Project.py" line="7122" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7140" />
+      <location filename="../Project/Project.py" line="7152" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7199" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nelze uložit do archivu. Ingorováno.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7191" />
+      <location filename="../Project/Project.py" line="7217" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7228" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7252" />
+      <location filename="../Project/Project.py" line="7278" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Plugin soubor &lt;b&gt;{0}&lt;/b&gt; nelze přečíst.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7296" />
+      <location filename="../Project/Project.py" line="7322" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7388" />
+      <location filename="../Project/Project.py" line="7414" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7436" />
+      <location filename="../Project/Project.py" line="7462" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7482" />
+      <location filename="../Project/Project.py" line="7508" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7490" />
+      <location filename="../Project/Project.py" line="7516" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7495" />
+      <location filename="../Project/Project.py" line="7521" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7511" />
+      <location filename="../Project/Project.py" line="7537" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7941" />
+      <location filename="../Project/Project.py" line="7975" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7942" />
+      <location filename="../Project/Project.py" line="7976" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8023" />
+      <location filename="../Project/Project.py" line="8057" />
       <source>Open Remote Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8054" />
-      <location filename="../Project/Project.py" line="8039" />
+      <location filename="../Project/Project.py" line="8088" />
+      <location filename="../Project/Project.py" line="8073" />
       <source>Save Remote Project</source>
       <translation type="unfinished" />
     </message>
@@ -65209,50 +65224,50 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="527" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="511" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="529" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="513" />
       <source>New directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="512" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="514" />
       <source>&lt;p&gt;A file or directory named &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="528" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="530" />
       <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="625" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="596" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="577" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="627" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="598" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="579" />
       <source>New file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="578" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="580" />
       <source>Enter the path of the new file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="597" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="599" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="626" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="628" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="716" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="718" />
       <source>Delete files/directories</source>
       <translation>Smazat soubory/adresáře</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="717" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="719" />
       <source>Do you really want to delete these entries from the project?</source>
       <translation>Opravdu chcete odebrat tyto položky z projektu?</translation>
     </message>
@@ -66993,22 +67008,22 @@
   <context>
     <name>Purge</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="74" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="76" />
       <source>Purge All Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="75" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="77" />
       <source>Do really want to delete all files not tracked by Mercurial (including ignored ones)?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="80" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="82" />
       <source>Purge Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="81" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="83" />
       <source>Do really want to delete files not tracked by Mercurial?</source>
       <translation type="unfinished" />
     </message>
@@ -67116,7 +67131,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="453" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="455" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="235" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -67132,7 +67147,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="433" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="246" />
       <source>Flash MicroPython Firmware</source>
       <translation type="unfinished" />
@@ -67188,7 +67203,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="431" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="390" />
       <source>'dfu-util' Output</source>
       <translation type="unfinished" />
@@ -67199,37 +67214,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="416" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="417" />
       <source>Flash MicroPython/CircuitPython Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="419" />
       <source>MicroPython Firmware Files (*.dfu);;CircuitPython Firmware Files (*.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="454" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="456" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="484" />
       <source>unknown</source>
       <translation type="unfinished">neznámý</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="488" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="490" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="496" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="498" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="500" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="502" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -69356,12 +69371,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="139" />
+      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="141" />
       <source>No current editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="140" />
+      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="142" />
       <source>Please open or create a file first.</source>
       <translation type="unfinished" />
     </message>
@@ -71142,7 +71157,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="122" />
+      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="124" />
       <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="82" />
       <source>Add Documentation</source>
       <translation type="unfinished">Přidat dokumentaci</translation>
@@ -71153,7 +71168,7 @@
       <translation type="unfinished">Qt komprimované soubory s nápovqdou (*.qch)</translation>
     </message>
     <message>
-      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="123" />
+      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="125" />
       <source>The file &lt;b&gt;{0}&lt;/b&gt; could not be added.</source>
       <translation type="unfinished" />
     </message>
@@ -71411,191 +71426,191 @@
   <context>
     <name>Queues</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="226" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="228" />
       <source>New Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="277" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="279" />
       <source>Update Current Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="335" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="337" />
       <source>Pop Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="339" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="341" />
       <source>Push Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="343" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="345" />
       <source>Go to Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="437" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="369" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="356" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="441" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="371" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="358" />
       <source>Select Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="359" />
       <source>Select the target patch name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="372" />
       <source>No patches to select from.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="399" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="401" />
       <source>Finish Applied Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="423" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="427" />
       <source>Rename Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="438" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="442" />
       <source>Select the patch to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="446" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="450" />
       <source>Delete Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="488" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="482" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="475" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="492" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="486" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="479" />
       <source>Fold Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="483" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="487" />
       <source>No patches selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="493" />
       <source>No patches available to be folded.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="510" />
       <source>List Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="507" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="511" />
       <source>No patches available to list guards for.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="536" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="540" />
       <source>Define Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="537" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="541" />
       <source>No patches available to define guards for.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="568" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="548" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="552" />
       <source>Drop All Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="549" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="553" />
       <source>Select the patch to drop guards for (leave empty for the current patch):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="597" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="590" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="606" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598" />
       <source>Set Active Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="607" />
       <source>No guards available to select from.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="618" />
       <source>Deactivate Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649" />
       <source>Create New Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649" />
       <source>Rename Active Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="658" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="673" />
       <source>Error while creating a new queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="660" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="675" />
       <source>Error while renaming the active queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="693" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="708" />
       <source>Purge Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="710" />
       <source>Delete Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="697" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="712" />
       <source>Activate Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="717" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="736" />
       <source>Error while purging the queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="738" />
       <source>Error while deleting the queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="721" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="740" />
       <source>Error while setting the active queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="743" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="762" />
       <source>Available Queues</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="757" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="777" />
       <source>Initializing new queue repository</source>
       <translation type="unfinished" />
     </message>
@@ -72736,17 +72751,17 @@
   <context>
     <name>Rebase</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="83" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="86" />
       <source>Rebase Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="106" />
       <source>Rebase Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="121" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="127" />
       <source>Rebase Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
@@ -72997,7 +73012,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="421" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="423" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -73051,37 +73066,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="402" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="403" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="403" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="404" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="424" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
       <source>unknown</source>
       <translation type="unfinished">neznámý</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="456" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="466" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="468" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="470" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -76004,49 +76019,49 @@
   <context>
     <name>Shelve</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="105" />
       <source>Shelve current changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="144" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="151" />
       <source>Restore shelved changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="162" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="170" />
       <source>Abort restore operation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="182" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="191" />
       <source>Continue restore operation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="201" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211" />
       <source>Select the shelves to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="220" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="222" />
       <source>Delete shelves</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="212" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="223" />
       <source>Do you really want to delete these shelves?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="238" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="249" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="242" />
       <source>Delete all shelves</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="232" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="243" />
       <source>Do you really want to delete all shelved changes?</source>
       <translation type="unfinished" />
     </message>
@@ -78857,7 +78872,7 @@
   <context>
     <name>Strip</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="64" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="68" />
       <source>Stripping changesets from repository</source>
       <translation type="unfinished" />
     </message>
@@ -78973,7 +78988,7 @@
       <translation>Proces svn skončil exit kódem {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2138" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2173" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="185" />
       <source>The svn process did not finish within 30s.</source>
       <translation>Proces svn neskončil do 30s.</translation>
@@ -79009,337 +79024,337 @@
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="320" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="334" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="335" />
       <source>Importing project into Subversion repository</source>
       <translation>Importovat projekt do Subversion repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="379" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="375" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="378" />
       <source>Subversion Checkout</source>
       <translation />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="450" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="436" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="376" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="452" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="381" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="442" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="379" />
       <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
       <translation>Tag musí být normální tag (tagy) nebo tag větve (větví). Prosím vyberte ze seznamu.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="402" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="402" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="406" />
       <source>Checking project out of Subversion repository</source>
       <translation>Checkout projektu ze Subversion repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="449" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="435" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="441" />
       <source>Subversion Export</source>
       <translation />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="471" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="459" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="473" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="466" />
       <source>Exporting project from Subversion repository</source>
       <translation>Exportuje projekt z Subversion repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="554" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="541" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="533" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="558" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="542" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="597" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="600" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="592" />
       <source>Commiting changes to Subversion repository</source>
       <translation>Commit změn do Subversion repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="670" />
       <source>Synchronizing with the Subversion repository</source>
       <translation>Synchronizovat se Subversion repozitářem</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="816" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="774" />
       <source>Adding files/directories to the Subversion repository</source>
       <translation>Přidat soubory/adresáře do Subversion repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="927" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="852" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="933" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="869" />
       <source>Adding directory trees to the Subversion repository</source>
       <translation>Přidat strom adresářů do Subversion repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="968" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="975" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="908" />
       <source>Removing files/directories from the Subversion repository</source>
       <translation>Odebrat soubory/adresáře ze Subversion repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1032" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="953" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1042" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="973" />
       <source>Moving {0}</source>
       <translation>Přesun {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1331" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1302" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1162" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1132" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1216" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1187" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1035" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1351" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1319" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1176" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1143" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1243" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1211" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1087" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1055" />
       <source>Subversion Error</source>
       <translation>Subversion chyba</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1133" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1036" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1144" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1056" />
       <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
       <translation>Z pracovní kopie nelze získat URL repozitáře projektu. Operace tagování bude zrušena</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1065" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1177" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1088" />
       <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
       <translation>URL repozitáře projektu má neplatný formát. Operace tagování bude zrušena</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1214" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1185" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1099" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1122" />
       <source>Tagging {0} in the Subversion repository</source>
       <translation>Tagování {0} v Subversion repozitáři</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1246" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1235" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1143" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1132" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1262" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1251" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1167" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1156" />
       <source>Revert changes</source>
       <translation type="unfinished">Vrátit změny</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1236" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1133" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1252" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1157" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1247" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1144" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1168" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1255" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1271" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1174" />
       <source>Reverting changes</source>
       <translation>Navrácení změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1303" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1188" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1320" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1212" />
       <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
       <translation>Z pracovní kopie nelze získat URL repozitáře projektu. Operace přepínání bude zrušena</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1332" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1217" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1352" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1244" />
       <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
       <translation>URL repozitáře projektu má neplatný formát. Operace přepínání bude zrušena</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1355" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1246" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1375" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273" />
       <source>Switching to {0}</source>
       <translation>Přepínání do {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1456" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1313" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1481" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1344" />
       <source>Merging {0}</source>
       <translation>Sloučení {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1787" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1602" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1813" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633" />
       <source>Cleaning up {0}</source>
       <translation>Vyčištění {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1828" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1859" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1666" />
       <source>Subversion command</source>
       <translation>Subversion příkaz</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1960" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1991" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1849" />
       <source>Resolving conficts</source>
       <translation>Řešení konfliktů</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1852" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2036" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1885" />
       <source>Copying {0}</source>
       <translation>Kopírování {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2084" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2067" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1923" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1902" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2117" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2100" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1956" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1935" />
       <source>Subversion Set Property</source>
       <translation>Nastavit Subversion vlastnost</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2131" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2068" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1951" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1903" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2101" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1936" />
       <source>You have to supply a property name. Aborting.</source>
       <translation>Musíte doplnit jméno vlastnosti. Zrušeno.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2147" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2130" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1968" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1950" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1939" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2181" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2164" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2001" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1983" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1972" />
       <source>Subversion Delete Property</source>
       <translation>Smazat Subversion vlastnost</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1973" />
       <source>Enter property name</source>
       <translation>Zadejte jméno vlastnosti</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2140" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2175" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2403" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2391" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2382" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2206" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2194" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2185" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2440" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2428" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2419" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2241" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2229" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220" />
       <source>Subversion Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2404" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2207" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2242" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nelze přečíst.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2466" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2260" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2503" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2295" />
       <source>Locking in the Subversion repository</source>
       <translation>Zamknout v Subversion repozitáři</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2508" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2545" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2324" />
       <source>Unlocking in the Subversion repository</source>
       <translation>Odemknout v Subversion repozitáři</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2558" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2314" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2595" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2351" />
       <source>Relocating</source>
       <translation />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2584" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2333" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2621" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2370" />
       <source>Repository Browser</source>
       <translation>Prohlížeč repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2585" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2334" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2371" />
       <source>Enter the repository URL.</source>
       <translation>Zadejte URL repozitáře.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2610" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2647" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2441" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2404" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2367" />
       <source>Remove from changelist</source>
       <translation>Odebrat ze seznamu změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2649" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2638" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2383" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2687" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2676" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2420" />
       <source>Add to changelist</source>
       <translation>Přidat do seznamu změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2639" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2384" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2677" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2421" />
       <source>Enter name of the changelist:</source>
       <translation>Zadejte název seznamu změn:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2706" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2474" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2746" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2511" />
       <source>Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="338" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="339" />
       <source>Imported revision {0}.
 </source>
       <translation>Inportovaná revize {0}.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="635" />
       <source>Committed revision {0}.</source>
       <translation>Zapsaná revize {0}.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1363" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1384" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1226" />
       <source>Revision {0}.
 </source>
       <translation>Revize {0}.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2107" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2141" />
       <source>Property set.</source>
       <translation>Vlastnost nastavena.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2200" />
       <source>Property deleted.</source>
       <translation>Vlastnost smazána.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2448" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2485" />
       <source>Subversion Lock</source>
       <translation>Subversion zámek</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2449" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2486" />
       <source>Enter lock comment</source>
       <translation>Zadejte komentář zámku</translation>
     </message>
@@ -89665,133 +89680,133 @@
   <context>
     <name>UF2FlashDialog</name>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="722" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="732" />
       <source>&lt;h3&gt;CircuitPython Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Switch your device to 'bootloader' mode by double-pressing the reset button.&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;(If this does not happen, then try shorter or longer pauses between presses.)&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="748" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="758" />
       <source>&lt;h3&gt;Pi Pico (RP2040/RP2350) Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Enter 'bootloader' mode (board &lt;b&gt;without&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;Plug in your board while holding the BOOTSEL button.&lt;/li&gt;&lt;/ul&gt;Enter 'bootloader' mode (board &lt;b&gt;with&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;hold down RESET&lt;/li&gt;&lt;li&gt;hold down BOOTSEL&lt;/li&gt;&lt;li&gt;release RESET&lt;/li&gt;&lt;li&gt;release BOOTSEL&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/UF2FlashDialog.ui" line="0" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1248" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1256" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1258" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1266" />
       <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1257" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1267" />
       <source>Select the Boot Volume of the device:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="861" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="871" />
       <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="928" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="920" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="904" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="938" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="930" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="914" />
       <source>Manual Select</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1032" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1000" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="977" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1042" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1010" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="987" />
       <source>Reset Instructions:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="979" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="989" />
       <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the appropriate instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1003" />
-      <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/UF2FlashDialog.py" line="1013" />
+      <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1023" />
       <source>&lt;h4&gt;Potentially UF2 capable devices found&lt;/h4&gt;&lt;p&gt;Found these potentially UF2 capable devices:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1034" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1044" />
       <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1046" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1056" />
       <source>Flash Instructions:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1048" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1058" />
       <source>&lt;h4&gt;Flash method 'manual' selected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to flash a device by entering the data manually.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Change the device to 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it) and select its path.&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1073" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1083" />
       <source>Boot Volume not found:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1075" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1085" />
       <source>&lt;h4&gt;No Boot Volume detected.&lt;/h4&gt;&lt;p&gt;Please ensure that the boot volume of the device to be flashed is available. </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1081" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1091" />
       <source>This volume should be named &lt;b&gt;{0}&lt;/b&gt;. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1086" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1096" />
       <source>This volume should have one of these names.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1093" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1103" />
       <source>&lt;h4&gt;Reset Instructions&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set the board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1112" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1122" />
       <source>Multiple Boot Volumes found:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1114" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1124" />
       <source>&lt;h4&gt;Multiple Boot Volumes were found&lt;/h4&gt;&lt;p&gt;These volume paths were found.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please ensure that only one device of a type is ready for flashing. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1133" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1143" />
       <source>Flashing Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1135" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1145" />
       <source>&lt;p&gt;Flashing the selected firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1142" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1152" />
       <source>Flashing {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1144" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1154" />
       <source>&lt;p&gt;Flashing the {0} firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1249" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1259" />
       <source>No UF2 device 'boot' volumes found.</source>
       <translation type="unfinished" />
     </message>
@@ -90357,24 +90372,24 @@
       <translation>Grafika</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="405" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="392" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="375" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="409" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="396" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="379" />
       <source>Save Diagram</source>
       <translation>Uložit diagram</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="377" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="381" />
       <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
       <translation>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="393" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="397" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="406" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="410" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nelze uložit.&lt;/p&gt;</translation>
     </message>
@@ -90552,44 +90567,44 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="95" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="97" />
       <source>{0} (*)</source>
       <comment>list entry is modified</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="179" />
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="158" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="181" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="160" />
       <source>Delete Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="159" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="161" />
       <source>The selected entries contain some with modified data. Shall they really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="180" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="182" />
       <source>The list contains some devices with modified data. Shall they really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="198" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="200" />
       <source>Restore Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="199" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="201" />
       <source>Restoring the list of unknown devices will overwrite all changes made. Do you really want to restore the list?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="263" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="265" />
       <source>Unsaved Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="264" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="266" />
       <source>The list of devices contains some with modified data.</source>
       <translation type="unfinished" />
     </message>
@@ -91102,7 +91117,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7883" />
+      <location filename="../UI/UserInterface.py" line="7890" />
       <location filename="../UI/UserInterface.py" line="1955" />
       <location filename="../UI/UserInterface.py" line="1948" />
       <source>Load session</source>
@@ -92193,7 +92208,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6626" />
+      <location filename="../UI/UserInterface.py" line="6630" />
       <location filename="../UI/UserInterface.py" line="3172" />
       <source>Snapshot</source>
       <translation type="unfinished" />
@@ -92430,8 +92445,8 @@
       <translation>&lt;b&gt;Klávesové zkratky&lt;/b&gt;&lt;p&gt;Nastavení klávesových zkratek aplikace podle zvyklostí uživatele.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7591" />
-      <location filename="../UI/UserInterface.py" line="7572" />
+      <location filename="../UI/UserInterface.py" line="7598" />
+      <location filename="../UI/UserInterface.py" line="7579" />
       <location filename="../UI/UserInterface.py" line="3402" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exportovat klávesové zkratky</translation>
@@ -92452,7 +92467,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="7610" />
+      <location filename="../UI/UserInterface.py" line="7617" />
       <location filename="../UI/UserInterface.py" line="3421" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Import klávesových zkratek</translation>
@@ -92861,7 +92876,7 @@
       <translation>Nastavení</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6354" />
+      <location filename="../UI/UserInterface.py" line="6358" />
       <location filename="../UI/UserInterface.py" line="4194" />
       <location filename="../UI/UserInterface.py" line="4179" />
       <source>Help</source>
@@ -93033,315 +93048,315 @@
       <translation>&amp;Skrýt vše</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6491" />
-      <location filename="../UI/UserInterface.py" line="6480" />
-      <location filename="../UI/UserInterface.py" line="6432" />
-      <location filename="../UI/UserInterface.py" line="6422" />
-      <location filename="../UI/UserInterface.py" line="6245" />
-      <location filename="../UI/UserInterface.py" line="6235" />
-      <location filename="../UI/UserInterface.py" line="6177" />
-      <location filename="../UI/UserInterface.py" line="6167" />
+      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6484" />
+      <location filename="../UI/UserInterface.py" line="6436" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6239" />
+      <location filename="../UI/UserInterface.py" line="6181" />
+      <location filename="../UI/UserInterface.py" line="6171" />
       <source>Problem</source>
       <translation>Problém</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6492" />
-      <location filename="../UI/UserInterface.py" line="6481" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <location filename="../UI/UserInterface.py" line="6423" />
-      <location filename="../UI/UserInterface.py" line="6246" />
-      <location filename="../UI/UserInterface.py" line="6236" />
-      <location filename="../UI/UserInterface.py" line="6178" />
-      <location filename="../UI/UserInterface.py" line="6168" />
+      <location filename="../UI/UserInterface.py" line="6496" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6437" />
+      <location filename="../UI/UserInterface.py" line="6427" />
+      <location filename="../UI/UserInterface.py" line="6250" />
+      <location filename="../UI/UserInterface.py" line="6240" />
+      <location filename="../UI/UserInterface.py" line="6182" />
+      <location filename="../UI/UserInterface.py" line="6172" />
       <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="6735" />
-      <location filename="../UI/UserInterface.py" line="6646" />
-      <location filename="../UI/UserInterface.py" line="6527" />
-      <location filename="../UI/UserInterface.py" line="6504" />
-      <location filename="../UI/UserInterface.py" line="6445" />
-      <location filename="../UI/UserInterface.py" line="6392" />
-      <location filename="../UI/UserInterface.py" line="6370" />
-      <location filename="../UI/UserInterface.py" line="6321" />
-      <location filename="../UI/UserInterface.py" line="6312" />
-      <location filename="../UI/UserInterface.py" line="6277" />
-      <location filename="../UI/UserInterface.py" line="6268" />
-      <location filename="../UI/UserInterface.py" line="6209" />
-      <location filename="../UI/UserInterface.py" line="6200" />
+      <location filename="../UI/UserInterface.py" line="6739" />
+      <location filename="../UI/UserInterface.py" line="6650" />
+      <location filename="../UI/UserInterface.py" line="6531" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6449" />
+      <location filename="../UI/UserInterface.py" line="6396" />
+      <location filename="../UI/UserInterface.py" line="6374" />
+      <location filename="../UI/UserInterface.py" line="6325" />
+      <location filename="../UI/UserInterface.py" line="6316" />
+      <location filename="../UI/UserInterface.py" line="6281" />
+      <location filename="../UI/UserInterface.py" line="6272" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6204" />
       <source>Process Generation Error</source>
       <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6201" />
+      <location filename="../UI/UserInterface.py" line="6205" />
       <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="6210" />
+      <location filename="../UI/UserInterface.py" line="6214" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6269" />
+      <location filename="../UI/UserInterface.py" line="6273" />
       <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="6278" />
+      <location filename="../UI/UserInterface.py" line="6282" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6313" />
+      <location filename="../UI/UserInterface.py" line="6317" />
       <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="6322" />
+      <location filename="../UI/UserInterface.py" line="6326" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6355" />
+      <location filename="../UI/UserInterface.py" line="6359" />
       <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="6371" />
+      <location filename="../UI/UserInterface.py" line="6375" />
       <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="6393" />
+      <location filename="../UI/UserInterface.py" line="6397" />
       <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="6446" />
+      <location filename="../UI/UserInterface.py" line="6450" />
       <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="6505" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <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="6528" />
+      <location filename="../UI/UserInterface.py" line="6532" />
       <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="6627" />
+      <location filename="../UI/UserInterface.py" line="6631" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6647" />
+      <location filename="../UI/UserInterface.py" line="6651" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6680" />
-      <location filename="../UI/UserInterface.py" line="6670" />
+      <location filename="../UI/UserInterface.py" line="6684" />
+      <location filename="../UI/UserInterface.py" line="6674" />
       <source>External Tools</source>
       <translation>Externí nástroje</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6671" />
+      <location filename="../UI/UserInterface.py" line="6675" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation>V externím nástroji  '{0}' ve skupině '{1}' nebyl záznam nástroje nalezen.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6681" />
+      <location filename="../UI/UserInterface.py" line="6685" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation>Skupina nástrojů '{0}' nenalezena. </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6718" />
+      <location filename="../UI/UserInterface.py" line="6722" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Spouštím proces '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6736" />
+      <location filename="../UI/UserInterface.py" line="6740" />
       <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="6815" />
+      <location filename="../UI/UserInterface.py" line="6819" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Proces '{0}' byl ukončen.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7102" />
-      <location filename="../UI/UserInterface.py" line="7040" />
-      <location filename="../UI/UserInterface.py" line="6996" />
-      <location filename="../UI/UserInterface.py" line="6922" />
-      <location filename="../UI/UserInterface.py" line="6858" />
+      <location filename="../UI/UserInterface.py" line="7106" />
+      <location filename="../UI/UserInterface.py" line="7044" />
+      <location filename="../UI/UserInterface.py" line="7000" />
+      <location filename="../UI/UserInterface.py" line="6926" />
+      <location filename="../UI/UserInterface.py" line="6862" />
       <source>Documentation Missing</source>
       <translation>Dokumentace chybí</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7103" />
-      <location filename="../UI/UserInterface.py" line="7041" />
-      <location filename="../UI/UserInterface.py" line="6997" />
-      <location filename="../UI/UserInterface.py" line="6923" />
-      <location filename="../UI/UserInterface.py" line="6859" />
+      <location filename="../UI/UserInterface.py" line="7107" />
+      <location filename="../UI/UserInterface.py" line="7045" />
+      <location filename="../UI/UserInterface.py" line="7001" />
+      <location filename="../UI/UserInterface.py" line="6927" />
+      <location filename="../UI/UserInterface.py" line="6863" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Adresář dokumentace "&lt;b&gt;{0}&lt;/b&gt;" nebyl nalezen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7084" />
-      <location filename="../UI/UserInterface.py" line="6966" />
+      <location filename="../UI/UserInterface.py" line="7088" />
+      <location filename="../UI/UserInterface.py" line="6970" />
       <source>Documentation</source>
       <translation>Dokumentace</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6967" />
+      <location filename="../UI/UserInterface.py" line="6971" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7085" />
+      <location filename="../UI/UserInterface.py" line="7089" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7264" />
-      <location filename="../UI/UserInterface.py" line="7200" />
+      <location filename="../UI/UserInterface.py" line="7268" />
+      <location filename="../UI/UserInterface.py" line="7204" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7201" />
+      <location filename="../UI/UserInterface.py" line="7205" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7265" />
+      <location filename="../UI/UserInterface.py" line="7269" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7311" />
+      <location filename="../UI/UserInterface.py" line="7315" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7311" />
+      <location filename="../UI/UserInterface.py" line="7315" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7612" />
-      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7619" />
+      <location filename="../UI/UserInterface.py" line="7581" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7592" />
+      <location filename="../UI/UserInterface.py" line="7599" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7796" />
+      <location filename="../UI/UserInterface.py" line="7803" />
       <source>Load crash session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7799" />
+      <location filename="../UI/UserInterface.py" line="7806" />
       <source>Clean crash sessions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7836" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7837" />
+      <location filename="../UI/UserInterface.py" line="7844" />
       <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="7860" />
+      <location filename="../UI/UserInterface.py" line="7867" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7885" />
-      <location filename="../UI/UserInterface.py" line="7862" />
+      <location filename="../UI/UserInterface.py" line="7892" />
+      <location filename="../UI/UserInterface.py" line="7869" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7954" />
+      <location filename="../UI/UserInterface.py" line="7961" />
       <source>Found Crash Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7955" />
+      <location filename="../UI/UserInterface.py" line="7962" />
       <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8028" />
+      <location filename="../UI/UserInterface.py" line="8035" />
       <source>Clean stale crash sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8029" />
+      <location filename="../UI/UserInterface.py" line="8036" />
       <source>Do you really want to delete these stale crash session files?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8405" />
+      <location filename="../UI/UserInterface.py" line="8412" />
       <source>Drop Error</source>
       <translation>Zahodit chybu</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8406" />
+      <location filename="../UI/UserInterface.py" line="8413" />
       <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="8594" />
+      <location filename="../UI/UserInterface.py" line="8605" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8595" />
+      <location filename="../UI/UserInterface.py" line="8606" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8640" />
+      <location filename="../UI/UserInterface.py" line="8651" />
       <source>First time usage</source>
       <translation>Spuštěno poprvé</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8641" />
+      <location filename="../UI/UserInterface.py" line="8652" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8663" />
+      <location filename="../UI/UserInterface.py" line="8674" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8831" />
+      <location filename="../UI/UserInterface.py" line="8842" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8832" />
+      <location filename="../UI/UserInterface.py" line="8843" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -94042,8 +94057,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginVcsGit.py" line="134" />
-      <location filename="../Plugins/PluginVcsGit.py" line="98" />
+      <location filename="../Plugins/PluginVcsGit.py" line="133" />
+      <location filename="../Plugins/PluginVcsGit.py" line="97" />
       <source>Git</source>
       <translation type="unfinished" />
     </message>
@@ -94257,156 +94272,156 @@
   <context>
     <name>VcsProjectHelper</name>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="76" />
+      <location filename="../VCS/ProjectHelper.py" line="77" />
       <source>New from repository</source>
       <translation>Nový z repozitáře</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="78" />
+      <location filename="../VCS/ProjectHelper.py" line="79" />
       <source>&amp;New from repository...</source>
       <translation>&amp;Nový z repozitáře...</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="85" />
+      <location filename="../VCS/ProjectHelper.py" line="86" />
       <source>Create a new project from the VCS repository</source>
       <translation>Vytvořit nový projekt z VCS repozitáře</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="90" />
+      <location filename="../VCS/ProjectHelper.py" line="91" />
       <source>&lt;b&gt;New from repository&lt;/b&gt;&lt;p&gt;This creates a new local project from the VCS repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nový z repozitáře&lt;/b&gt;&lt;p&gt;Vytvoří nový lokální projekt z VCS repozitáře.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="101" />
+      <location filename="../VCS/ProjectHelper.py" line="102" />
       <source>Export from repository</source>
       <translation>Exportovat z repozitáře</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="103" />
+      <location filename="../VCS/ProjectHelper.py" line="104" />
       <source>&amp;Export from repository...</source>
       <translation>&amp;Exportovat z repozitáře...</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="112" />
+      <location filename="../VCS/ProjectHelper.py" line="113" />
       <source>Export a project from the repository</source>
       <translation>Export projekt z repozitáře</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="117" />
+      <location filename="../VCS/ProjectHelper.py" line="118" />
       <source>&lt;b&gt;Export from repository&lt;/b&gt;&lt;p&gt;This exports a project from the repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Exportovat z repozitáře&lt;/b&gt;&lt;p&gt;Exportuje projekt z repozitáře.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="127" />
+      <location filename="../VCS/ProjectHelper.py" line="128" />
       <source>Add to repository</source>
       <translation>Přidat do repozitáře</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="129" />
+      <location filename="../VCS/ProjectHelper.py" line="130" />
       <source>&amp;Add to repository...</source>
       <translation>Přid&amp;at do repozitáře...</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="136" />
+      <location filename="../VCS/ProjectHelper.py" line="137" />
       <source>Add the local project to the VCS repository</source>
       <translation>Přidat lokální projekt do VCS repozitáře</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="141" />
+      <location filename="../VCS/ProjectHelper.py" line="142" />
       <source>&lt;b&gt;Add to repository&lt;/b&gt;&lt;p&gt;This adds (imports) the local project to the VCS repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Přidat do repozitáře&lt;/b&gt;&lt;p&gt;Přidá (importuje) lokální projekt do VCS repozitáře.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="192" />
-      <location filename="../VCS/ProjectHelper.py" line="190" />
+      <location filename="../VCS/ProjectHelper.py" line="193" />
+      <location filename="../VCS/ProjectHelper.py" line="191" />
       <source>VCS</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="265" />
-      <location filename="../VCS/ProjectHelper.py" line="236" />
+      <location filename="../VCS/ProjectHelper.py" line="266" />
+      <location filename="../VCS/ProjectHelper.py" line="237" />
       <source>New Project</source>
       <translation>Nový projekt</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="462" />
-      <location filename="../VCS/ProjectHelper.py" line="237" />
+      <location filename="../VCS/ProjectHelper.py" line="465" />
+      <location filename="../VCS/ProjectHelper.py" line="238" />
       <source>Select version control system for the project</source>
       <translation>Výběr verzovacího systému projektu</translation>
     </message>
     <message>
+      <location filename="../VCS/ProjectHelper.py" line="497" />
+      <location filename="../VCS/ProjectHelper.py" line="267" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation>Chcete editovat parametry VCS příkazu?</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="287" />
+      <source>Create project directory</source>
+      <translation>Vytvořit adresář projektu</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="290" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Adresář projektu &lt;b&gt;{0}&lt;/b&gt; nelze vytvořit.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="396" />
+      <location filename="../VCS/ProjectHelper.py" line="380" />
+      <location filename="../VCS/ProjectHelper.py" line="336" />
+      <location filename="../VCS/ProjectHelper.py" line="316" />
+      <source>New project from repository</source>
+      <translation>Nový projekt z repozitáře</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="319" />
+      <source>Select a project file to open.</source>
+      <translation>Výběr souboru s projektem pro otevření.</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="339" />
+      <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="384" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation>Může být soubor projektu přidán do repozitáře?</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="399" />
+      <source>The project could not be retrieved from the repository.</source>
+      <translation>Z repozitáře není možné získat soubor s projektem.</translation>
+    </message>
+    <message>
       <location filename="../VCS/ProjectHelper.py" line="494" />
-      <location filename="../VCS/ProjectHelper.py" line="266" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation>Chcete editovat parametry VCS příkazu?</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="286" />
-      <source>Create project directory</source>
-      <translation>Vytvořit adresář projektu</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="289" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Adresář projektu &lt;b&gt;{0}&lt;/b&gt; nelze vytvořit.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="393" />
-      <location filename="../VCS/ProjectHelper.py" line="377" />
-      <location filename="../VCS/ProjectHelper.py" line="335" />
-      <location filename="../VCS/ProjectHelper.py" line="315" />
-      <source>New project from repository</source>
-      <translation>Nový projekt z repozitáře</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="318" />
-      <source>Select a project file to open.</source>
-      <translation>Výběr souboru s projektem pro otevření.</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="338" />
-      <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="381" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation>Může být soubor projektu přidán do repozitáře?</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="396" />
-      <source>The project could not be retrieved from the repository.</source>
-      <translation>Z repozitáře není možné získat soubor s projektem.</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="491" />
-      <location filename="../VCS/ProjectHelper.py" line="461" />
+      <location filename="../VCS/ProjectHelper.py" line="464" />
       <source>Import Project</source>
       <translation>Importovat projekt</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="535" />
+      <location filename="../VCS/ProjectHelper.py" line="540" />
       <source>Update</source>
       <translation>Obnovit</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="669" />
-      <location filename="../VCS/ProjectHelper.py" line="536" />
+      <location filename="../VCS/ProjectHelper.py" line="674" />
+      <location filename="../VCS/ProjectHelper.py" line="541" />
       <source>The project should be reread. Do this now?</source>
       <translation>Projekt bude znovu načten. Má se provést?</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="572" />
+      <location filename="../VCS/ProjectHelper.py" line="577" />
       <source>Remove project from repository</source>
       <translation>Odebrat projekt z repozitáře</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="575" />
+      <location filename="../VCS/ProjectHelper.py" line="580" />
       <source>Dou you really want to remove this project from the repository (and disk)?</source>
       <translation>Opravdu chcete odebrat tento projekt z repozitáře (a z disku)?</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="668" />
+      <location filename="../VCS/ProjectHelper.py" line="673" />
       <source>Switch</source>
       <translation type="unfinished">Přepnout</translation>
     </message>
@@ -99424,54 +99439,54 @@
   <context>
     <name>VirtualenvManager</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="318" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="322" />
       <source>Add Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="319" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="323" />
       <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="356" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="362" />
       <source>Change Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="389" />
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="357" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="395" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="363" />
       <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="388" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="394" />
       <source>Rename Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="480" />
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="413" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="486" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="419" />
       <source>{0} - {1}</source>
       <translation type="unfinished">{0} - {1}</translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="420" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="426" />
       <source>Delete Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="421" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="427" />
       <source>Do you really want to delete these virtual environments?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="487" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="493" />
       <source>Remove Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="488" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="494" />
       <source>Do you really want to remove these virtual environments?</source>
       <translation type="unfinished" />
     </message>
@@ -99479,7 +99494,7 @@
   <context>
     <name>VirtualenvManagerDialog</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" />
+      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="449" />
       <source>Manage Virtual Environments</source>
       <translation type="unfinished" />
     </message>
@@ -99602,7 +99617,7 @@
   <context>
     <name>VirtualenvManagerWindow</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" />
+      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="489" />
       <source>Manage Virtual Environments</source>
       <translation type="unfinished" />
     </message>
@@ -104704,22 +104719,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="125" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="117" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="127" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="119" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="49" />
       <source>Connect WiFi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="173" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="167" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="175" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="169" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="50" />
       <source>Check Internet Connection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="147" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="141" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="149" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="143" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="51" />
       <source>Disconnect WiFi</source>
       <translation type="unfinished" />
@@ -104730,40 +104745,40 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="244" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="235" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="225" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="215" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="249" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="240" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="230" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="220" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="55" />
       <source>Write WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="282" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="272" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="261" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="287" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="277" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="266" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="56" />
       <source>Remove WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="495" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="486" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="500" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="491" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="58" />
       <source>Enable WebREPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="529" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="520" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="512" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="534" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="525" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="517" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="59" />
       <source>Disable WebREPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="313" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="329" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="318" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="61" />
       <source>Start WiFi Access Point</source>
       <translation type="unfinished" />
@@ -104774,14 +104789,14 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="378" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="383" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="66" />
       <source>Show Connected Clients</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="345" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="359" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="350" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="68" />
       <source>Stop WiFi Access Point</source>
       <translation type="unfinished" />
@@ -104797,186 +104812,186 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="464" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="448" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="428" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="419" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="469" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="433" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="424" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="79" />
       <source>Set Network Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="118" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="120" />
       <source>&lt;p&gt;The device was connected to &lt;b&gt;{0}&lt;/b&gt; successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="126" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="128" />
       <source>&lt;p&gt;The device could not connect to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="533" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="499" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="286" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="248" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="150" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="129" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="538" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="504" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="291" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="253" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="178" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="152" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="131" />
       <source>unknown</source>
       <translation type="unfinished">neznámý</translation>
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="142" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="144" />
       <source>&lt;p&gt;The device was disconnected from the WiFi network.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="148" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="150" />
       <source>&lt;p&gt;The device could not be disconnected.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="161" />
-      <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="163" />
+      <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="165" />
       <source>&lt;p&gt;The internet connection is &lt;b&gt;not available&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="174" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176" />
       <source>&lt;p&gt;The internet is not available.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="236" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="216" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="241" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="221" />
       <source>&lt;p&gt;The WiFi credentials were saved on the device. The device will connect to the WiFi network at boot time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="226" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="231" />
       <source>&lt;p&gt;The WiFi credentials and a connect script were saved on the device. Use the script by simply importing it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="245" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="250" />
       <source>&lt;p&gt;The WiFi credentials could not be saved on the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="262" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="267" />
       <source>Shall the saved WiFi credentials really be removed from the connected device?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="273" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="278" />
       <source>&lt;p&gt;The WiFi credentials were removed from the device. The device will not connect to the WiFi network at boot time anymore.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="283" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="288" />
       <source>&lt;p&gt;The WiFi credentials could not be removed from the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="314" />
-      <source>The WiFi Access Point interface was started successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="319" />
+      <source>The WiFi Access Point interface was started successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324" />
       <source>&lt;p&gt;The WiFi Access Point could not be started.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="405" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="356" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="326" />
+      <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351" />
+      <source>The WiFi Access Point interface was stopped successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354" />
+      <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="384" />
+      <source>No clients are connected to the access point.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="408" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="399" />
+      <source>Deactivate WiFi Interface</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="400" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="321" />
-      <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="346" />
-      <source>The WiFi Access Point interface was stopped successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="349" />
-      <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="379" />
-      <source>No clients are connected to the access point.</source>
+      <source>The WiFi interface was deactivated successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="403" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="394" />
-      <source>Deactivate WiFi Interface</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="395" />
-      <source>The WiFi interface was deactivated successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="398" />
       <source>&lt;p&gt;The WiFi interface could not be deactivated.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="420" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="425" />
       <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;adafruit_ntp&lt;/b&gt; is not installed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="429" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="434" />
       <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;ntptime&lt;/b&gt; is not available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="449" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="454" />
       <source>The device time was synchronized successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453" />
-      <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="458" />
+      <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="463" />
       <source>&lt;p&gt;The device time could not be synchronized. Is the device connected to a WiFi network?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="487" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="492" />
       <source>&lt;p&gt;The WebREPL server of the device will be activated after a reboot.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="496" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="501" />
       <source>&lt;p&gt;The WebREPL server of the device could not be enabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="513" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="518" />
       <source>Shall the WebREPL server of the device really be disabled?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="521" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="526" />
       <source>&lt;p&gt;The WebREPL server of the device will not be enabled at boot time anymore.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="530" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="535" />
       <source>&lt;p&gt;The WebREPL server of the device could not be disabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -105536,38 +105551,38 @@
   <context>
     <name>mercurial</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1349" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1383" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Rodič #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Množina změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1913" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1955" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1391" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tagy&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1919" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1363" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1961" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1397" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1370" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1968" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1404" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Větve&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1376" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1410" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Poslední autor&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum zapsání změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Čas zapsání změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1429" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -105578,35 +105593,35 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1887" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1929" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1894" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1936" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1901" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1943" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1906" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1948" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Množina změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1933" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1975" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Rodiče&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1981" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -106267,17 +106282,17 @@
   <context>
     <name>subversion</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1736" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1769" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Informace z repozitáře&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Aktuální revize&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revize zápisu změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum zápisu změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Čas zápisu změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Poslední autor&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1888" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1919" />
       <source>unknown</source>
       <translation>neznámý</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1892" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1923" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Informace z repozitáře&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Aktuální revize&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revize zápisu změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum zápisu změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Čas zápisu změn&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Poslední autor&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
Binary file src/eric7/i18n/eric7_de.qm has changed
--- a/src/eric7/i18n/eric7_de.ts	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/i18n/eric7_de.ts	Fri Nov 01 18:12:30 2024 +0100
@@ -1987,47 +1987,47 @@
         <translation>Würde umformatiert:</translation>
     </message>
     <message>
-        <location filename="../CodeFormatting/BlackFormattingDialog.py" line="281"/>
+        <location filename="../CodeFormatting/BlackFormattingDialog.py" line="284"/>
         <source>Formatting Failure</source>
         <translation>Formatierungsfehler</translation>
     </message>
     <message>
-        <location filename="../CodeFormatting/BlackFormattingDialog.py" line="282"/>
+        <location filename="../CodeFormatting/BlackFormattingDialog.py" line="285"/>
         <source>&lt;p&gt;Formatting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Umformatierung ist wegen dieses Fehlers abgebrochen.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../CodeFormatting/BlackFormattingDialog.py" line="545"/>
-        <source>would reformat</source>
-        <translation>würde umformatiert</translation>
-    </message>
-    <message>
         <location filename="../CodeFormatting/BlackFormattingDialog.py" line="548"/>
+        <source>would reformat</source>
+        <translation>würde umformatiert</translation>
+    </message>
+    <message>
+        <location filename="../CodeFormatting/BlackFormattingDialog.py" line="551"/>
         <source>reformatted</source>
         <translation>umformatiert</translation>
     </message>
     <message>
-        <location filename="../CodeFormatting/BlackFormattingDialog.py" line="553"/>
+        <location filename="../CodeFormatting/BlackFormattingDialog.py" line="556"/>
         <source>unchanged</source>
         <translation>unverändert</translation>
     </message>
     <message>
-        <location filename="../CodeFormatting/BlackFormattingDialog.py" line="557"/>
+        <location filename="../CodeFormatting/BlackFormattingDialog.py" line="560"/>
         <source>unmodified</source>
         <translation>unverändert</translation>
     </message>
     <message>
-        <location filename="../CodeFormatting/BlackFormattingDialog.py" line="561"/>
+        <location filename="../CodeFormatting/BlackFormattingDialog.py" line="564"/>
         <source>ignored</source>
         <translation>ignoriert</translation>
     </message>
     <message>
-        <location filename="../CodeFormatting/BlackFormattingDialog.py" line="565"/>
+        <location filename="../CodeFormatting/BlackFormattingDialog.py" line="568"/>
         <source>failed</source>
         <translation>gescheitert</translation>
     </message>
     <message>
-        <location filename="../CodeFormatting/BlackFormattingDialog.py" line="570"/>
+        <location filename="../CodeFormatting/BlackFormattingDialog.py" line="573"/>
         <source>invalid status ({0})</source>
         <translation>ungültiger Status ({0})</translation>
     </message>
@@ -4390,16 +4390,16 @@
 <context>
     <name>CircuitPythonUpdaterInterface</name>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="600"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="592"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="579"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="546"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="516"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="506"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="486"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="469"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="460"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="446"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="615"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="607"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="594"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="561"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="531"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="521"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="501"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="484"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="475"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461"/>
         <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="54"/>
         <source>Install Modules</source>
         <translation>Module installieren</translation>
@@ -4435,10 +4435,10 @@
         <translation>Veraltete Module auflisten</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="385"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="375"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="365"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="346"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="396"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="355"/>
         <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="95"/>
         <source>Update Modules</source>
         <translation>Module aktualisieren</translation>
@@ -4459,8 +4459,8 @@
         <translation>Installierte Module anzeigen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="642"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="621"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="658"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="636"/>
         <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="108"/>
         <source>Uninstall Modules</source>
         <translation>Module deinstallieren</translation>
@@ -4481,25 +4481,25 @@
         <translation>Bundles mit Modulen anzeigen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="249"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="236"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="225"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="213"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="201"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="188"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="251"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="238"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="227"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="215"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="203"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="190"/>
         <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="118"/>
         <source>Add Bundle</source>
         <translation>Bundle hinzufügen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="284"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="269"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="287"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="271"/>
         <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="119"/>
         <source>Remove Bundles</source>
         <translation>Bundle entfernen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="671"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="689"/>
         <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="121"/>
         <source>Show Local Cache Path</source>
         <translation>Zeige lokalen Cachepfad</translation>
@@ -4520,132 +4520,132 @@
         <translation>&lt;p&gt;&lt;b&gt;circup Version {0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;circup&lt;/i&gt; ist ein Werkzeug zur Verwaltung und Aktualisierung von Biblitheken eines CircuitPython Gerätes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="189"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="191"/>
         <source>Enter Bundle by &apos;User/Repo&apos; Github String:</source>
         <translation>Definiere das Bundle durch einen Github &apos;Nutzer/Repo&apos; Eintrag:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="202"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="204"/>
         <source>&lt;p&gt;The bundle &lt;b&gt;{0}&lt;/b&gt; is already in the list.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Bundle &lt;b&gt;{0}&lt;/b&gt; ist bereits in der Liste.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="214"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="216"/>
         <source>&lt;p&gt;The bundle string is invalid, expecting github URL or &apos;user/repository&apos; string.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Bundlebezeichnung ist ungültig; erwarte Github URL oder &apos;Nutzer/Repository&apos; Bezeichnung.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="226"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="228"/>
         <source>&lt;p&gt;The bundle string is invalid. The repository doesn&apos;t exist (error code 404).&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Bundlebezeichnung ist ungültig. Das Repository existiert nicht (Fehlercode 404).&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="237"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="239"/>
         <source>&lt;p&gt;The bundle string is invalid. Is the repository a valid circup bundle?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Bundlebezeichnung ist ungültig. Ist das Repository ein gültiges circup Bundle?.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="250"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="252"/>
         <source>&lt;p&gt;Added bundle &lt;b&gt;{0}&lt;/b&gt; ({1}).&lt;/p&gt;</source>
         <translation>&lt;p&gt;Bundle &lt;b&gt;{0}&lt;/b&gt; hinzugefügt ({1}).&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="270"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="272"/>
         <source>Select the bundles to be removed:</source>
         <translation>Wähle die zu entfernenden Bundle:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="285"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="288"/>
         <source>&lt;p&gt;These bundles were removed from the local bundles list.{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Diese Bundles wurden aus der Liste der lokalen Bundles entfernt.{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="347"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="356"/>
         <source>All modules are already up-to-date.</source>
         <translation>Alle Module sind bereits aktuell.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="366"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="377"/>
         <source>&lt;p&gt;There was an error updating &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Bei der Aktualisierung von &lt;b&gt;{0}&lt;/b&gt; gab es einen Fehler.&lt;/p&gt;&lt;p&gt;Fehler: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="387"/>
         <source>&lt;p&gt;These modules were updated on the connected device.{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dies Module wurden auf dem angeschlossenen Gerät aktualisiert.{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="397"/>
         <source>No modules could be updated.</source>
         <translation>Es konnten keine Module aktualisiert werden.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="448"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="463"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>Textdateien (*.txt);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="476"/>
         <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not contain valid modules.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die angegebene Anforderungsdatei &lt;b&gt;{0}&lt;/b&gt; enthält keine gültigen Module.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="470"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="485"/>
         <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die angegebene Anforderungsdatei &lt;b&gt;{0}&lt;/b&gt; existiert nicht.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="488"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="503"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>Python-Dateien (*.py);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="507"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="522"/>
         <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not contain valid import statements or does not import external modules.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Angegebene Quelldatei &lt;b&gt;{0}&lt;/b&gt; enthält keine gültigen Import Anweisungen oder importiert keine externen Module.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="517"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="532"/>
         <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Angegebene Quelldatei &lt;b&gt;{0}&lt;/b&gt; existiert nicht.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="547"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="562"/>
         <source>&lt;p&gt;Ready to install these modules?{0}{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Sollen diese Module jetzt installiert werden?{0}{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="552"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="567"/>
         <source>Dependencies:</source>
         <translation>Abhängigkeiten:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="580"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="595"/>
         <source>&lt;p&gt;Installation complete. These modules were installed successfully.{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Installation beendet. Diese Module wurden erfolgreich installiert.{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="593"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="608"/>
         <source>&lt;p&gt;Installation complete. No modules were installed.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Installation beendet. Es wurden keine Module installiert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="601"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="616"/>
         <source>&lt;p&gt;No modules installation is required.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es ist keine Installation von Modulen erforderlich.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="622"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="637"/>
         <source>Select the modules/packages to be uninstalled:</source>
         <translation>Wähle die zu deinstallierenden Module/Pakete:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="643"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="659"/>
         <source>&lt;p&gt;These modules/packages were uninstalled from the connected device.{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Diese Module und Pakete wurden von dem angeschlossenen Gerät deinstalliert,{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="672"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="690"/>
         <source>&lt;p&gt;&lt;b&gt;circup&lt;/b&gt; stores the downloaded CircuitPython bundles in this directory.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;circup&lt;/b&gt; speichert heruntergeladene CircuitPython Bundles in diesem Verzeichnis.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -4653,44 +4653,44 @@
 <context>
     <name>CircupFunctions</name>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="75"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="84"/>
         <source>Find Modules</source>
         <translation>Module suchen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="76"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="85"/>
         <source>&lt;p&gt;There was an error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es gab einen Fehler: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="148"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="109"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="157"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="118"/>
         <source>Download Bundle</source>
         <translation>Bundle herunterladen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="110"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="119"/>
         <source>&lt;p&gt;There was a problem downloading the bundle. Please try again in a moment.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Beim Herunterladen des Bundles trat ein Fehler auf. Bitte versuch es in einem Moment erneut.&lt;/p&gt;&lt;p&gt;Fehler: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="149"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="158"/>
         <source>&lt;p&gt;Missing file &lt;b&gt;boot_out.txt&lt;/b&gt; on the device: wrong path or drive corrupted.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Auf dem Gerät fehlt die Datei &lt;b&gt;boot_out.txt&lt;/b&gt;: falscher Pfad oder Laufwerk beschädigt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="243"/>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="232"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="252"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="241"/>
         <source>Install Modules</source>
         <translation>Module installieren</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="233"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="242"/>
         <source>&lt;p&gt;The compiled version of module &lt;b&gt;{0}&lt;/b&gt; cannot be found.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die kompilierte Version von Modul &lt;b&gt;{0}&lt;/b&gt; kann nicht gefunden werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="244"/>
+        <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="253"/>
         <source>&lt;p&gt;The module name &lt;b&gt;{0}&lt;/b&gt; is not known.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Modulname &lt;b&gt;{0}&lt;/b&gt; ist nicht bekannt.&lt;/p&gt;</translation>
     </message>
@@ -4817,17 +4817,17 @@
 <context>
     <name>Closehead</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="52"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54"/>
         <source>Revision &lt;{0}&gt; closed.</source>
         <translation>Revision &lt;{0}&gt; geschlossen.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="56"/>
         <source>Revisions &lt;{0}&gt; closed.</source>
         <translation>Revisionen &lt;{0}&gt; geschlossen.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="61"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="63"/>
         <source>Closing Heads</source>
         <translation>Köpfe schließen</translation>
     </message>
@@ -6157,19 +6157,19 @@
         <translation>Keine Dateien gefunden (überprüfe die Ignorierliste).</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1650"/>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1609"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1652"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1611"/>
         <source>{0} - {1}</source>
         <comment>issue code, message</comment>
         <translation>{0} – {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2997"/>
         <source>Commented Code Whitelist Pattern</source>
         <translation>&apos;Commented Code&apos; Whitelist Muster</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2996"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2998"/>
         <source>Enter a Commented Code Whitelist Pattern</source>
         <translation>Ein &apos;Commented Code&apos; Whitelist Muster eingeben</translation>
     </message>
@@ -7442,7 +7442,7 @@
         <translation>Umgebung klonen</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="713"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="715"/>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="181"/>
         <source>Delete Environment</source>
         <translation>Umgebung löschen</translation>
@@ -7489,22 +7489,22 @@
         <translation>Textdateien (*.txt);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="686"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
         <source>Create Environment</source>
         <translation>Umgebung erzeugen</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="714"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="716"/>
         <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soll die Umgebung &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="739"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="741"/>
         <source>Edit Configuration</source>
         <translation>Konfiguration bearbeiten</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="740"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="742"/>
         <source>The configuration file &quot;{0}&quot; does not exist or is not writable.</source>
         <translation>Die Konfigurationsdatei &quot;{0}&quot; existiert nicht oder ist nicht schreibbar.</translation>
     </message>
@@ -8850,30 +8850,30 @@
 <context>
     <name>CycloneDX</name>
     <message>
-        <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="190"/>
-        <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="182"/>
-        <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="151"/>
-        <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="115"/>
+        <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="192"/>
+        <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="184"/>
+        <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="153"/>
+        <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="117"/>
         <source>CycloneDX - SBOM Creation</source>
         <translation>CyccloneDX - STL Erzeugung</translation>
     </message>
     <message>
-        <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="118"/>
+        <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="120"/>
         <source>&lt;p&gt;The configured input file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die konfigurierte Eingabedatei &lt;b&gt;{0}&lt;/b&gt; existiert nicht. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="152"/>
+        <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="154"/>
         <source>&lt;p&gt;Some of the dependencies do not have pinned version numbers.&lt;ul&gt;{0}&lt;/ul&gt;The above listed packages will NOT be included in the generated CycloneDX SBOM file as version is a mandatory field.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Einige der Abhängigkeiten haben keine feste Versionsnummer.&lt;ul&gt;{0}&lt;/ul&gt;Die oben aufgeführten Pakete werden NICHT in der erzeugten CycloneDX STL Datei enthalten sein, da die Version ein Pflichtfeld ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="183"/>
+        <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="185"/>
         <source>&lt;p&gt;The SBOM data was written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die STL Daten wurden in die Datei &lt;b&gt;{0}&lt;/b&gt; geschrieben.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="191"/>
+        <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="193"/>
         <source>&lt;p&gt;The SBOM file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die SBOM Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geschrieben werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
@@ -9215,23 +9215,23 @@
         <translation>&lt;p&gt;Es wurde versucht, eine Verbindung von dem nicht bekannten Rechner &lt;b&gt;{0}&lt;/b&gt; aufzubauen. Soll die Verbindung angenommen werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1355"/>
-        <location filename="../Debugger/DebugServer.py" line="1272"/>
-        <location filename="../Debugger/DebugServer.py" line="1188"/>
-        <location filename="../Debugger/DebugServer.py" line="1098"/>
+        <location filename="../Debugger/DebugServer.py" line="1358"/>
+        <location filename="../Debugger/DebugServer.py" line="1275"/>
+        <location filename="../Debugger/DebugServer.py" line="1191"/>
+        <location filename="../Debugger/DebugServer.py" line="1101"/>
         <source>Start Debugger</source>
         <translation>Debugger starten</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1356"/>
-        <location filename="../Debugger/DebugServer.py" line="1273"/>
-        <location filename="../Debugger/DebugServer.py" line="1189"/>
-        <location filename="../Debugger/DebugServer.py" line="1099"/>
+        <location filename="../Debugger/DebugServer.py" line="1359"/>
+        <location filename="../Debugger/DebugServer.py" line="1276"/>
+        <location filename="../Debugger/DebugServer.py" line="1192"/>
+        <location filename="../Debugger/DebugServer.py" line="1102"/>
         <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Debuggertyp &lt;b&gt;{0}&lt;/b&gt; wird nicht unterstützt oder ist nicht konfiguriert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1945"/>
+        <location filename="../Debugger/DebugServer.py" line="1948"/>
         <source>
 Not connected
 </source>
@@ -9240,38 +9240,38 @@
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2110"/>
+        <location filename="../Debugger/DebugServer.py" line="2113"/>
         <source>Passive debug connection received
 </source>
         <translation>Verbindung für passives Debuggen empfangen
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2119"/>
+        <location filename="../Debugger/DebugServer.py" line="2122"/>
         <source>Passive debug connection received while not in passive mode.
 </source>
         <translation>Verbindung für passives Debuggen empfangen während Passivmodus inaktiv ist.
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2125"/>
+        <location filename="../Debugger/DebugServer.py" line="2128"/>
         <source>Debug Client Connection</source>
         <translation>Debug-Client Verbindung</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2126"/>
+        <location filename="../Debugger/DebugServer.py" line="2129"/>
         <source>Passive debug client connection received while not in passive mode. Enable this mode on the &apos;Debugger General&apos; configuration page. The connection will be rejected.</source>
         <translation>Verbindung für passives Debuggen empfangen während Passivmodus inaktiv ist. Aktiviere diesen Modus auf der Konfigurationsseite &apos;Debugger Allgemein&apos;. Die Verbind wird abgelehnt.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2141"/>
+        <location filename="../Debugger/DebugServer.py" line="2144"/>
         <source>Passive debug connection closed
 </source>
         <translation>Verbindung für passives Debuggen geschlossen
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2272"/>
+        <location filename="../Debugger/DebugServer.py" line="2275"/>
         <source>&lt;project&gt;</source>
         <translation>&lt;Projekt&gt;</translation>
     </message>
@@ -9284,7 +9284,7 @@
         <translation>Benachrichtigung</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2374"/>
+        <location filename="../Debugger/DebugUI.py" line="2380"/>
         <location filename="../Debugger/DebugUI.py" line="234"/>
         <source>Run Script</source>
         <translation>Skript ausführen</translation>
@@ -9305,8 +9305,8 @@
         <translation>&lt;b&gt;Skript ausführen&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Skript außerhalb des Debuggers aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../Debugger/DebugUI.py" line="2386"/>
         <location filename="../Debugger/DebugUI.py" line="2380"/>
-        <location filename="../Debugger/DebugUI.py" line="2374"/>
         <location filename="../Debugger/DebugUI.py" line="255"/>
         <source>Run Project</source>
         <translation>Projekt ausführen</translation>
@@ -9407,7 +9407,7 @@
         <translation>&lt;b&gt;Projektprofil&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes unter Kontrolle des Python-Profilers aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2567"/>
+        <location filename="../Debugger/DebugUI.py" line="2573"/>
         <location filename="../Debugger/DebugUI.py" line="365"/>
         <source>Debug Script</source>
         <translation>Skript debuggen</translation>
@@ -9428,8 +9428,8 @@
         <translation>&lt;b&gt;Skript debuggen&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und setze die erste ausführbare Python-Zeile des aktuellen Editors als aktuelle Zeile. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../Debugger/DebugUI.py" line="2579"/>
         <location filename="../Debugger/DebugUI.py" line="2573"/>
-        <location filename="../Debugger/DebugUI.py" line="2567"/>
         <location filename="../Debugger/DebugUI.py" line="387"/>
         <source>Debug Project</source>
         <translation>Projekt debuggen</translation>
@@ -9450,7 +9450,7 @@
         <translation>&lt;b&gt;Projekt debuggen&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und setze die erste ausführbare Python-Zeile des Hauptskriptes des aktuellen Projektes als aktuelle Zeile. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2889"/>
+        <location filename="../Debugger/DebugUI.py" line="2895"/>
         <location filename="../Debugger/DebugUI.py" line="411"/>
         <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>Restart</source>
@@ -9889,66 +9889,66 @@
         <translation>&lt;p&gt;Die Bedingung des Haltepunktes &lt;b&gt;{0}, {1}&lt;/b&gt; enthält einen Syntaxfehler.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1775"/>
+        <location filename="../Debugger/DebugUI.py" line="1779"/>
         <source>Watch Expression Error</source>
         <translation>Fehler in Beobachtungsausdruck</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1776"/>
+        <location filename="../Debugger/DebugUI.py" line="1780"/>
         <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Beobachtungsausdrucks &lt;b&gt;{0}&lt;/b&gt; enthält einen Syntaxfehler.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1804"/>
+        <location filename="../Debugger/DebugUI.py" line="1810"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ein Beobachtungsausdruck „&lt;b&gt;{0}&lt;/b&gt;“ existiert bereits.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1809"/>
-        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Ein Beobachtungsausdruck „&lt;b&gt;{0}&lt;/b&gt;“ für die Variable &lt;b&gt;{1}&lt;/b&gt; existiert bereits.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="1815"/>
+        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Ein Beobachtungsausdruck „&lt;b&gt;{0}&lt;/b&gt;“ für die Variable &lt;b&gt;{1}&lt;/b&gt; existiert bereits.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="1821"/>
         <source>Watch expression already exists</source>
         <translation>Beobachtungsausdruck existiert bereits</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1980"/>
-        <location filename="../Debugger/DebugUI.py" line="1971"/>
+        <location filename="../Debugger/DebugUI.py" line="1986"/>
+        <location filename="../Debugger/DebugUI.py" line="1977"/>
         <source>Coverage Run of Project</source>
         <translation>Abdeckungslauf des Projektes</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1979"/>
         <source>Coverage Run of Script</source>
         <translation>Abdeckungslauf des Skriptes</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2381"/>
-        <location filename="../Debugger/DebugUI.py" line="2183"/>
-        <location filename="../Debugger/DebugUI.py" line="1981"/>
+        <location filename="../Debugger/DebugUI.py" line="2387"/>
+        <location filename="../Debugger/DebugUI.py" line="2189"/>
+        <location filename="../Debugger/DebugUI.py" line="1987"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2182"/>
-        <location filename="../Debugger/DebugUI.py" line="2173"/>
+        <location filename="../Debugger/DebugUI.py" line="2188"/>
+        <location filename="../Debugger/DebugUI.py" line="2179"/>
         <source>Profile Run of Project</source>
         <translation>Profillauf des Projekts</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2175"/>
+        <location filename="../Debugger/DebugUI.py" line="2181"/>
         <source>Profile Run of Script</source>
         <translation>Profillauf des Skriptes</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2574"/>
+        <location filename="../Debugger/DebugUI.py" line="2580"/>
         <source>There is no main script defined for the current project. No debugging possible.</source>
         <translation>Das aktuelle Projekt besitzt kein Hauptskript. Debuggen ist nicht möglich.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="3246"/>
+        <location filename="../Debugger/DebugUI.py" line="3252"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die ausgewählte Datei &lt;b&gt;{0}&lt;/b&gt; befindet sich auf einem eric-ide Server. Es ist jedoch kein solcher Server verbunden. Abbruch...&lt;/p&gt;</translation>
     </message>
@@ -10111,26 +10111,26 @@
         <translation>Ausgewählte Schnittstelle</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="325"/>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="312"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="336"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="323"/>
         <source>Add allowed host</source>
         <translation>Zugelassene Rechner hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="349"/>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="313"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="360"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="324"/>
         <source>Enter the IP address of an allowed host</source>
         <translation>Gib die IP-Adresse eines zugelassenen Rechners ein</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="363"/>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="326"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="374"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="337"/>
         <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die eingegebene Adresse &lt;b&gt;{0}&lt;/b&gt; ist keine gültige IPv4- oder IPv6-Adresse. Abbruch …&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="362"/>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="348"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="373"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="359"/>
         <source>Edit allowed host</source>
         <translation>Zugelassene Rechner bearbeiten</translation>
     </message>
@@ -10227,13 +10227,8 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0"/>
-        <source>Debugger Type:</source>
-        <translation>Debuggertyp:</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0"/>
-        <source>Select the debugger type of the backend</source>
-        <translation>Wähle den Typ des verwendeten Debuggers</translation>
+        <source>Debug Server Port:</source>
+        <translation>Debugserver-Port:</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0"/>
@@ -10249,8 +10244,28 @@
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0"/>
-        <source>Debug Server Port:</source>
-        <translation>Debugserver-Port:</translation>
+        <source>Debugger Type:</source>
+        <translation>Debuggertyp:</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0"/>
+        <source>Select the debugger type of the backend</source>
+        <translation>Wähle den Typ des verwendeten Debuggers</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0"/>
+        <source>Select to not stop the debugger at the first executable line.</source>
+        <translation>Auswählen, um nicht an der ersten ausführbaren Zeile anzuhalten.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0"/>
+        <source>&lt;b&gt;Don&apos;t stop at first line&lt;/b&gt;&lt;p&gt;This prevents the debugger from stopping at the first executable line.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Nicht an der ersten Zeile halten&lt;/b&gt;&lt;p&gt;Dies veranlasst den Debugger, nicht an der ersten ausführbaren Zeile zu halten.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0"/>
+        <source>Don&apos;t stop at first line</source>
+        <translation>Nicht an der ersten Zeile halten</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0"/>
@@ -10587,46 +10602,46 @@
 <context>
     <name>DebuggerInterfacePython</name>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="728"/>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="705"/>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="609"/>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="563"/>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="445"/>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="422"/>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="345"/>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="321"/>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="258"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="747"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="724"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="628"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="582"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="464"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="441"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="364"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="340"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="277"/>
         <source>Start Debugger</source>
         <translation>Debugger starten</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="564"/>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="259"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="583"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="278"/>
         <source>&lt;p&gt;No suitable Python3 environment configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Keine geeignete Python3 Umgebung konfiguriert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="729"/>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="706"/>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="610"/>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="446"/>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="423"/>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="322"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="748"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="725"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="629"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="465"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="442"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="341"/>
         <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="346"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="365"/>
         <source>&lt;p&gt;Remote debugging is configured but no command for remote login was given.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Remote Debugging is aktiviert aber es wurde kein Befehl zum Anmelden angegeben.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="1660"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="1691"/>
         <source>Debug Protocol Error</source>
         <translation>Fehler im Debugprotokoll</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebuggerInterfacePython.py" line="1661"/>
+        <location filename="../Debugger/DebuggerInterfacePython.py" line="1692"/>
         <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;{1}&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;{1}&lt;/p&gt;</translation>
     </message>
@@ -11640,8 +11655,8 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="450"/>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="420"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421"/>
         <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.ui" line="0"/>
         <source>.desktop Wizard</source>
         <translation>.desktop Assistent</translation>
@@ -11998,8 +12013,8 @@
         <translation>Ubuntu Unity QuickList .desktop</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451"/>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="452"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="422"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation>Nur einer von &apos;Nur Anzeigen In&apos; oder &apos;Nicht Anzeigen In&apos; ist zugelassen.</translation>
     </message>
@@ -15157,12 +15172,12 @@
         <translation>Einfügemarke in den virtuellen Bereich bewegen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="287"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288"/>
         <source>Tab and Indent Override</source>
         <translation>Tabulator und Einrückung Änderung</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="289"/>
         <source>Shall the selected entries really be removed?</source>
         <translation>Sollen die ausgewählten Einträge wirklich gelöscht werden?</translation>
     </message>
@@ -15497,27 +15512,27 @@
         <translation>Hervorhebungsstile importieren</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="803"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="805"/>
         <source>Delete Sub-Style</source>
         <translation>Unterstil löschen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="804"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="806"/>
         <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soll der Unterstil &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="840"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="842"/>
         <source>{0} - Copy</source>
         <translation>{0} - Kopie</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="867"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="869"/>
         <source>Reset Sub-Styles to Default</source>
         <translation>Unterstile auf Standardwerte setzen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="868"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="870"/>
         <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Sollen wirklich alle definierten Unterstile von &lt;b&gt;{0}&lt;/b&gt; auf Standardwerte zurückgesetzt werden?&lt;/p&gt;</translation>
     </message>
@@ -21846,14 +21861,14 @@
         <translation>ESP32 Funktionen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="393"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="395"/>
         <location filename="../MicroPython/Devices/EspDevices.py" line="193"/>
         <source>Show MicroPython Versions</source>
         <translation>Zeige MicroPython Versionen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="1775"/>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="1759"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="1782"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="1766"/>
         <location filename="../MicroPython/Devices/EspDevices.py" line="197"/>
         <source>Erase Flash</source>
         <translation>Flash löschen</translation>
@@ -21864,7 +21879,7 @@
         <translation>MicroPython Firmware flashen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="1864"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="1877"/>
         <location filename="../MicroPython/Devices/EspDevices.py" line="204"/>
         <source>Flash Additional Firmware</source>
         <translation>Zusätzliche Firmware flashen</translation>
@@ -21876,25 +21891,25 @@
         <translation>Firmware sichern</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="367"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="368"/>
         <location filename="../MicroPython/Devices/EspDevices.py" line="211"/>
         <source>Restore Firmware</source>
         <translation>Firmware zurückspielen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="465"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="467"/>
         <location filename="../MicroPython/Devices/EspDevices.py" line="215"/>
         <source>Show Chip ID</source>
         <translation>Chip ID anzeigen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="488"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="491"/>
         <location filename="../MicroPython/Devices/EspDevices.py" line="218"/>
         <source>Show Flash ID</source>
         <translation>Flash ID anzeigen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="511"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="515"/>
         <location filename="../MicroPython/Devices/EspDevices.py" line="221"/>
         <source>Show MAC Address</source>
         <translation>MAC Adresse anzeigen</translation>
@@ -21915,139 +21930,139 @@
         <translation>Ausgabe von &apos;esptool read_flash&apos;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="1863"/>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="1820"/>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="366"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="1876"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="1830"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="367"/>
         <source>&apos;esptool write_flash&apos; Output</source>
         <translation>Ausgabe von &apos;esptool write_flash&apos;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="394"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="396"/>
         <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
         <translation>Die Firmware des verbundenen Gerätes kann nicht ermittelt werden oder das Board enthält kein MicroPython oder CircuitPython. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="423"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="425"/>
         <source>unknown</source>
         <translation>unbekannt</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="434"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="436"/>
         <source>&lt;h4&gt;{0} Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;h4&gt;{0} Versionsinformationen&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installiert:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Verfügbar:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="442"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="444"/>
         <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;Update verfügbar!&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="446"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="448"/>
         <source>{0} Version</source>
         <translation>{0} Version</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="464"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="466"/>
         <source>&apos;esptool chip_id&apos; Output</source>
         <translation>Ausgabe von &apos;esptool chip_id&apos;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="487"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="490"/>
         <source>&apos;esptool flash_id&apos; Output</source>
         <translation>Ausgabe von &apos;esptool flash_id&apos;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="510"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="514"/>
         <source>&apos;esptool read_mac&apos; Output</source>
         <translation>Ausgabe von &apos;esptool read_mac&apos;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="641"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="646"/>
         <source>Set Country</source>
         <translation>Land einstellen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="642"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="647"/>
         <source>Reset Country</source>
         <translation>Land zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="965"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="970"/>
         <source>Error saving credentials: {0}</source>
         <translation>Fehler beim Speichern der Berechtigungen: {0}</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="976"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="981"/>
         <source>Error saving auto-connect script: {0}</source>
         <translation>Fehler beim Speichern des Verbindungsskriptes: {0}</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="980"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="985"/>
         <source>Error modifying &apos;boot.py&apos;: {0}</source>
         <translation>Fehler bei der Änderung von &apos;boot.py&apos;: {0}</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="1012"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="1017"/>
         <source>Error deleting credentials: {0}</source>
         <translation>Fehler beim Löschen der Berechtigungen: {0}</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="1096"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="1101"/>
         <source>unknown ({0})</source>
         <translation>unbekannt ({0})</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="1475"/>
-        <source>Active</source>
-        <translation>Aktiv</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="1476"/>
-        <source>Name</source>
-        <translation>Name</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="1477"/>
-        <source>MAC-Address</source>
-        <translation>MAC-Addresse</translation>
-    </message>
-    <message>
         <location filename="../MicroPython/Devices/EspDevices.py" line="1480"/>
-        <source>Address Type</source>
-        <translation>Adresstyp</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="1481"/>
-        <source>Public</source>
-        <translation>Öffentlich</translation>
+        <source>Active</source>
+        <translation>Aktiv</translation>
     </message>
     <message>
         <location filename="../MicroPython/Devices/EspDevices.py" line="1481"/>
+        <source>Name</source>
+        <translation>Name</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="1482"/>
+        <source>MAC-Address</source>
+        <translation>MAC-Addresse</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="1485"/>
+        <source>Address Type</source>
+        <translation>Adresstyp</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="1486"/>
+        <source>Public</source>
+        <translation>Öffentlich</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="1486"/>
         <source>Random</source>
         <translation>Zufällig</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="1484"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="1489"/>
         <source>MTU</source>
         <translation>MTU</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="1484"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="1489"/>
         <source>{0} Bytes</source>
         <translation>{0} Bytes</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="1760"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="1767"/>
         <source>Shall the flash of the selected device really be erased?</source>
         <translation>Soll der Flashspeicher des ausgewählten Gerätes wirklich gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="1774"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="1781"/>
         <source>&apos;esptool erase_flash&apos; Output</source>
         <translation>Ausgabe von &apos;esptool erase_flash&apos;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/EspDevices.py" line="1821"/>
+        <location filename="../MicroPython/Devices/EspDevices.py" line="1831"/>
         <source>Flash µPy/CPy Firmware</source>
         <translation>µPy/CPy Firmware flashen</translation>
     </message>
@@ -22055,7 +22070,7 @@
 <context>
     <name>EspFirmwareSelectionDialog</name>
     <message>
-        <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="68"/>
+        <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="77"/>
         <source>Firmware Files (*.bin);;All Files (*)</source>
         <translation>Firmwaredateien (*.bin);;Alle Dateien (*)</translation>
     </message>
@@ -24347,22 +24362,22 @@
 <context>
     <name>FindFileFiltersEditDialog</name>
     <message>
-        <location filename="../UI/FindFileFiltersEditDialog.py" line="109"/>
+        <location filename="../UI/FindFileFiltersEditDialog.py" line="111"/>
         <source>Delete Selected Filters</source>
         <translation>Ausgewählte Filter löschen</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileFiltersEditDialog.py" line="110"/>
+        <location filename="../UI/FindFileFiltersEditDialog.py" line="112"/>
         <source>Shall the selected filters really be deleted?</source>
         <translation>Sollen die ausgewählten Filter wirklich gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileFiltersEditDialog.py" line="127"/>
+        <location filename="../UI/FindFileFiltersEditDialog.py" line="129"/>
         <source>Default Filters</source>
         <translation>Standardfilter</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileFiltersEditDialog.py" line="128"/>
+        <location filename="../UI/FindFileFiltersEditDialog.py" line="130"/>
         <source>Do you really want to clear the list of defined file filters and replace it with the list of default filters?</source>
         <translation>Soll die Liste der definierten Dateifilter wirklich gelöscht und durch die Liste der Standardfilter ersetzt werden?</translation>
     </message>
@@ -25055,7 +25070,7 @@
 <context>
     <name>FormattingDiffWidget</name>
     <message>
-        <location filename="../CodeFormatting/FormattingDiffWidget.py" line="63"/>
+        <location filename="../CodeFormatting/FormattingDiffWidget.py" line="65"/>
         <source>There is no difference.</source>
         <translation>Es gibt keinen Unterschied.</translation>
     </message>
@@ -25155,7 +25170,7 @@
         <translation>Der git-Prozess endete mit dem Code {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1715"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1747"/>
         <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="219"/>
         <source>The git process did not finish within 30s.</source>
         <translation>Der git-Prozess endete nicht innerhalb von 30s.</translation>
@@ -25181,153 +25196,153 @@
         <translation>Erzeuge Git Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="308"/>
         <source>Adding files to Git repository</source>
         <translation>Füge Dateien dem Git-Repository hinzu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="316"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="321"/>
         <source>Initial commit to Git repository</source>
         <translation>Erstes Commit für das Git-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="348"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="357"/>
         <source>Cloning project from a Git repository</source>
         <translation>Klone das Projekt aus dem Git-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="448"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="460"/>
         <source>Commit Changes</source>
         <translation>Änderungen einpflegen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="449"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="461"/>
         <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
         <translation>Das Einpflegen von Änderungen betrifft Dateien mit ungesicherten Änderungen. Soll die Aktion fortgesetzt werden?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="505"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="518"/>
         <source>Committing changes to Git repository</source>
         <translation>Änderungen in Git-Repository einpflegen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="568"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="584"/>
         <source>Switch</source>
         <translation>Umschalten</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="569"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="585"/>
         <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soll wirklich auf &lt;b&gt;{0}&lt;/b&gt; umgeschaltet werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="597"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="614"/>
         <source>Synchronizing with the Git repository</source>
         <translation>Gleiche mit dem Git-Repository ab</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="644"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="664"/>
         <source>Adding files/directories to the Git repository</source>
         <translation>Füge Dateien/Verzeichnisse dem Git-Repository hinzu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="721"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="743"/>
         <source>Removing files/directories from the Git repository</source>
         <translation>Lösche Dateien/Verzeichnisse aus dem Git-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="789"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="814"/>
         <source>Renaming {0}</source>
         <translation>Benenne {0} um</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="942"/>
         <source>Unstage files/directories</source>
         <translation>Vormerkung rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="968"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="957"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="996"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="985"/>
         <source>Revert changes</source>
         <translation>Änderungen rückgängig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="958"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="986"/>
         <source>Do you really want to revert all changes to these files or directories?</source>
         <translation>Wollen Sie wirklich alle Änderungen an den folgenden Datein oder Verzeichnissen rückgängig machen?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="969"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="997"/>
         <source>Do you really want to revert all changes of the project?</source>
         <translation>Wollen Sie wirklich alle Änderungen des Projektes rückgängig machen?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="975"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1003"/>
         <source>Reverting changes</source>
         <translation>Mache Änderungen rückgängig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1028"/>
-        <source>Merging</source>
-        <translation>Zusammenführen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1057"/>
+        <source>Merging</source>
+        <translation>Zusammenführen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1086"/>
         <source>Main branch head</source>
         <translation>Kopf des Hauptzweiges</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1285"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1315"/>
         <source>Git Command</source>
         <translation>Git Befehl</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1396"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1426"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Änderungs ID&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1400"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1430"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Vorgänger&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1406"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1436"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Marken&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1412"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1442"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zweige&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1417"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1447"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Autor&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1422"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1427"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1457"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bereitsteller&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1432"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1462"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bereitstellungsdatum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1437"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1467"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Betreff&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1443"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1473"/>
         <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -25342,459 +25357,459 @@
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1553"/>
         <source>Create {0} file</source>
         <translation>Erzeuge {0}-Datei</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1554"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1591"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1574"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1621"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1604"/>
         <source>Git Copy</source>
         <translation>Git Kopiere</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1575"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1605"/>
         <source>&lt;p&gt;Copying the directory &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Kopieren des Verzeichnisses &lt;b&gt;{0}&lt;/b&gt; ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1592"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1622"/>
         <source>&lt;p&gt;Copying the file &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Kopieren der Datei &lt;b&gt;{0}&lt;/b&gt; ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2845"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1717"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2920"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1749"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1788"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1775"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1764"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1822"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1809"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1798"/>
         <source>Git Side-by-Side Difference</source>
         <translation>Git Unterschiede nebeneinander anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1789"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1823"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1842"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1877"/>
         <source>Fetching from a remote Git repository</source>
         <translation>Änderungen von einem entfernten Git Repository abholen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918"/>
         <source>Pulling from a remote Git repository</source>
         <translation>Pull von einem entfernten Git-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1919"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1962"/>
         <source>Pushing to a remote Git repository</source>
         <translation>Push in ein entferntes Git-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1948"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1994"/>
         <source>Committing failed merge</source>
         <translation>Fehlgeschlagene Zusammenführung abschließen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1974"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2021"/>
         <source>Aborting uncommitted/failed merge</source>
         <translation>Zusammenführung abbrechen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2008"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2056"/>
         <source>Applying patch</source>
         <translation>Patch anwenden</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2043"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2091"/>
         <source>Check patch files</source>
         <translation>Patchdateien prüfen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2046"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2094"/>
         <source>Apply patch files</source>
         <translation>Patchdateien anwenden</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2130"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2181"/>
         <source>Tagging in the Git repository</source>
         <translation>Marke im Git-Repository setzen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2443"/>
         <source>Branching in the Git repository</source>
         <translation>Zweig im Git-Repository erzeugen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2488"/>
         <source>Delete Remote Branch</source>
         <translation>Entfernten Zweig löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2510"/>
         <source>Current Branch</source>
         <translation>Aktueller Zweig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2455"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2511"/>
         <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der aktuelle Zweig ist &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2502"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2484"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2578"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2560"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2542"/>
         <source>Create Bundle</source>
         <translation>Paket erzeugen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2486"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2544"/>
         <source>Git Bundle Files (*.bundle)</source>
         <translation>Git Paketdateien (*.bundle)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2503"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2561"/>
         <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Git Paketdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2550"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2608"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2597"/>
         <source>Verify Bundle</source>
         <translation>Paket verifizieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2689"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2641"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2571"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2753"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2699"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2599"/>
         <source>Git Bundle Files (*.bundle);;All Files (*)</source>
         <translation>Git Paketdateien (*.bundle);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2580"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2638"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2627"/>
         <source>List Bundle Heads</source>
         <translation>Köpfe des Pakets anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2687"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2639"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2751"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2697"/>
         <source>Apply Bundle</source>
         <translation>Paket anwenden</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2708"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2660"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2775"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721"/>
         <source>Applying a bundle file (fetch)</source>
         <translation>Paketdatei anwenden (fetch)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2746"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2816"/>
         <source>Bisect subcommand ({0}) invalid.</source>
         <translation>Ungültiger Bisect Unterbefehl ({0}).</translation>
     </message>
     <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3025"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2861"/>
+        <source>Git Bisect ({0})</source>
+        <translation>Git-Bisect ({0})</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2919"/>
+        <source>Process Generation Error</source>
+        <translation>Fehler beim Prozessstart</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2965"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2948"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2930"/>
+        <source>Create Bisect Replay File</source>
+        <translation>Erzeuge Bisect Wiederholungsdatei</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2932"/>
+        <source>Git Bisect Replay Files (*.replay)</source>
+        <translation>Git Bisect Wiederholungsdateien (*.replay)</translation>
+    </message>
+    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2949"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2789"/>
-        <source>Git Bisect ({0})</source>
-        <translation>Git-Bisect ({0})</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2844"/>
-        <source>Process Generation Error</source>
-        <translation>Fehler beim Prozessstart</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2890"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2873"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2855"/>
-        <source>Create Bisect Replay File</source>
-        <translation>Erzeuge Bisect Wiederholungsdatei</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2857"/>
-        <source>Git Bisect Replay Files (*.replay)</source>
-        <translation>Git Bisect Wiederholungsdateien (*.replay)</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2874"/>
         <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Git Wiederholungsdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2891"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2966"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden.&lt;br/&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2911"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986"/>
         <source>Edit Bisect Replay File</source>
         <translation>Bisect Wiederholungsdatei bearbeiten</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2940"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2913"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3015"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2988"/>
         <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
         <translation>Git Bisect Wiederholungsdateien (*.replay);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2938"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3013"/>
         <source>Bisect Replay</source>
         <translation>Bisect wiederholen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3299"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3121"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3378"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3200"/>
         <source>Show Remote Info</source>
         <translation>Zeige entfernte Informationen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3181"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3260"/>
         <source>Rename Remote Repository</source>
         <translation>Entferntes Repository umbenennen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3182"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3261"/>
         <source>Enter new name for remote repository:</source>
         <translation>Gib einen Namen für das entfernte Repository ein:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3323"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3402"/>
         <source>Show Shortlog</source>
         <translation>Kurzbeschreibungen anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3384"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463"/>
         <source>Cherry-pick</source>
         <translation>Aussuchen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3417"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3497"/>
         <source>Copy Changesets (Continue)</source>
         <translation>Änderungssätze kopieren (Fortsetzung)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3442"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523"/>
         <source>Copy Changesets (Quit)</source>
         <translation>Änderungssätze kopieren (Beenden)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3468"/>
-        <source>Copy Changesets (Cancel)</source>
-        <translation>Änderungssätze kopieren (Abbrechen)</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3549"/>
+        <source>Copy Changesets (Cancel)</source>
+        <translation>Änderungssätze kopieren (Abbrechen)</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3630"/>
         <source>Saving stash</source>
         <translation>Ablage sichern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3763"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3844"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3673"/>
         <source>Show Stash</source>
         <translation>Ablage anzeigen</translation>
     </message>
     <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3845"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3802"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3751"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3674"/>
+        <source>Select a stash (empty for latest stash):</source>
+        <translation>Wähle eine Ablage (leer für aktuellste):</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3708"/>
+        <source>Restore Stash</source>
+        <translation>Ablage wiederherstellen</translation>
+    </message>
+    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3764"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3721"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3670"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3628"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593"/>
-        <source>Select a stash (empty for latest stash):</source>
-        <translation>Wähle eine Ablage (leer für aktuellste):</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3669"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3627"/>
-        <source>Restore Stash</source>
-        <translation>Ablage wiederherstellen</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3683"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722"/>
         <source>Restoring stash</source>
         <translation>Stelle Ablage wieder her</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3720"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3801"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3790"/>
         <source>Create Branch</source>
         <translation>Zweig erzeugen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791"/>
         <source>Enter a branch name to restore a stash to:</source>
         <translation>Gib einen Zweignamen für die Ablagewiederherstellung ein:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3735"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816"/>
         <source>Creating branch</source>
         <translation>Erzeuge Zweig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3774"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3855"/>
         <source>Delete Stash</source>
         <translation>Ablage löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3775"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3856"/>
         <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
         <translation>Soll die Ablage &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3785"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3866"/>
         <source>Deleting stash</source>
         <translation>Lösche Ablage</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3807"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3888"/>
         <source>Delete All Stashes</source>
         <translation>Alle Ablagen löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3889"/>
         <source>Do you really want to delete all stashes?</source>
         <translation>Sollen wirklich alle Ablagen gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3895"/>
         <source>Deleting all stashes</source>
         <translation>Lösche alle Ablagen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3876"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3958"/>
         <source>Showing the combined configuration settings</source>
         <translation>Zeige die kombinierten Einstellungen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3899"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3985"/>
         <source>Verifying the integrity of the Git repository</source>
         <translation>Verifiziere die Integrität des Git-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3921"/>
-        <source>Performing Repository Housekeeping</source>
-        <translation>Führe Repository Reorganisation durch</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3963"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistik&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3965"/>
-        <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;Anzahl loser Objekte: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3970"/>
-        <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;Festplattenverbrauch durch lose Objekte: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3976"/>
-        <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;Anzahl gepackter Objekte: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3982"/>
-        <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;Anzahl Pakete: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3987"/>
-        <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;Festplattenverbrauch durch lose Objekte &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3993"/>
-        <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;Gepackte Objekte bereit zum Löschen: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3999"/>
-        <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;Wertlose Dateien: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004"/>
-        <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;Festplattenverbrauch durch wertlose Dateien: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011"/>
+        <source>Performing Repository Housekeeping</source>
+        <translation>Führe Repository Reorganisation durch</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4054"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistik&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4056"/>
+        <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;Anzahl loser Objekte: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4061"/>
+        <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;Festplattenverbrauch durch lose Objekte: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4067"/>
+        <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;Anzahl gepackter Objekte: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4073"/>
+        <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;Anzahl Pakete: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4078"/>
+        <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;Festplattenverbrauch durch lose Objekte &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4084"/>
+        <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;Gepackte Objekte bereit zum Löschen: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4090"/>
+        <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;Wertlose Dateien: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4095"/>
+        <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;Festplattenverbrauch durch wertlose Dateien: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4102"/>
         <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;Keine Statistik verfügbar.&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4080"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4172"/>
         <source>Creating Archive</source>
         <translation>Erzeuge Archiv</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4120"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212"/>
         <source>Add Submodule</source>
         <translation>Submodul hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4186"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4278"/>
         <source>List Submodules</source>
         <translation>Submodule auflisten</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4187"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4279"/>
         <source>No submodules defined for the project.</source>
         <translation>Für das Projekt sind keine Submodule definiert.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4200"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4292"/>
         <source>All</source>
         <translation>Alle</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4296"/>
         <source>Submodule Path</source>
         <translation>Submodulpfad</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4297"/>
         <source>Select a submodule path:</source>
         <translation>Wähle einen Submodulpfad:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4254"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4347"/>
         <source>Initialize Submodules</source>
         <translation>Submodule initialisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4287"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4382"/>
         <source>Unregister Submodules</source>
         <translation>Submodule deregistrieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4357"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4318"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4453"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4414"/>
         <source>Update Submodules</source>
         <translation>Submodule aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4387"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4484"/>
         <source>Synchronize Submodules</source>
         <translation>Submodule synchronisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4441"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4539"/>
         <source>Submodules Summary</source>
         <translation>Submodulüberblick</translation>
     </message>
@@ -32483,101 +32498,101 @@
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="519"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="520"/>
         <source>Add Worktree</source>
         <translation>Arbeitsverzeichnis hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="555"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="537"/>
-        <source>Lock Worktree</source>
-        <translation>Arbeitsverzeichnis sperren</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538"/>
-        <source>Enter a reason for the lock:</source>
-        <translation>Gib einen Grund für die Sperre ein:</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="556"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538"/>
+        <source>Lock Worktree</source>
+        <translation>Arbeitsverzeichnis sperren</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="539"/>
+        <source>Enter a reason for the lock:</source>
+        <translation>Gib einen Grund für die Sperre ein:</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="557"/>
         <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Sperren des ausgewählten Arbeitsverzeichnisses ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="580"/>
-        <source>Unlock Worktree</source>
-        <translation>Arbeitsverzeichnis entsperren</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="581"/>
+        <source>Unlock Worktree</source>
+        <translation>Arbeitsverzeichnis entsperren</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="582"/>
         <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Entsperren des ausgewählten Arbeitsverzeichnisses ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="616"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="599"/>
-        <source>Move Worktree</source>
-        <translation>Arbeitsverzeichnis verschieben</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600"/>
-        <source>Enter the new path for the worktree:</source>
-        <translation>Gib den neuen Pfad für das Arbeitsverzeichnis ein:</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="617"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600"/>
+        <source>Move Worktree</source>
+        <translation>Arbeitsverzeichnis verschieben</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="601"/>
+        <source>Enter the new path for the worktree:</source>
+        <translation>Gib den neuen Pfad für das Arbeitsverzeichnis ein:</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="618"/>
         <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Verschieben des ausgewählten Arbeitsverzeichnisses ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="638"/>
         <source>Remove Worktree</source>
         <translation>Arbeitsverzeichnis löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="639"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="640"/>
         <source>Remove Worktree Forcefully</source>
         <translation>Arbeitsverzeichnis erzwungen löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="645"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="646"/>
         <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soll das Arbeitsverzeichnis &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="672"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="673"/>
         <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Löschen des ausgewählten Arbeitsverzeichnisses ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="727"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="703"/>
-        <source>Prune Worktree Information</source>
-        <translation>Arbeitsverzeichnisinformationen aufräumen</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704"/>
-        <source>Do you really want to prune the information of these worktrees?</source>
-        <translation>Sollen wirklich die Informationen dieser Arbeitsverzeichnicce aufgeräumt werden?</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="728"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704"/>
+        <source>Prune Worktree Information</source>
+        <translation>Arbeitsverzeichnisinformationen aufräumen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="705"/>
+        <source>Do you really want to prune the information of these worktrees?</source>
+        <translation>Sollen wirklich die Informationen dieser Arbeitsverzeichnicce aufgeräumt werden?</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="729"/>
         <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Aufräumen der Arbeitsverzeichnisinformationen ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="765"/>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="754"/>
-        <source>Repair Worktree</source>
-        <translation>Arbeitsverzeichnis reparieren</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755"/>
-        <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Das Reparieren der Arbeitsverzeichnisinformationen war erfolgreich.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="766"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755"/>
+        <source>Repair Worktree</source>
+        <translation>Arbeitsverzeichnis reparieren</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="756"/>
+        <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Das Reparieren der Arbeitsverzeichnisinformationen war erfolgreich.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="767"/>
         <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Reparieren der Arbeitsverzeichnisinformationen ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -32694,12 +32709,12 @@
 <context>
     <name>Gpg</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="73"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="76"/>
         <source>Verify Signatures</source>
         <translation>Signaturen verifizieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="124"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="128"/>
         <source>Sign Revision</source>
         <translation>Revision signieren</translation>
     </message>
@@ -35294,456 +35309,456 @@
 <context>
     <name>Hg</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="300"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="303"/>
         <source>Create project repository</source>
         <translation>Projektrepository anlegen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="301"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="304"/>
         <source>The project repository could not be created.</source>
         <translation>Das Projektrepository konnte nicht erzeugt werden.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="334"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="338"/>
         <source>Creating Mercurial repository</source>
         <translation>Lege Mercurial-Repository an</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="353"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="359"/>
         <source>Initial commit to Mercurial repository</source>
         <translation>Erstes Commit für das Mercurial-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="395"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="405"/>
         <source>Cloning project from a Mercurial repository</source>
         <translation>Klone das Projekt aus dem Mercurial-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="503"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="516"/>
         <source>Commit Changes</source>
         <translation>Änderungen einpflegen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="504"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="517"/>
         <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
         <translation>Das Einpflegen von Änderungen betrifft Dateien mit ungesicherten Änderungen. Soll die Aktion fortgesetzt werden?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="566"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="580"/>
         <source>Committing changes to Mercurial repository</source>
         <translation>Pflege Änderungen in das Mercurial-Repository ein</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="661"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="679"/>
         <source>Synchronizing with the Mercurial repository</source>
         <translation>Gleiche mit dem Mercurial-Repository ab</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="692"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="713"/>
         <source>Adding files/directories to the Mercurial repository</source>
         <translation>Füge Dateien/Verzeichnisse dem Mercurial-Repository hinzu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="751"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="774"/>
         <source>Removing files/directories from the Mercurial repository</source>
         <translation>Lösche Dateien/Verzeichnisse aus dem Mercurial-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="804"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="829"/>
         <source>Renaming {0}</source>
         <translation>Benenne {0} um</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="935"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="964"/>
         <source>Tagging in the Mercurial repository</source>
         <translation>Marke im Mercurial-Repository setzen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="981"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="970"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1011"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1000"/>
         <source>Revert changes</source>
         <translation>Änderungen rückgängig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="971"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1001"/>
         <source>Do you really want to revert all changes to these files or directories?</source>
         <translation>Wollen Sie wirklich alle Änderungen an den folgenden Datein oder Verzeichnissen rückgängig machen?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="982"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1012"/>
         <source>Do you really want to revert all changes of the project?</source>
         <translation>Wollen Sie wirklich alle Änderungen des Projektes rückgängig machen?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="988"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018"/>
         <source>Reverting changes</source>
         <translation>Mache Änderungen rückgängig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1033"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064"/>
         <source>Merging</source>
         <translation>Zusammenführen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1072"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1103"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1095"/>
         <source>Re-Merge</source>
         <translation>Neu zusammenführen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1065"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1096"/>
         <source>Do you really want to re-merge these files or directories?</source>
         <translation>Wollen Sie wirklich diese Dateien oder Verzeichnisse neu zusammenführen?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1073"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1104"/>
         <source>Do you really want to re-merge the project?</source>
         <translation>Wollen Sie wirklich das Projekt neu zusammenführen?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1076"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1108"/>
         <source>Re-Merging</source>
         <translation>Neu zusammenführen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1098"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1131"/>
         <source>Current branch tip</source>
         <translation>Spitze des aktuellen Zweigs</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1280"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1314"/>
         <source>Mercurial command</source>
         <translation>Mercurial-Befehl</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1457"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1492"/>
         <source>Copying {0}</source>
         <translation>Kopiere {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1720"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1708"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1699"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1758"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1746"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737"/>
         <source>Mercurial Side-by-Side Difference</source>
         <translation>Mercurial Unterschiede nebeneinander anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1721"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1759"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2391"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2380"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1797"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2457"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2446"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2436"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1835"/>
         <source>Apply changegroups</source>
         <translation>Änderungsgruppen anwenden</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1800"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1838"/>
         <source>Pulling from a remote Mercurial repository</source>
         <translation>Pull von einem entfernten Mercurial-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1845"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1884"/>
         <source>Pushing to a remote Mercurial repository</source>
         <translation>Push in ein entferntes Mercurial-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1985"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2027"/>
         <source>Marking as &apos;unresolved&apos;</source>
         <translation>Markiere als &apos;nicht aufgelöst&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1987"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2029"/>
         <source>Marking as &apos;resolved&apos;</source>
         <translation>Markiere als &apos;aufgelöst&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2009"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2051"/>
         <source>Aborting uncommitted merge</source>
         <translation>Breche Zusammenführung ab</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2032"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2075"/>
         <source>Creating branch in the Mercurial repository</source>
         <translation>Erzeuge Zweig im Mercurial-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2040"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2086"/>
         <source>Created new branch &lt;{0}&gt;.</source>
         <translation>Neuer Zweig &lt;{0}&gt; wurde angelegt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2095"/>
         <source>Showing current branch</source>
         <translation>Zeige aktuellen Zweig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2136"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2184"/>
         <source>Verifying the integrity of the Mercurial repository</source>
         <translation>Verifiziere die Integrität des Mercurial-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2149"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2200"/>
         <source>Showing the combined configuration settings</source>
         <translation>Zeige die kombinierten Einstellungen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2160"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2215"/>
         <source>Showing aliases for remote repositories</source>
         <translation>Zeige Namen für entfernte Repositorys</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2171"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230"/>
         <source>Recovering from interrupted transaction</source>
         <translation>Setze abgebrochene Transaktion zurück</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2182"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2245"/>
         <source>Identifying project directory</source>
         <translation>Projektverzeichnis identifizieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2227"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2291"/>
         <source>Create .hgignore file</source>
         <translation>.hgignore-Datei erstellen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2292"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2329"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2303"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2285"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2351"/>
         <source>Create changegroup</source>
         <translation>Änderungsgruppe erzeugen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2287"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2353"/>
         <source>Mercurial Changegroup Files (*.hg)</source>
         <translation>Mercurial-Änderungsgruppendateien (*.hg)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2304"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370"/>
         <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Mercurial-Änderungsgruppendatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2409"/>
         <source>Preview changegroup</source>
         <translation>Änderungsgruppe ansehen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2372"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2345"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2438"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2411"/>
         <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
         <translation>Mercurial-Änderungsgruppendateien (*.hg);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2381"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2447"/>
         <source>Shall the working directory be updated?</source>
         <translation>Soll das Arbeitsverzeichnis aktualisiert werden?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2413"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2479"/>
         <source>Bisect subcommand ({0}) invalid.</source>
         <translation>Ungültiger Bisect Unterbefehl ({0}).</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2433"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2501"/>
         <source>Mercurial Bisect ({0})</source>
         <translation>Mercurial-Bisect ({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2456"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2527"/>
         <source>Removing files from the Mercurial repository only</source>
         <translation>Lösche Dateien nur aus dem Mercurial-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2500"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2481"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2576"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2557"/>
         <source>Backing out changeset</source>
         <translation>Änderungssatz umkehren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2482"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2558"/>
         <source>No revision given. Aborting...</source>
         <translation>Keine Revision angegeben. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2516"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2511"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2593"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2587"/>
         <source>Rollback last transaction</source>
         <translation>Letzte Transaktion zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2512"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2588"/>
         <source>Are you sure you want to rollback the last transaction?</source>
         <translation>Wollen Sie die letzte Transaktion wirklich zurücksetzen?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2579"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2657"/>
         <source>Import Patch</source>
         <translation>Patch importieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2627"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2707"/>
         <source>Export Patches</source>
         <translation>Patches exportieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2669"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2749"/>
         <source>Change Phase</source>
         <translation>Phase ändern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2724"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2804"/>
         <source>Copy Changesets</source>
         <translation>Änderungssätze kopieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2843"/>
         <source>Copy Changesets (Continue)</source>
         <translation>Änderungssätze kopieren (Fortsetzung)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2853"/>
         <source>Copy Changesets (Stop)</source>
         <translation>Änderungssätze kopieren (Stopp)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2783"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2863"/>
         <source>Copy Changesets (Abort)</source>
         <translation>Änderungssätze kopieren (Abbruch)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2806"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2887"/>
         <source>Create Unversioned Archive</source>
         <translation>Erzeuge nicht versioniertes Archiv</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2820"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2902"/>
         <source>Delete All Backups</source>
         <translation>Alle Backups löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2821"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2903"/>
         <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Sollen wirklich alle Backupdateien des Backupbereiches gelöscht werden?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2912"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2892"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2881"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2994"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2974"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2963"/>
         <source>Add Sub-repository</source>
         <translation>Unterrepository hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2951"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2882"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3033"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2964"/>
         <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Unterrepositorydatei .hgsub konnte nicht gelesen werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2893"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2975"/>
         <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Unterrepositorydatei .hgsub enthält bereits einen Eintrag &lt;b&gt;{0}&lt;/b&gt;. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2969"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2913"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3051"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2995"/>
         <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Unterrepositorydatei .hgsub konnte nicht gespeichert werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2968"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2950"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2936"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3050"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3032"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3018"/>
         <source>Remove Sub-repositories</source>
         <translation>Unterrepositorys löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2937"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3019"/>
         <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Unterrepositorydatei .hgsub existiert nicht. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3056"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3296"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3138"/>
         <source>Mercurial Command Server</source>
         <translation>Mercurial-Befehlsserver</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3057"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3139"/>
         <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Mercurial-Befehlsserver konnte nicht wiedergestartet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3207"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3297"/>
         <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Mercurial-Befehlsserver konnte nicht gestartet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3329"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3420"/>
         <source>Mercurial Bookmark</source>
         <translation>Mercurial-Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3437"/>
         <source>Delete Bookmark</source>
         <translation>Lesezeichen löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3347"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3438"/>
         <source>Select the bookmark to be deleted:</source>
         <translation>Wähle das zu löschende Lesezeichen aus:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3357"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3449"/>
         <source>Delete Mercurial Bookmark</source>
         <translation>Mercurial-Lesezeichen löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3382"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3476"/>
         <source>Rename Mercurial Bookmark</source>
         <translation>Mercurial-Lesezeichen umbenennen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3421"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3518"/>
         <source>Move Mercurial Bookmark</source>
         <translation>Mercurial-Lesezeichen verschieben</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3502"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3600"/>
         <source>Pull Bookmark</source>
         <translation>Lesezeichen herunterladen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3503"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3601"/>
         <source>Select the bookmark to be pulled:</source>
         <translation>Wähle das herunterzuladende Lesezeichen:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3515"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3613"/>
         <source>Pulling bookmark from a remote Mercurial repository</source>
         <translation>Lade Lesezeichen von einem entfernten Mercurial-Repository herunter</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3541"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3641"/>
         <source>Push Bookmark</source>
         <translation>Lesezeichen hochladen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3542"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3642"/>
         <source>Select the bookmark to be push:</source>
         <translation>Wähle das hochzuladende Lesezeichen:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3557"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3657"/>
         <source>Pushing bookmark to a remote Mercurial repository</source>
         <translation>Lade Lesezeichen zu einem entfernten Mercurial-Repository hoch</translation>
     </message>
@@ -43319,22 +43334,22 @@
         <translation>&lt;p&gt;Soll der Fingerabdruck für den Host &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="642"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="644"/>
         <source>Delete Host Minimum Protocol</source>
         <translation>Eintrag für ein minimales Protokoll löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="643"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="645"/>
         <source>&lt;p&gt;Shall the minimum protocol entry for host &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Solle der Eintrag für ein minimales Protokoll des Host &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="706"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="708"/>
         <source>Edit User Configuration</source>
         <translation>Nutzerkonfiguration editieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="707"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="709"/>
         <source>You will loose all changes made in this dialog. Shall the data be saved first?</source>
         <translation>Sie werden alle Änderungen, die in diesem Dialog vorgenommen wurden, verlieren. Sollen die Daten vorher gesichert werden?</translation>
     </message>
@@ -43454,22 +43469,22 @@
 <context>
     <name>Histedit</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="79"/>
         <source>Starting histedit session</source>
         <translation>Starte histedit Sitzung</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="108"/>
         <source>Continue histedit session</source>
         <translation>histedit Sitzung fortsetzen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136"/>
         <source>Abort histedit session</source>
         <translation>histedit Sitzung abbrechen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="164"/>
         <source>Edit Plan</source>
         <translation>Änderungsplan bearbeiten</translation>
     </message>
@@ -49109,52 +49124,52 @@
         <translation>Würde umsortiert:</translation>
     </message>
     <message>
-        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="300"/>
+        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="303"/>
         <source>Imports Sorting Failure</source>
         <translation>Fehler bei Imports Sortierung</translation>
     </message>
     <message>
-        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="301"/>
+        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="304"/>
         <source>&lt;p&gt;Imports sorting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Imports Sortierung ist wegen diesem Fehler fehlgeschlagen.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="352"/>
-        <source>would resort</source>
-        <translation>würde umsortiert</translation>
-    </message>
-    <message>
         <location filename="../CodeFormatting/IsortFormattingDialog.py" line="355"/>
+        <source>would resort</source>
+        <translation>würde umsortiert</translation>
+    </message>
+    <message>
+        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="358"/>
         <source>resorted</source>
         <translation>umsortiert</translation>
     </message>
     <message>
-        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="360"/>
+        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="363"/>
         <source>unchanged</source>
         <translation>unverändert</translation>
     </message>
     <message>
-        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="364"/>
+        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="367"/>
         <source>skipped</source>
         <translation>übersprungen</translation>
     </message>
     <message>
-        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="368"/>
+        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="371"/>
         <source>failed</source>
         <translation>gescheitert</translation>
     </message>
     <message>
-        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="373"/>
+        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="376"/>
         <source>error</source>
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="374"/>
+        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="377"/>
         <source>Unsupported &apos;isort&apos; action ({0}) given.</source>
         <translation>Nicht unterstützte &apos;isort&apos; Aktion ({0}) angegeben.</translation>
     </message>
     <message>
-        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="381"/>
+        <location filename="../CodeFormatting/IsortFormattingDialog.py" line="384"/>
         <source>invalid status ({0})</source>
         <translation>ungültiger Status ({0})</translation>
     </message>
@@ -49291,7 +49306,7 @@
         <translation>Jedi: keine &apos;Mouse Hover&apos; Hilfe gefunden</translation>
     </message>
     <message>
-        <location filename="../JediInterface/JediServer.py" line="682"/>
+        <location filename="../JediInterface/JediServer.py" line="683"/>
         <location filename="../JediInterface/JediServer.py" line="522"/>
         <source>Rename Variable</source>
         <translation>Variable umbenennen</translation>
@@ -49322,27 +49337,27 @@
         <translation>Gib den Namen für die Funktion ein:</translation>
     </message>
     <message>
-        <location filename="../JediInterface/JediServer.py" line="690"/>
+        <location filename="../JediInterface/JediServer.py" line="692"/>
         <source>Refactoring</source>
         <translation>Refaktorierung</translation>
     </message>
     <message>
-        <location filename="../JediInterface/JediServer.py" line="691"/>
+        <location filename="../JediInterface/JediServer.py" line="693"/>
         <source>&lt;p&gt;The refactoring could not be performed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Refaktorierung konnte nicht ausgeführt werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../JediInterface/JediServer.py" line="749"/>
+        <location filename="../JediInterface/JediServer.py" line="751"/>
         <source>Apply Refactoring</source>
         <translation>Refaktorierung anwenden</translation>
     </message>
     <message>
-        <location filename="../JediInterface/JediServer.py" line="750"/>
+        <location filename="../JediInterface/JediServer.py" line="752"/>
         <source>&lt;p&gt;The refactoring could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Refaktorierung konnte nicht angewendet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../JediInterface/JediServer.py" line="786"/>
+        <location filename="../JediInterface/JediServer.py" line="788"/>
         <source>The data received from the Jedi server could not be decoded. Please report this issue with the received data to the eric bugs email address.
 Error: {0}
 Data:
@@ -49355,7 +49370,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../JediInterface/JediServer.py" line="796"/>
+        <location filename="../JediInterface/JediServer.py" line="798"/>
         <source>An exception happened in the Jedi client. Please report it to the eric bugs email address.
 Exception: {0}
 Value: {1}
@@ -49368,28 +49383,28 @@
 </translation>
     </message>
     <message>
-        <location filename="../JediInterface/JediServer.py" line="838"/>
+        <location filename="../JediInterface/JediServer.py" line="840"/>
         <source>The jedi and/or parso library is not installed.
 </source>
         <translation>Die jedi und/oder parso Bibliothek ist nicht installiert.
 </translation>
     </message>
     <message>
-        <location filename="../JediInterface/JediServer.py" line="843"/>
+        <location filename="../JediInterface/JediServer.py" line="845"/>
         <source>&apos;{0}&apos; is not supported because the configured interpreter could not be started.
 </source>
         <translation>&apos;{0}&apos; wird nicht unterstützt, da der konfigurierte Interpreter nicht gestartet werden konnte.
 </translation>
     </message>
     <message>
-        <location filename="../JediInterface/JediServer.py" line="851"/>
+        <location filename="../JediInterface/JediServer.py" line="853"/>
         <source>&apos;{0}&apos; is not supported because no suitable interpreter is configured.
 </source>
         <translation>&apos;{0}&apos; wird nicht unrestützt, da kein geeigneter Interpreter konfiguriert ist.
 </translation>
     </message>
     <message>
-        <location filename="../JediInterface/JediServer.py" line="953"/>
+        <location filename="../JediInterface/JediServer.py" line="955"/>
         <source>Jedi</source>
         <translation>Jedi</translation>
     </message>
@@ -49397,37 +49412,37 @@
 <context>
     <name>Largefiles</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="72"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="75"/>
         <source>Convert Project - Converting</source>
         <translation>Projekt konvertieren - Konvertierung</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="92"/>
         <source>Mercurial Command Server</source>
         <translation>Mercurial-Befehlsserver</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="93"/>
         <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Mercurial-Befehlsserver konnte nicht gestartet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="104"/>
         <source>Convert Project - Extracting</source>
         <translation>Projekt konvertieren - Extrahieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="145"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="150"/>
         <source>Adding files to the Mercurial repository</source>
         <translation>Füge Dateien dem Mercurial-Repository hinzu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="182"/>
         <source>Pulling large files</source>
         <translation>Lade Binärriesen herunter</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="196"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="205"/>
         <source>Verifying the integrity of large files</source>
         <translation>Verifiziere die Integrität der Binärriesen</translation>
     </message>
@@ -50740,13 +50755,13 @@
     <name>Lexers</name>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="412"/>
-        <location filename="../Preferences/__init__.py" line="596"/>
+        <location filename="../Preferences/__init__.py" line="597"/>
         <source>Python Files (*.py *.py3)</source>
         <translation>Python-Dateien (*.py *.py3)</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="505"/>
-        <location filename="../Preferences/__init__.py" line="599"/>
+        <location filename="../Preferences/__init__.py" line="600"/>
         <source>Python3 Files (*.py)</source>
         <translation>Python 3-Dateien (*.py)</translation>
     </message>
@@ -52578,18 +52593,18 @@
 <context>
     <name>MicroPythonDevice</name>
     <message>
-        <location filename="../MicroPython/Devices/__init__.py" line="356"/>
+        <location filename="../MicroPython/Devices/__init__.py" line="369"/>
         <source>Generic MicroPython Board</source>
         <translation>Generisches MicroPython Board</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/__init__.py" line="403"/>
+        <location filename="../MicroPython/Devices/__init__.py" line="416"/>
         <source>RP2040/RP2350 based</source>
         <translation>RP2040/RP2350 basiert</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/__init__.py" line="566"/>
-        <location filename="../MicroPython/Devices/__init__.py" line="555"/>
+        <location filename="../MicroPython/Devices/__init__.py" line="579"/>
+        <location filename="../MicroPython/Devices/__init__.py" line="568"/>
         <source>Unknown Device</source>
         <translation>Unbekanntes Gerät</translation>
     </message>
@@ -53996,343 +54011,343 @@
         <translation>&lt;p&gt;Die Eingabeaufforderung kann nicht gestartet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="737"/>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="724"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="740"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="727"/>
         <source>Serial Device Connect</source>
         <translation>Serielle Verbindung</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="725"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="728"/>
         <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Gerät am seriellen Port &lt;b&gt;{0}&lt;/b&gt; antwortet nicht. Es hat wahrscheinlich keine MicroPython Firmware geflasht.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="732"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="735"/>
         <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Kann keine Verbindung zum Gerät an der seriellen Schnittstelle &lt;b&gt;{0}&lt;/b&gt; herstellen.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Ursache:&lt;/b&gt; {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1193"/>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1185"/>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="735"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1196"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1188"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="738"/>
         <source>unknown</source>
         <translation>unbekannt</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="796"/>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="787"/>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="799"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="790"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="781"/>
         <source>Run Script</source>
         <translation>Skript ausführen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="779"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="782"/>
         <source>There is no editor open. Abort...</source>
         <translation>Es ist kein Editor offen. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="788"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="791"/>
         <source>The current editor does not contain a script. Abort...</source>
         <translation>Der aktuelle Editortext enthält kein Skript. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="797"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="800"/>
         <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Skript kann nicht ausgeführt werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="833"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="836"/>
         <source>Start Chart</source>
         <translation>Chart starten</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="834"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="837"/>
         <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Chart kann nicht gestartet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="849"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="852"/>
         <source>µPy Chart</source>
         <translation>µPy Chart</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="866"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="869"/>
         <source>Unsaved Chart Data</source>
         <translation>Nicht gesicherte Chart Daten</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="867"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="870"/>
         <source>The chart contains unsaved data.</source>
         <translation>Das Chart enthält ungesicherte Daten.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="915"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="918"/>
         <source>Start File Manager</source>
         <translation>Dateimanager starten</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="916"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="919"/>
         <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Dateimanager kann nicht gestartet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="936"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="939"/>
         <source>µPy Files</source>
         <translation>µPy Dateien</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1012"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1015"/>
         <source>Downloads</source>
         <translation>Downloads</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1059"/>
-        <source>Show Version</source>
-        <translation>Version anzeigen</translation>
-    </message>
-    <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1062"/>
-        <source>Show Implementation</source>
-        <translation>Implementierung anzeigen</translation>
+        <source>Show Version</source>
+        <translation>Version anzeigen</translation>
     </message>
     <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1065"/>
+        <source>Show Implementation</source>
+        <translation>Implementierung anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>Show Board Data</source>
         <translation>Board Daten anzeigen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1268"/>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1070"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1271"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1073"/>
         <source>Synchronize Time</source>
         <translation>Zeit synchronisieren</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1073"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1076"/>
         <source>Show Device Time</source>
         <translation>Gerätezeit anzeigen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1075"/>
-        <source>Show Local Time</source>
-        <translation>Lokale Zeit anzeigen</translation>
-    </message>
-    <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1078"/>
+        <source>Show Local Time</source>
+        <translation>Lokale Zeit anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1081"/>
         <source>Show Time</source>
         <translation>Zeit anzeigen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1082"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1085"/>
         <source>Show Builtin Modules</source>
         <translation>Eingebaute Module anzeigen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1684"/>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1094"/>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1086"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1689"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1097"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1089"/>
         <source>Install Package</source>
         <translation>Paket installieren</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1723"/>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1720"/>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1090"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1728"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1725"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1093"/>
         <source>Install Packages</source>
         <translation>Pakete installieren</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1497"/>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1100"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1501"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1103"/>
         <source>Compile Python File</source>
         <translation>Python Datei übersetzen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1523"/>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1514"/>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1104"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1518"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1107"/>
         <source>Compile Current Editor</source>
         <translation>Aktuellen Editor übersetzen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1125"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1128"/>
         <source>Download Firmware</source>
         <translation>Firmware herunterladen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1132"/>
-        <source>Show Documentation</source>
-        <translation>Dokumentation anzeigen</translation>
-    </message>
-    <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1135"/>
+        <source>Show Documentation</source>
+        <translation>Dokumentation anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1138"/>
         <source>Convert To UF2</source>
         <translation>Zu UF2 konvertieren</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1136"/>
-        <source>Flash UF2 Device</source>
-        <translation>UF2 Gerät flashen</translation>
-    </message>
-    <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1139"/>
-        <source>Manage Unknown Devices</source>
-        <translation>Unbekannte Geräte verwalten</translation>
+        <source>Flash UF2 Device</source>
+        <translation>UF2 Gerät flashen</translation>
     </message>
     <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1142"/>
-        <source>Ignored Serial Devices</source>
-        <translation>Ignorierte Serielle Geräte</translation>
+        <source>Manage Unknown Devices</source>
+        <translation>Unbekannte Geräte verwalten</translation>
     </message>
     <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1145"/>
-        <source>Configure</source>
-        <translation>Einstellungen</translation>
+        <source>Ignored Serial Devices</source>
+        <translation>Ignorierte Serielle Geräte</translation>
     </message>
     <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1148"/>
+        <source>Configure</source>
+        <translation>Einstellungen</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1151"/>
         <source>Quit</source>
         <translation>Beenden</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1157"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1160"/>
         <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
         <translation>&lt;h3&gt;Versionsinformationen des Gerätes&lt;/h3&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1164"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1171"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1167"/>
         <source>Device Version Information</source>
         <translation>Versionsinformationen des Gerätes</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1169"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1172"/>
         <source>No version information available.</source>
         <translation>Keine Versionsinformationen verfügbar.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1199"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1202"/>
         <source> ({0})</source>
         <translation> ({0})</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1215"/>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1206"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1218"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1209"/>
         <source>Device Implementation Information</source>
         <translation>Informationen zur Implementierung</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1207"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1210"/>
         <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Informationen zur Implementierung&lt;/h3&gt;&lt;p&gt;Dieses Gerät enthält &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1216"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1219"/>
         <source>No device implementation information available.</source>
         <translation>Keine Informationen zur Implementierung verfügbar.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1269"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1272"/>
         <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Zeit des angeschlossenen Gerätes wurde mit der lokalen Zeit synchronisiert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1291"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1294"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;h3&gt;Datum und Zeit des Gerätes&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zeit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1299"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1302"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Datum und Zeit des Gerätes&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1315"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1318"/>
         <source>Device Date and Time</source>
         <translation>Datum und Zeit des Gerätes</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1327"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1330"/>
         <source>Local Date and Time</source>
         <translation>Lokales Datum und Zeit</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1328"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1331"/>
         <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;h3&gt;Lokales Datum und Zeit&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zeit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1369"/>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1352"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1372"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1355"/>
         <source>Date and Time</source>
         <translation>Datum und Zeit</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1353"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1356"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{0}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Lokales Datum und Zeit&lt;/th&gt;&lt;th&gt;Datum und Zeit des Gerätes&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{0}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zeit&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1370"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1373"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&apos;center&apos;&gt;{0} {1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Lokales Datum und Zeit&lt;/th&gt;&lt;th&gt;Datum und Zeit des Gerätes&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&apos;center&apos;&gt;{0} {1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1394"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1397"/>
         <source>Error handling device</source>
         <translation>Fehler bei Gerätekommunikation</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1395"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1398"/>
         <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es trat ein Fehler bei der Kommunikation mit dem Gerät auf.&lt;/p&gt;&lt;p&gt;Methode: {0}&lt;/p&gt;&lt;p&gt;Nachricht: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1437"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
         <translation>Der MicroPython Crosscompiler &lt;b&gt;mpy-cross&lt;/b&gt; kann nicht gefunden werden. Stelle sicher, dass er im Suchpfad liegt oder konfiguriere ihn auf der MicroPython Konfigurationsseite.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1463"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>Python-Dateien (*.py);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1473"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1476"/>
         <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
         <translation>Die Python Datei &lt;b&gt;{0}&lt;/b&gt; existiert nicht. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1483"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1486"/>
         <source>&apos;mpy-cross&apos; Output</source>
         <translation>&apos;mpy-cross&apos; Ausgabe</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1515"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1519"/>
         <source>The current editor does not contain a Python file. Aborting...</source>
         <translation>Der aktuelle Editortext enthält keine Pythondatei. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1607"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1611"/>
         <source>Add Unknown Devices</source>
         <translation>Unbekannte Geräte hinzufügen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1608"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1612"/>
         <source>Select the devices to be added:</source>
         <translation>Wähle die hinzuzufügenden unbekannten Geräte:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1657"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1662"/>
         <source>Plus any modules on the filesystem.</source>
         <translation>Zusätzlich alle Module im Dateisystem.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1709"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1714"/>
         <source>Package &apos;{0}&apos; was installed successfully.</source>
         <translation>Paket &apos;{0}&apos; wurde erfolgreich installiert.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1724"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1729"/>
         <source>Enter the packages to be installed separated by whitespace:</source>
         <translation>Gib die zu installierenden Pakete durch Leerzeichen getrennt ein:</translation>
     </message>
@@ -56222,237 +56237,237 @@
 <context>
     <name>MultiProject</name>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="338"/>
-        <location filename="../MultiProject/MultiProject.py" line="324"/>
+        <location filename="../MultiProject/MultiProject.py" line="341"/>
+        <location filename="../MultiProject/MultiProject.py" line="327"/>
         <source>Copy Project</source>
         <translation>Projekt kopieren</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="325"/>
+        <location filename="../MultiProject/MultiProject.py" line="328"/>
         <source>Enter directory for the new project (must not exist already):</source>
         <translation>Gib ein Verzeichnis für das neue Projekt ein (darf nicht bereits existieren):</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="339"/>
+        <location filename="../MultiProject/MultiProject.py" line="342"/>
         <source>&lt;p&gt;The source project &lt;b&gt;{0}&lt;/b&gt; could not be copied to its destination &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Quellprojekt &lt;b&gt;{0}&lt;/b&gt; konnte nicht zum Ziel &lt;b&gt;{1}&lt;/b&gt; kopiert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="349"/>
+        <location filename="../MultiProject/MultiProject.py" line="352"/>
         <source>{0} - Copy</source>
         <translation>{0} - Kopie</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="499"/>
+        <location filename="../MultiProject/MultiProject.py" line="502"/>
         <source>Open Multi Project</source>
         <translation>Mehrfachprojekt öffnen</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="556"/>
-        <location filename="../MultiProject/MultiProject.py" line="546"/>
-        <location filename="../MultiProject/MultiProject.py" line="501"/>
+        <location filename="../MultiProject/MultiProject.py" line="559"/>
+        <location filename="../MultiProject/MultiProject.py" line="549"/>
+        <location filename="../MultiProject/MultiProject.py" line="504"/>
         <source>Multi Project Files (*.emj)</source>
         <translation>Mehrfachprojekt-Dateien (*.emj)</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="554"/>
+        <location filename="../MultiProject/MultiProject.py" line="557"/>
         <source>Save Multiproject</source>
         <translation>Mehrfachprojekt speichern</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="570"/>
+        <location filename="../MultiProject/MultiProject.py" line="573"/>
         <source>Save File</source>
         <translation>Datei sichern</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="571"/>
+        <location filename="../MultiProject/MultiProject.py" line="574"/>
         <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="../MultiProject/MultiProject.py" line="598"/>
+        <location filename="../MultiProject/MultiProject.py" line="601"/>
         <source>Close Multiproject</source>
         <translation>Mehrfachprojekt schließen</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="599"/>
+        <location filename="../MultiProject/MultiProject.py" line="602"/>
         <source>The current multiproject has unsaved changes.</source>
         <translation>Das aktuelle Mehrfachprojekt hat ungesicherte Änderungen.</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="653"/>
+        <location filename="../MultiProject/MultiProject.py" line="656"/>
         <source>New multiproject</source>
         <translation>Neues Mehrfachprojekt</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="655"/>
+        <location filename="../MultiProject/MultiProject.py" line="658"/>
         <source>&amp;New...</source>
         <translation>&amp;Neu...</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="661"/>
+        <location filename="../MultiProject/MultiProject.py" line="664"/>
         <source>Generate a new multiproject</source>
         <translation>Erstelle ein neues Mehrfachprojekt</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="663"/>
+        <location filename="../MultiProject/MultiProject.py" line="666"/>
         <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neu...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Eingabe der Informationen des neuen Mehrfachprojektes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="673"/>
+        <location filename="../MultiProject/MultiProject.py" line="676"/>
         <source>Open multiproject</source>
         <translation>Mehrfachprojekt öffnen</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="675"/>
+        <location filename="../MultiProject/MultiProject.py" line="678"/>
         <source>&amp;Open...</source>
         <translation>&amp;Öffnen...</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="681"/>
+        <location filename="../MultiProject/MultiProject.py" line="684"/>
         <source>Open an existing multiproject</source>
         <translation>Öffnet ein bestehendes Mehrfachprojekt</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="683"/>
+        <location filename="../MultiProject/MultiProject.py" line="686"/>
         <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Öffnen...&lt;/b&gt;&lt;p&gt;Dies öffnet ein bestehendes Mehrfachprojekt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="689"/>
+        <location filename="../MultiProject/MultiProject.py" line="692"/>
         <source>Close multiproject</source>
         <translation>Mehrfachprojekt schließen</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="691"/>
+        <location filename="../MultiProject/MultiProject.py" line="694"/>
         <source>&amp;Close</source>
         <translation>Schl&amp;ießen</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="697"/>
+        <location filename="../MultiProject/MultiProject.py" line="700"/>
         <source>Close the current multiproject</source>
         <translation>Schließt das aktuelle Mehrfachprojekt</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="699"/>
+        <location filename="../MultiProject/MultiProject.py" line="702"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Schließen&lt;/b&gt;&lt;p&gt;Dies schließt das aktuelle Mehrfachprojekt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="705"/>
+        <location filename="../MultiProject/MultiProject.py" line="708"/>
         <source>Save multiproject</source>
         <translation>Mehrfachprojekt speichern</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="707"/>
+        <location filename="../MultiProject/MultiProject.py" line="710"/>
         <source>&amp;Save</source>
         <translation>&amp;Speichern</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="713"/>
+        <location filename="../MultiProject/MultiProject.py" line="716"/>
         <source>Save the current multiproject</source>
         <translation>Speichert das aktuelle Mehrfachprojekt</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="715"/>
+        <location filename="../MultiProject/MultiProject.py" line="718"/>
         <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Speichern&lt;/b&gt;&lt;p&gt;Dies speichert das aktuelle Mehrfachprojekt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="721"/>
+        <location filename="../MultiProject/MultiProject.py" line="724"/>
         <source>Save multiproject as</source>
         <translation>Mehrfachprojekt speichern unter</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="723"/>
+        <location filename="../MultiProject/MultiProject.py" line="726"/>
         <source>Save &amp;as...</source>
         <translation>Speichern &amp;unter...</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="730"/>
-        <source>Save the current multiproject to a new file</source>
-        <translation>Speichert das aktuelle Mehrfachprojekt in eine neue Datei</translation>
-    </message>
-    <message>
         <location filename="../MultiProject/MultiProject.py" line="733"/>
+        <source>Save the current multiproject to a new file</source>
+        <translation>Speichert das aktuelle Mehrfachprojekt in eine neue Datei</translation>
+    </message>
+    <message>
+        <location filename="../MultiProject/MultiProject.py" line="736"/>
         <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Speichern unter&lt;/b&gt;&lt;p&gt;Dies speichert das aktuelle Mehrfachprojekt in eine neue Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="742"/>
+        <location filename="../MultiProject/MultiProject.py" line="745"/>
         <source>Add project to multiproject</source>
         <translation>Projekt zum Mehrfachprojekt hinzufügen</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="744"/>
+        <location filename="../MultiProject/MultiProject.py" line="747"/>
         <source>Add &amp;project...</source>
         <translation>&amp;Projekt hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="751"/>
-        <source>Add a project to the current multiproject</source>
-        <translation>Ein Projekt zum aktuellen Mehrfachprojekt hinzufügen</translation>
-    </message>
-    <message>
         <location filename="../MultiProject/MultiProject.py" line="754"/>
+        <source>Add a project to the current multiproject</source>
+        <translation>Ein Projekt zum aktuellen Mehrfachprojekt hinzufügen</translation>
+    </message>
+    <message>
+        <location filename="../MultiProject/MultiProject.py" line="757"/>
         <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Projekt hinzufügen...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, mit dem ein Projekt zum aktuellen Mehrfachprojekt hinzugefügt werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="764"/>
+        <location filename="../MultiProject/MultiProject.py" line="767"/>
         <source>Multiproject properties</source>
         <translation>Mehrfachprojekteigenschaften</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="766"/>
+        <location filename="../MultiProject/MultiProject.py" line="769"/>
         <source>&amp;Properties...</source>
         <translation>&amp;Eigenschaften...</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="772"/>
+        <location filename="../MultiProject/MultiProject.py" line="775"/>
         <source>Show the multiproject properties</source>
         <translation>Zeigt die Mehrfachprojekt-Eigenschaften an</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="774"/>
+        <location filename="../MultiProject/MultiProject.py" line="777"/>
         <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eigenschaften...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog an, mit dem die Mehrfachprojekt-Eigenschaften bearbeitet werden können.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="786"/>
-        <location filename="../MultiProject/MultiProject.py" line="784"/>
+        <location filename="../MultiProject/MultiProject.py" line="789"/>
+        <location filename="../MultiProject/MultiProject.py" line="787"/>
         <source>Clear Out</source>
         <translation>Entrümpeln</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="793"/>
-        <source>Remove all projects marked as removed</source>
-        <translation>Entfernt alle Projekte, die als entfernt markiert sind</translation>
-    </message>
-    <message>
         <location filename="../MultiProject/MultiProject.py" line="796"/>
+        <source>Remove all projects marked as removed</source>
+        <translation>Entfernt alle Projekte, die als entfernt markiert sind</translation>
+    </message>
+    <message>
+        <location filename="../MultiProject/MultiProject.py" line="799"/>
         <source>&lt;b&gt;Clear Out...&lt;/b&gt;&lt;p&gt;This removes all projects marked as removed.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Entrümpeln&lt;/b&gt;&lt;p&gt;Dies entfernt alle Projekte, die als entfernt markiert sind.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="818"/>
+        <location filename="../MultiProject/MultiProject.py" line="821"/>
         <source>&amp;Multiproject</source>
         <translation>&amp;Mehrfachprojekt</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="819"/>
+        <location filename="../MultiProject/MultiProject.py" line="822"/>
         <source>Open &amp;Recent Multiprojects</source>
         <translation>Zu&amp;letzt geöffnete Mehrfachprojekte</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="862"/>
-        <location filename="../MultiProject/MultiProject.py" line="860"/>
+        <location filename="../MultiProject/MultiProject.py" line="865"/>
+        <location filename="../MultiProject/MultiProject.py" line="863"/>
         <source>Multiproject</source>
         <translation>Mehrfachprojekt</translation>
     </message>
     <message>
-        <location filename="../MultiProject/MultiProject.py" line="918"/>
+        <location filename="../MultiProject/MultiProject.py" line="921"/>
         <source>&amp;Clear</source>
         <translation>&amp;Löschen</translation>
     </message>
@@ -59447,108 +59462,108 @@
         <translation>Pakete installieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="562"/>
+        <location filename="../PipInterface/Pip.py" line="563"/>
         <source>Install Packages from Requirements</source>
         <translation>Pakete gem. Anforderungen installieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="583"/>
+        <location filename="../PipInterface/Pip.py" line="585"/>
         <source>Install Project</source>
         <translation>Projekt installieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="618"/>
-        <location filename="../PipInterface/Pip.py" line="608"/>
+        <location filename="../PipInterface/Pip.py" line="620"/>
+        <location filename="../PipInterface/Pip.py" line="610"/>
         <source>Install &apos;pyproject&apos; Dependencies</source>
         <translation>Abhängigkeiten gem. &apos;pyproject&apos; installieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="739"/>
-        <location filename="../PipInterface/Pip.py" line="609"/>
+        <location filename="../PipInterface/Pip.py" line="748"/>
+        <location filename="../PipInterface/Pip.py" line="611"/>
         <source>The selected &apos;pyproject.toml&apos; file does not contain a &apos;project.dependencies&apos; section. Aborting...</source>
         <translation>Die ausgewählte &apos;pyproject.toml&apos; Datei enthält keinen &apos;project.dependencies&apos; Abschnitt. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="619"/>
+        <location filename="../PipInterface/Pip.py" line="621"/>
         <source>&lt;p&gt;The selected &apos;pyproject.toml&apos; file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die ausgewählte &apos;pyproject.toml&apos; Datei konnte nicht gelesen werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="638"/>
+        <location filename="../PipInterface/Pip.py" line="641"/>
         <source>Install Packages from &apos;pyproject.toml&apos;</source>
         <translation>Pakete gem. &apos;pyproject.toml&apos; installieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="766"/>
-        <location filename="../PipInterface/Pip.py" line="695"/>
-        <location filename="../PipInterface/Pip.py" line="667"/>
-        <location filename="../PipInterface/Pip.py" line="658"/>
+        <location filename="../PipInterface/Pip.py" line="775"/>
+        <location filename="../PipInterface/Pip.py" line="701"/>
+        <location filename="../PipInterface/Pip.py" line="671"/>
+        <location filename="../PipInterface/Pip.py" line="662"/>
         <source>Uninstall Packages</source>
         <translation>Pakete deinstallieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="767"/>
-        <location filename="../PipInterface/Pip.py" line="696"/>
-        <location filename="../PipInterface/Pip.py" line="659"/>
+        <location filename="../PipInterface/Pip.py" line="776"/>
+        <location filename="../PipInterface/Pip.py" line="702"/>
+        <location filename="../PipInterface/Pip.py" line="663"/>
         <source>Do you really want to uninstall these packages?</source>
         <translation>Sollen diese Pakete wirklich deinstalliert werden?</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="712"/>
+        <location filename="../PipInterface/Pip.py" line="719"/>
         <source>Uninstall Packages from Requirements</source>
         <translation>Pakete gem. Anforderungen deinstallieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="749"/>
-        <location filename="../PipInterface/Pip.py" line="738"/>
+        <location filename="../PipInterface/Pip.py" line="758"/>
+        <location filename="../PipInterface/Pip.py" line="747"/>
         <source>Uninstall &apos;pyproject&apos; Dependencies</source>
         <translation>Abhängigkeiten gem. &apos;pyproject&apos; deinstallieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="750"/>
+        <location filename="../PipInterface/Pip.py" line="759"/>
         <source>&lt;p&gt;The selected &apos;pyproject.toml&apos; file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die ausgewählte &apos;pyproject.toml&apos; Datei konnte nicht gelesen werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="777"/>
+        <location filename="../PipInterface/Pip.py" line="786"/>
         <source>Uninstall Packages from &apos;pyproject.toml&apos;</source>
         <translation>Pakete gem. &apos;pyproject.toml&apos; deinstallieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="1185"/>
+        <location filename="../PipInterface/Pip.py" line="1195"/>
         <source>Cache Info</source>
         <translation>Zwischenspeicherinformationen</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="1211"/>
-        <location filename="../PipInterface/Pip.py" line="1202"/>
+        <location filename="../PipInterface/Pip.py" line="1221"/>
+        <location filename="../PipInterface/Pip.py" line="1212"/>
         <source>List Cached Files</source>
         <translation>Liste zwischengespeicherte Dateien</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="1203"/>
+        <location filename="../PipInterface/Pip.py" line="1213"/>
         <source>Enter a file pattern (empty for all):</source>
         <translation>Gib ein Dateinamenmuster ein (leer für alle):</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="1235"/>
-        <location filename="../PipInterface/Pip.py" line="1228"/>
+        <location filename="../PipInterface/Pip.py" line="1245"/>
+        <location filename="../PipInterface/Pip.py" line="1238"/>
         <source>Remove Cached Files</source>
         <translation>Zwischengespeicherte Dateien Löschen</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="1229"/>
+        <location filename="../PipInterface/Pip.py" line="1239"/>
         <source>Enter a file pattern:</source>
         <translation>Gib ein Dateinamenmuster ein:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="1260"/>
-        <location filename="../PipInterface/Pip.py" line="1252"/>
+        <location filename="../PipInterface/Pip.py" line="1270"/>
+        <location filename="../PipInterface/Pip.py" line="1262"/>
         <source>Purge Cache</source>
         <translation>Zwischenspeicher Leeren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/Pip.py" line="1253"/>
+        <location filename="../PipInterface/Pip.py" line="1263"/>
         <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
         <translation>Soll der pip Zwischenspeicher wirklich geleert werden? Alle Dateien müssen neu heruntergeladen werden.</translation>
     </message>
@@ -62136,18 +62151,18 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1904"/>
+        <location filename="../Preferences/__init__.py" line="1905"/>
         <source>Export Preferences</source>
         <translation>Einstellungen exportieren</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1933"/>
-        <location filename="../Preferences/__init__.py" line="1906"/>
+        <location filename="../Preferences/__init__.py" line="1934"/>
+        <location filename="../Preferences/__init__.py" line="1907"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation>Properties-Dateien (*.ini);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1931"/>
+        <location filename="../Preferences/__init__.py" line="1932"/>
         <source>Import Preferences</source>
         <translation>Einstellungen importieren</translation>
     </message>
@@ -62168,7 +62183,7 @@
 <context>
     <name>PreviewModel</name>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="509"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="520"/>
         <source>Variable Name</source>
         <translation>Variablenname</translation>
     </message>
@@ -62795,430 +62810,430 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project/Project.py" line="187"/>
+        <location filename="../Project/Project.py" line="188"/>
         <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source>
         <translation>Python 3-Dateien (*.py *.py3);;Python 3-GUI-Dateien (*.pyw *.pyw3);;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="250"/>
-        <source>Add File Category</source>
-        <translation>Dateikategorie hinzufügen</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="251"/>
+        <source>Add File Category</source>
+        <translation>Dateikategorie hinzufügen</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="252"/>
         <source>&lt;p&gt;The file category &lt;b&gt;{0}&lt;/b&gt; has already been added. This attempt will be ignored.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Dateikategorie &lt;b&gt;{0}&lt;/b&gt; wurde bereits hinzugefügt. Dieser Versuch wird ignoriert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="336"/>
-        <source>PyQt5 GUI</source>
-        <translation>PyQt5 Oberfläche</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="337"/>
-        <source>PyQt5 Console</source>
-        <translation>PyQt5 Kommandozeile</translation>
+        <source>PyQt5 GUI</source>
+        <translation>PyQt5 Oberfläche</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="338"/>
-        <source>PyQt6 GUI</source>
-        <translation>PyQt6 Oberfläche</translation>
+        <source>PyQt5 Console</source>
+        <translation>PyQt5 Kommandozeile</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="339"/>
-        <source>PyQt6 Console</source>
-        <translation>PyQt6 Kommandozeile</translation>
+        <source>PyQt6 GUI</source>
+        <translation>PyQt6 Oberfläche</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="340"/>
-        <source>Eric7 Plugin</source>
-        <translation>Eric7 Plugin</translation>
+        <source>PyQt6 Console</source>
+        <translation>PyQt6 Kommandozeile</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="341"/>
-        <source>Console</source>
-        <translation>Konsole</translation>
+        <source>Eric7 Plugin</source>
+        <translation>Eric7 Plugin</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="342"/>
+        <source>Console</source>
+        <translation>Konsole</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="343"/>
         <source>Other</source>
         <translation>Sonstige</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="361"/>
-        <source>PySide2 GUI</source>
-        <translation>PySide2 Oberfläche</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="362"/>
+        <source>PySide2 GUI</source>
+        <translation>PySide2 Oberfläche</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="363"/>
         <source>PySide2 Console</source>
         <translation>PySide2 Kommandozeile</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="366"/>
-        <source>PySide6 GUI</source>
-        <translation>PySide6 Oberfläche</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="367"/>
+        <source>PySide6 GUI</source>
+        <translation>PySide6 Oberfläche</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="368"/>
         <source>PySide6 Console</source>
         <translation>PySide6 Kommandozeile</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="465"/>
-        <location filename="../Project/Project.py" line="453"/>
-        <location filename="../Project/Project.py" line="442"/>
-        <source>Registering Project Type</source>
-        <translation>Projekttyp Registrierung</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="443"/>
-        <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Die Programmiersprache &lt;b&gt;{0}&lt;/b&gt; wird nicht unterstützt (Projekttyp: {1}).&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="454"/>
-        <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Der Projekttyp &lt;b&gt;{0}&lt;/b&gt; ist bereits für die Programmiersprache &lt;b&gt;{1}&lt;/b&gt; registriert.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="466"/>
+        <location filename="../Project/Project.py" line="454"/>
+        <location filename="../Project/Project.py" line="443"/>
+        <source>Registering Project Type</source>
+        <translation>Projekttyp Registrierung</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="444"/>
+        <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Die Programmiersprache &lt;b&gt;{0}&lt;/b&gt; wird nicht unterstützt (Projekttyp: {1}).&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="455"/>
+        <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Der Projekttyp &lt;b&gt;{0}&lt;/b&gt; ist bereits für die Programmiersprache &lt;b&gt;{1}&lt;/b&gt; registriert.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="467"/>
         <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Projekttyp &lt;b&gt;{0}&lt;/b&gt; ist bereits registriert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="771"/>
+        <location filename="../Project/Project.py" line="772"/>
         <source>All Files (*)</source>
         <translation>Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1332"/>
+        <location filename="../Project/Project.py" line="1333"/>
         <source>Read Project Session</source>
         <translation>Projektsitzung lesen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1578"/>
-        <location filename="../Project/Project.py" line="1552"/>
-        <location filename="../Project/Project.py" line="1516"/>
-        <location filename="../Project/Project.py" line="1434"/>
-        <location filename="../Project/Project.py" line="1395"/>
-        <location filename="../Project/Project.py" line="1370"/>
-        <location filename="../Project/Project.py" line="1333"/>
+        <location filename="../Project/Project.py" line="1579"/>
+        <location filename="../Project/Project.py" line="1553"/>
+        <location filename="../Project/Project.py" line="1517"/>
+        <location filename="../Project/Project.py" line="1435"/>
+        <location filename="../Project/Project.py" line="1396"/>
+        <location filename="../Project/Project.py" line="1371"/>
+        <location filename="../Project/Project.py" line="1334"/>
         <source>Please save the project first.</source>
         <translation>Bitte speichern Sie zuerst das Projekt.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1369"/>
+        <location filename="../Project/Project.py" line="1370"/>
         <source>Save Project Session</source>
         <translation>Projektsitzung speichern</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1411"/>
-        <location filename="../Project/Project.py" line="1394"/>
+        <location filename="../Project/Project.py" line="1412"/>
+        <location filename="../Project/Project.py" line="1395"/>
         <source>Delete Project Session</source>
         <translation>Projektsitzung löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1401"/>
+        <location filename="../Project/Project.py" line="1402"/>
         <source>Delete Remote Project Session</source>
         <translation>Entfernte Projektsitzung löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1420"/>
+        <location filename="../Project/Project.py" line="1421"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Projektsitzungsdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1433"/>
+        <location filename="../Project/Project.py" line="1434"/>
         <source>Read Tasks</source>
         <translation>Aufgaben lesen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1515"/>
+        <location filename="../Project/Project.py" line="1516"/>
         <source>Read Debugger Properties</source>
         <translation>Debugger-Eigenschaften lesen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1551"/>
+        <location filename="../Project/Project.py" line="1552"/>
         <source>Save Debugger Properties</source>
         <translation>Debugger-Eigenschaften speichern</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1594"/>
-        <location filename="../Project/Project.py" line="1577"/>
+        <location filename="../Project/Project.py" line="1595"/>
+        <location filename="../Project/Project.py" line="1578"/>
         <source>Delete Debugger Properties</source>
         <translation>Debugger-Eigenschaften löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1584"/>
+        <location filename="../Project/Project.py" line="1585"/>
         <source>Delete Remote Debugger Properties</source>
         <translation>Entfernte Debuggereigenschaften löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1603"/>
+        <location filename="../Project/Project.py" line="1604"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei mit den projektspezifischen Debugger-Eigenschaften &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1774"/>
+        <location filename="../Project/Project.py" line="1777"/>
         <source>Add Language</source>
         <translation>Sprache hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1775"/>
+        <location filename="../Project/Project.py" line="1778"/>
         <source>You have to specify a translation pattern first.</source>
         <translation>Sie müssen zuerst ein Übersetzungsmuster festlegen.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1916"/>
+        <location filename="../Project/Project.py" line="1919"/>
         <source>Delete Translation</source>
         <translation>Übersetzung löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1943"/>
-        <location filename="../Project/Project.py" line="1917"/>
+        <location filename="../Project/Project.py" line="1946"/>
+        <location filename="../Project/Project.py" line="1920"/>
         <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die ausgewählte Übersetzungsdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1942"/>
+        <location filename="../Project/Project.py" line="1945"/>
         <source>Delete translation</source>
         <translation>Übersetzung löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2093"/>
-        <location filename="../Project/Project.py" line="2076"/>
+        <location filename="../Project/Project.py" line="2098"/>
+        <location filename="../Project/Project.py" line="2081"/>
         <source>Add File</source>
         <translation>Datei hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2195"/>
-        <location filename="../Project/Project.py" line="2077"/>
+        <location filename="../Project/Project.py" line="2200"/>
+        <location filename="../Project/Project.py" line="2082"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;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="../Project/Project.py" line="2094"/>
+        <location filename="../Project/Project.py" line="2099"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die ausgewählte Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht zu &lt;b&gt;{1}&lt;/b&gt; hinzugefügt werden.&lt;/p&gt;&lt;p&gt;Ursache: {2}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2106"/>
+        <location filename="../Project/Project.py" line="2111"/>
         <source>Add file</source>
         <translation>Datei hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2289"/>
-        <location filename="../Project/Project.py" line="2107"/>
+        <location filename="../Project/Project.py" line="2296"/>
+        <location filename="../Project/Project.py" line="2112"/>
         <source>The target directory must not be empty.</source>
         <translation>Das Zielverzeichnis darf nicht leer sein.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2194"/>
-        <location filename="../Project/Project.py" line="2167"/>
-        <location filename="../Project/Project.py" line="2147"/>
+        <location filename="../Project/Project.py" line="2199"/>
+        <location filename="../Project/Project.py" line="2172"/>
+        <location filename="../Project/Project.py" line="2152"/>
         <source>Add Directory</source>
         <translation>Verzeichnis hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2148"/>
+        <location filename="../Project/Project.py" line="2153"/>
         <source>&lt;p&gt;The source directory doesn&apos;t contain any files belonging to the selected category.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Quellverzeichnis enthält keine Dateien, die zur gewählten Kategorie gehören.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2168"/>
+        <location filename="../Project/Project.py" line="2173"/>
         <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Zielverzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht erstellt werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2300"/>
-        <location filename="../Project/Project.py" line="2288"/>
+        <location filename="../Project/Project.py" line="2307"/>
+        <location filename="../Project/Project.py" line="2295"/>
         <source>Add directory</source>
         <translation>Verzeichnis hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2301"/>
+        <location filename="../Project/Project.py" line="2308"/>
         <source>The source directory must not be empty.</source>
         <translation>Das Quellverzeichnis darf nicht leer sein.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2415"/>
-        <location filename="../Project/Project.py" line="2397"/>
+        <location filename="../Project/Project.py" line="2422"/>
+        <location filename="../Project/Project.py" line="2404"/>
+        <location filename="../Project/Project.py" line="2388"/>
         <location filename="../Project/Project.py" line="2381"/>
-        <location filename="../Project/Project.py" line="2374"/>
         <source>Rename File</source>
         <translation>Datei umbenennen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="8055"/>
-        <location filename="../Project/Project.py" line="3898"/>
-        <location filename="../Project/Project.py" line="2398"/>
+        <location filename="../Project/Project.py" line="8089"/>
+        <location filename="../Project/Project.py" line="3909"/>
+        <location filename="../Project/Project.py" line="2405"/>
         <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="../Project/Project.py" line="2416"/>
+        <location filename="../Project/Project.py" line="2423"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht umbenannt werden.&lt;br /&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2683"/>
+        <location filename="../Project/Project.py" line="2690"/>
         <source>Delete File</source>
         <translation>Datei löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2691"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die ausgewählte Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2712"/>
+        <location filename="../Project/Project.py" line="2719"/>
         <source>Delete Directory</source>
         <translation>Verzeichnis löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2713"/>
+        <location filename="../Project/Project.py" line="2720"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das ausgewählte Verzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2846"/>
+        <location filename="../Project/Project.py" line="2853"/>
         <source>Create project directory</source>
         <translation>Projektverzeichnis erstellen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2847"/>
+        <location filename="../Project/Project.py" line="2854"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Projektverzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht erstellt werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3671"/>
-        <location filename="../Project/Project.py" line="2947"/>
+        <location filename="../Project/Project.py" line="3682"/>
+        <location filename="../Project/Project.py" line="2954"/>
         <source>Create project management directory</source>
         <translation>Projektverwaltungsverzeichnis erstellen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3672"/>
-        <location filename="../Project/Project.py" line="2948"/>
+        <location filename="../Project/Project.py" line="3683"/>
+        <location filename="../Project/Project.py" line="2955"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Projektverzeichnis &lt;b&gt;{0}&lt;/b&gt; ist nicht beschreibbar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2988"/>
+        <location filename="../Project/Project.py" line="2995"/>
         <source>Create main script</source>
         <translation>Hauptskript erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2989"/>
+        <location filename="../Project/Project.py" line="2996"/>
         <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Hauptskript &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden.&lt;br/&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3454"/>
-        <location filename="../Project/Project.py" line="3013"/>
+        <location filename="../Project/Project.py" line="3463"/>
+        <location filename="../Project/Project.py" line="3020"/>
         <source>Create Makefile</source>
         <translation>Makefile erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3455"/>
-        <location filename="../Project/Project.py" line="3014"/>
+        <location filename="../Project/Project.py" line="3464"/>
+        <location filename="../Project/Project.py" line="3021"/>
         <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die make Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden.&lt;br/&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3701"/>
-        <location filename="../Project/Project.py" line="3164"/>
-        <location filename="../Project/Project.py" line="3135"/>
-        <location filename="../Project/Project.py" line="3103"/>
-        <location filename="../Project/Project.py" line="3087"/>
-        <location filename="../Project/Project.py" line="3062"/>
-        <location filename="../Project/Project.py" line="3024"/>
+        <location filename="../Project/Project.py" line="3712"/>
+        <location filename="../Project/Project.py" line="3173"/>
+        <location filename="../Project/Project.py" line="3144"/>
+        <location filename="../Project/Project.py" line="3112"/>
+        <location filename="../Project/Project.py" line="3094"/>
+        <location filename="../Project/Project.py" line="3069"/>
+        <location filename="../Project/Project.py" line="3031"/>
         <source>New Project</source>
         <translation>Neues Projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3025"/>
+        <location filename="../Project/Project.py" line="3032"/>
         <source>Add existing files to the project?</source>
         <translation>Existierende Dateien dem Projekt hinzufügen?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3702"/>
-        <location filename="../Project/Project.py" line="3063"/>
+        <location filename="../Project/Project.py" line="3713"/>
+        <location filename="../Project/Project.py" line="3070"/>
         <source>Select Version Control System</source>
         <translation>Versionskontrollsystem auswählen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3165"/>
-        <location filename="../Project/Project.py" line="3088"/>
+        <location filename="../Project/Project.py" line="3174"/>
+        <location filename="../Project/Project.py" line="3095"/>
         <source>Would you like to edit the VCS command options?</source>
         <translation>Möchten Sie die VCS-Befehlsoptionen bearbeiten?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3104"/>
+        <location filename="../Project/Project.py" line="3113"/>
         <source>Shall the project file be added to the repository?</source>
         <translation>Soll die Projektdatei zum Repository hinzugefügt werden?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3141"/>
-        <location filename="../Project/Project.py" line="3130"/>
+        <location filename="../Project/Project.py" line="3150"/>
+        <location filename="../Project/Project.py" line="3139"/>
         <source>None</source>
         <translation>Keines</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3136"/>
+        <location filename="../Project/Project.py" line="3145"/>
         <source>Select version control system for the project</source>
         <translation>Wähle das Versionskontrollsystem für das Projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3347"/>
+        <location filename="../Project/Project.py" line="3356"/>
         <source>Translation Pattern</source>
         <translation>Übersetzungsmuster</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3357"/>
         <source>Enter the path pattern for translation files (use &apos;%language%&apos; in place of the language code):</source>
         <translation>Gib das Pfadmuster für Übersetzungsdateien ein (benutze „%language%“ anstelle des Sprachcodes):</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3650"/>
+        <location filename="../Project/Project.py" line="3661"/>
         <source>Open Project</source>
         <translation>Projekt öffnen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="8041"/>
-        <location filename="../Project/Project.py" line="8035"/>
-        <location filename="../Project/Project.py" line="8025"/>
-        <location filename="../Project/Project.py" line="3883"/>
-        <location filename="../Project/Project.py" line="3873"/>
-        <location filename="../Project/Project.py" line="3652"/>
+        <location filename="../Project/Project.py" line="8075"/>
+        <location filename="../Project/Project.py" line="8069"/>
+        <location filename="../Project/Project.py" line="8059"/>
+        <location filename="../Project/Project.py" line="3894"/>
+        <location filename="../Project/Project.py" line="3884"/>
+        <location filename="../Project/Project.py" line="3663"/>
         <source>Project Files (*.epj)</source>
         <translation>Projektdateien (*.epj)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3897"/>
-        <location filename="../Project/Project.py" line="3881"/>
+        <location filename="../Project/Project.py" line="3908"/>
+        <location filename="../Project/Project.py" line="3892"/>
         <source>Save Project</source>
         <translation>Projekt speichern</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3936"/>
+        <location filename="../Project/Project.py" line="3947"/>
         <source>Close Project</source>
         <translation>Projekt schließen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3937"/>
+        <location filename="../Project/Project.py" line="3948"/>
         <source>The current project has unsaved changes.</source>
         <translation>Das aktuelle Projekt hat ungesicherte Änderungen.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4137"/>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4148"/>
+        <location filename="../Project/Project.py" line="4112"/>
         <source>Syntax Errors Detected</source>
         <translation>Syntaxfehler gefunden</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Project/Project.py" line="4138"/>
-        <location filename="../Project/Project.py" line="4102"/>
+        <location filename="../Project/Project.py" line="4149"/>
+        <location filename="../Project/Project.py" line="4113"/>
         <source>The project contains %n file(s) with syntax errors.</source>
         <translation>
             <numerusform>Das Projekt beinhaltet eine Datei mit Syntaxfehlern.</numerusform>
@@ -63226,1268 +63241,1268 @@
         </translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4796"/>
+        <location filename="../Project/Project.py" line="4807"/>
         <source>New project</source>
         <translation>Neues Projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4798"/>
+        <location filename="../Project/Project.py" line="4809"/>
         <source>&amp;New...</source>
         <translation>&amp;Neu...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4804"/>
+        <location filename="../Project/Project.py" line="4815"/>
         <source>Generate a new project</source>
         <translation>Erstelle ein neues Projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4806"/>
+        <location filename="../Project/Project.py" line="4817"/>
         <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neu...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Eingabe der Informationen des neuen Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4816"/>
+        <location filename="../Project/Project.py" line="4827"/>
         <source>Open project</source>
         <translation>Projekt öffnen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4818"/>
+        <location filename="../Project/Project.py" line="4829"/>
         <source>&amp;Open...</source>
         <translation>&amp;Öffnen...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4824"/>
+        <location filename="../Project/Project.py" line="4835"/>
         <source>Open an existing project</source>
         <translation>Öffnet ein bestehendes Projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4826"/>
+        <location filename="../Project/Project.py" line="4837"/>
         <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Öffnen...&lt;/b&gt;&lt;p&gt;Dies öffnet ein bestehendes Projekt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4832"/>
+        <location filename="../Project/Project.py" line="4843"/>
         <source>Open remote project</source>
         <translation>Entferntes Projekt öffnen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4834"/>
+        <location filename="../Project/Project.py" line="4845"/>
         <source>Open (Remote)...</source>
         <translation>Öffnen (entfernt)...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4840"/>
-        <source>Open an existing remote project</source>
-        <translation>Öffne ein bestehendes entferntes Projekt</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4842"/>
-        <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Öffnen (entfernt)...&lt;/b&gt;&lt;p&gt;Dies öffnet ein bestehendes entferntes Projekt.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4851"/>
-        <source>Reload project</source>
-        <translation>Projekt erneut laden</translation>
+        <source>Open an existing remote project</source>
+        <translation>Öffne ein bestehendes entferntes Projekt</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="4853"/>
+        <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Öffnen (entfernt)...&lt;/b&gt;&lt;p&gt;Dies öffnet ein bestehendes entferntes Projekt.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4862"/>
+        <source>Reload project</source>
+        <translation>Projekt erneut laden</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4864"/>
         <source>Re&amp;load</source>
         <translation>Erneut &amp;laden</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4859"/>
+        <location filename="../Project/Project.py" line="4870"/>
         <source>Reload the current project</source>
         <translation>Das aktuelle Projekt erneut laden</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4861"/>
+        <location filename="../Project/Project.py" line="4872"/>
         <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Erneut laden&lt;/b&gt;&lt;p&gt;Dies lädt das Projekt erneut.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4867"/>
+        <location filename="../Project/Project.py" line="4878"/>
         <source>Close project</source>
         <translation>Projekt schließen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4869"/>
+        <location filename="../Project/Project.py" line="4880"/>
         <source>&amp;Close</source>
         <translation>Schl&amp;ießen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4875"/>
+        <location filename="../Project/Project.py" line="4886"/>
         <source>Close the current project</source>
         <translation>Schließt das aktuelle Projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4877"/>
+        <location filename="../Project/Project.py" line="4888"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Schließen&lt;/b&gt;&lt;p&gt;Dies schließt das aktuelle Projekt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4883"/>
+        <location filename="../Project/Project.py" line="4894"/>
         <source>Save project</source>
         <translation>Projekt speichern</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5180"/>
-        <location filename="../Project/Project.py" line="4885"/>
+        <location filename="../Project/Project.py" line="5191"/>
+        <location filename="../Project/Project.py" line="4896"/>
         <source>&amp;Save</source>
         <translation>&amp;Speichern</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4891"/>
+        <location filename="../Project/Project.py" line="4902"/>
         <source>Save the current project</source>
         <translation>Speichert das aktuelle Projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4893"/>
+        <location filename="../Project/Project.py" line="4904"/>
         <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Speichern&lt;/b&gt;&lt;p&gt;Dies speichert das aktuelle Projekt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4899"/>
+        <location filename="../Project/Project.py" line="4910"/>
         <source>Save project as</source>
         <translation>Projekt speichern unter</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4901"/>
+        <location filename="../Project/Project.py" line="4912"/>
         <source>Save &amp;as...</source>
         <translation>Speichern &amp;unter...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4907"/>
-        <source>Save the current project to a new file</source>
-        <translation>Speichert das aktuelle Projekt in eine neue Datei</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4909"/>
-        <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Speichern unter&lt;/b&gt;&lt;p&gt;Dies speichert das aktuelle Projekt in eine neue Datei.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4918"/>
-        <source>Save project as (Remote)</source>
-        <translation>Projekt speichern unter (entfernt)</translation>
+        <source>Save the current project to a new file</source>
+        <translation>Speichert das aktuelle Projekt in eine neue Datei</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="4920"/>
+        <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Speichern unter&lt;/b&gt;&lt;p&gt;Dies speichert das aktuelle Projekt in eine neue Datei.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4929"/>
+        <source>Save project as (Remote)</source>
+        <translation>Projekt speichern unter (entfernt)</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4931"/>
         <source>Save as (Remote)...</source>
         <translation>Speichern unter (entfernt)...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4927"/>
+        <location filename="../Project/Project.py" line="4938"/>
         <source>Save the current project to a new remote file</source>
         <translation>Speichert das aktuelle Projekt in eine neue entfernte Datei</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4930"/>
+        <location filename="../Project/Project.py" line="4941"/>
         <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Speichern unter (entfernt)&lt;/b&gt;&lt;p&gt;Dies speichert das aktuelle Projekt in eine neue entfernte Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4946"/>
+        <location filename="../Project/Project.py" line="4957"/>
         <source>Add files to project</source>
         <translation>Dateien zum Projekt hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4948"/>
+        <location filename="../Project/Project.py" line="4959"/>
         <source>Add &amp;files...</source>
         <translation>&amp;Dateien hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4954"/>
+        <location filename="../Project/Project.py" line="4965"/>
         <source>Add files to the current project</source>
         <translation>Fügt Dateien zum aktuellen Projekt hinzu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4956"/>
-        <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Dateien hinzufügen...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, mit dem Dateien zum aktuellen Projekt hinzugefügt werden kann. Der Ort, an dem sie eingefügt werden, wird durch die Dateinamenerweiterung bestimmt.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4967"/>
+        <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Dateien hinzufügen...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, mit dem Dateien zum aktuellen Projekt hinzugefügt werden kann. Der Ort, an dem sie eingefügt werden, wird durch die Dateinamenerweiterung bestimmt.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4978"/>
         <source>Add directory to project</source>
         <translation>Verzeichnis zum Projekt hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4969"/>
+        <location filename="../Project/Project.py" line="4980"/>
         <source>Add directory...</source>
         <translation>Verzeichnis hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4976"/>
+        <location filename="../Project/Project.py" line="4987"/>
         <source>Add a directory to the current project</source>
         <translation>Füge den Inhalt eines Verzeichnisses zum Projekt hinzu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4979"/>
+        <location filename="../Project/Project.py" line="4990"/>
         <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Verzeichnis hinzufügen&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, mit dem ein Verzeichnis bzw. der Inhalt eines Verzeichnisses zum aktuellen Projekt hinzugefügt werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4989"/>
+        <location filename="../Project/Project.py" line="5000"/>
         <source>Add translation to project</source>
         <translation>Übersetzung zum Projekt hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4991"/>
+        <location filename="../Project/Project.py" line="5002"/>
         <source>Add &amp;translation...</source>
         <translation>&amp;Übersetzung hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4998"/>
+        <location filename="../Project/Project.py" line="5009"/>
         <source>Add a translation to the current project</source>
         <translation>Eine Übersetzung zum aktuellen Projekt hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5001"/>
-        <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Übersetzung hinzufügen...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, mit dem eine Übersetzung zum aktuellen Projekt hinzugefügt werden kann.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5011"/>
-        <source>Search new files</source>
-        <translation>Neue Dateien suchen</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="5012"/>
+        <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Übersetzung hinzufügen...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, mit dem eine Übersetzung zum aktuellen Projekt hinzugefügt werden kann.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5022"/>
+        <source>Search new files</source>
+        <translation>Neue Dateien suchen</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5023"/>
         <source>Searc&amp;h new files...</source>
         <translation>Neue &amp;Dateien suchen...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5018"/>
+        <location filename="../Project/Project.py" line="5029"/>
         <source>Search new files in the project directory.</source>
         <translation>Sucht neue Dateien im Projektverzeichnis.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5020"/>
-        <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Neue Dateien suchen...&lt;/b&gt;&lt;p&gt;Dies sucht im Projektverzeichnis und in registrierten Unterverzeichnissen nach neuen Dateien (Quellen, Formulare, ...).&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5030"/>
-        <source>Search Project File</source>
-        <translation>Projektdatei suchen</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="5031"/>
+        <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Neue Dateien suchen...&lt;/b&gt;&lt;p&gt;Dies sucht im Projektverzeichnis und in registrierten Unterverzeichnissen nach neuen Dateien (Quellen, Formulare, ...).&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5041"/>
+        <source>Search Project File</source>
+        <translation>Projektdatei suchen</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5042"/>
         <source>Search Project File...</source>
         <translation>Projektdatei suchen...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5032"/>
+        <location filename="../Project/Project.py" line="5043"/>
         <source>Alt+Ctrl+P</source>
         <comment>Project|Search Project File</comment>
         <translation>Alt+Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5037"/>
-        <source>Search for a file in the project list of files.</source>
-        <translation>Suche nach einer Datei in der Liste der Projektdateien.</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5039"/>
-        <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Projektdatei suchen&lt;/b&gt;&lt;p&gt;Dies sucht nach einer Datei in der Liste der Projektdateien.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="5048"/>
-        <source>Project properties</source>
-        <translation>Projekteigenschaften</translation>
+        <source>Search for a file in the project list of files.</source>
+        <translation>Suche nach einer Datei in der Liste der Projektdateien.</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="5050"/>
+        <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Projektdatei suchen&lt;/b&gt;&lt;p&gt;Dies sucht nach einer Datei in der Liste der Projektdateien.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5059"/>
+        <source>Project properties</source>
+        <translation>Projekteigenschaften</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5061"/>
         <source>&amp;Properties...</source>
         <translation>&amp;Eigenschaften...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5056"/>
-        <source>Show the project properties</source>
-        <translation>Zeigt die Projekteigenschaften an</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5058"/>
-        <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Eigenschaften...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog an, mit dem die Projekteigenschaften bearbeitet werden können.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="5067"/>
-        <source>User project properties</source>
-        <translation>Nutzer bezogene Projektdaten</translation>
+        <source>Show the project properties</source>
+        <translation>Zeigt die Projekteigenschaften an</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="5069"/>
+        <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Eigenschaften...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog an, mit dem die Projekteigenschaften bearbeitet werden können.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5078"/>
+        <source>User project properties</source>
+        <translation>Nutzer bezogene Projektdaten</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5080"/>
         <source>&amp;User Properties...</source>
         <translation>&amp;Nutzer bezogene Projektdaten...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5076"/>
+        <location filename="../Project/Project.py" line="5087"/>
         <source>Show the user specific project properties</source>
         <translation>Zeigt die Nutzer bezogenen Projektdaten an</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5079"/>
-        <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Nutzer bezogene Projektdaten...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog an, um Nutzer bezogene Projektdaten zu bearbeiten.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5089"/>
-        <source>Filetype Associations</source>
-        <translation>Dateitypzuordnungen</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="5090"/>
-        <source>Filetype Associations...</source>
-        <translation>Dateitypzuordnungen...</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5097"/>
-        <source>Show the project file type associations</source>
-        <translation>Zeigt die Dateitypzuordnungen des Projektes</translation>
+        <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Nutzer bezogene Projektdaten...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog an, um Nutzer bezogene Projektdaten zu bearbeiten.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="5100"/>
+        <source>Filetype Associations</source>
+        <translation>Dateitypzuordnungen</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5101"/>
+        <source>Filetype Associations...</source>
+        <translation>Dateitypzuordnungen...</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5108"/>
+        <source>Show the project file type associations</source>
+        <translation>Zeigt die Dateitypzuordnungen des Projektes</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5111"/>
         <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dateitypzuordnungen...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Eingabe der Dateitypzuordnungen des Projektes. Diese Zuordnungen bestimmen den Typ (Quellen, Formulare, Schnittstellen, Protokolle oder Sonstige) über ein Dateinamenmuster. Sie werden genutzt, wenn eine Datei zum Projekt hinzugefügt oder wenn nach neuen Dateien gesucht wird.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5113"/>
-        <source>Lexer Associations</source>
-        <translation>Lexerzuordnungen</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5114"/>
-        <source>Lexer Associations...</source>
-        <translation>Lexerzuordnungen...</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5121"/>
-        <source>Show the project lexer associations (overriding defaults)</source>
-        <translation>Zeigt die projektspezifischen Lexerzuordnungen</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="5124"/>
+        <source>Lexer Associations</source>
+        <translation>Lexerzuordnungen</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5125"/>
+        <source>Lexer Associations...</source>
+        <translation>Lexerzuordnungen...</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5132"/>
+        <source>Show the project lexer associations (overriding defaults)</source>
+        <translation>Zeigt die projektspezifischen Lexerzuordnungen</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5135"/>
         <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lexerzuordnungen&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, um die projektspezifischen Lexerzuordnungen zu bearbeiten. Diese Zuordnungen überschreiben die globalen Lexerzuordnungen. Lexer werden verwendet, um den Editortext einzufärben.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5142"/>
+        <location filename="../Project/Project.py" line="5153"/>
         <source>Debugger Properties</source>
         <translation>Debugger-Eigenschaften</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5143"/>
+        <location filename="../Project/Project.py" line="5154"/>
         <source>Debugger &amp;Properties...</source>
         <translation>Debugger-&amp;Eigenschaften...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5149"/>
+        <location filename="../Project/Project.py" line="5160"/>
         <source>Show the debugger properties</source>
         <translation>Debugger-Eigenschaften anzeigen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5151"/>
-        <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Debugger-Eigenschaften...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog an, um die projektspezifischen Debugger-Einstellungen zu bearbeiten.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5161"/>
-        <source>Load</source>
-        <translation>Laden</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="5162"/>
+        <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Debugger-Eigenschaften...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog an, um die projektspezifischen Debugger-Einstellungen zu bearbeiten.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5172"/>
+        <source>Load</source>
+        <translation>Laden</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5173"/>
         <source>&amp;Load</source>
         <translation>&amp;Laden</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5168"/>
-        <source>Load the debugger properties</source>
-        <translation>Debugger-Eigenschaften laden</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5170"/>
-        <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Debugger-Eigenschaften laden&lt;/b&gt;&lt;p&gt;Dies lädt die projektspezifischen Debugger-Einstellungen.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="5179"/>
+        <source>Load the debugger properties</source>
+        <translation>Debugger-Eigenschaften laden</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5181"/>
+        <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Debugger-Eigenschaften laden&lt;/b&gt;&lt;p&gt;Dies lädt die projektspezifischen Debugger-Einstellungen.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5190"/>
         <source>Save</source>
         <translation>Speichern</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5186"/>
-        <source>Save the debugger properties</source>
-        <translation>Debugger-Eigenschaften speichern</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5188"/>
-        <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Debugger-Eigenschaften speichern&lt;/b&gt;&lt;p&gt;Dies speichert die projektspezifischen Debugger-Einstellungen.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="5197"/>
+        <source>Save the debugger properties</source>
+        <translation>Debugger-Eigenschaften speichern</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5199"/>
+        <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Debugger-Eigenschaften speichern&lt;/b&gt;&lt;p&gt;Dies speichert die projektspezifischen Debugger-Einstellungen.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5208"/>
         <source>Delete</source>
         <translation>Löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5198"/>
+        <location filename="../Project/Project.py" line="5209"/>
         <source>&amp;Delete</source>
         <translation>&amp;Löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5204"/>
+        <location filename="../Project/Project.py" line="5215"/>
         <source>Delete the debugger properties</source>
         <translation>Debugger-Eigenschaften löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5206"/>
-        <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Debugger-Eigenschaften löschen&lt;/b&gt;&lt;p&gt;Dies löscht die Datei mit den projektspezifischen Debugger-Einstellungen.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5216"/>
-        <source>Reset</source>
-        <translation>Zurücksetzen</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="5217"/>
+        <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Debugger-Eigenschaften löschen&lt;/b&gt;&lt;p&gt;Dies löscht die Datei mit den projektspezifischen Debugger-Einstellungen.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5227"/>
+        <source>Reset</source>
+        <translation>Zurücksetzen</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5228"/>
         <source>&amp;Reset</source>
         <translation>&amp;Zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5223"/>
+        <location filename="../Project/Project.py" line="5234"/>
         <source>Reset the debugger properties</source>
         <translation>Debugger-Eigenschaften zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5225"/>
+        <location filename="../Project/Project.py" line="5236"/>
         <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Debugger-Eigenschaften zurücksetzen&lt;/b&gt;&lt;p&gt;Dies setzt die projektspezifischen Debugger-Einstellungen zurück.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5241"/>
-        <location filename="../Project/Project.py" line="5240"/>
+        <location filename="../Project/Project.py" line="5252"/>
+        <location filename="../Project/Project.py" line="5251"/>
         <source>Load session</source>
         <translation>Sitzung laden</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5247"/>
+        <location filename="../Project/Project.py" line="5258"/>
         <source>Load the projects session file.</source>
         <translation>Laden der Projektsitzung.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5249"/>
+        <location filename="../Project/Project.py" line="5260"/>
         <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sitzung laden&lt;/b&gt;&lt;p&gt;Dies lädt eine Projektsitzungsdatei. Die Sitzung enthält die folgenden Daten.&lt;br&gt;- alle offenen Quelltextdateien&lt;br&gt;- alle Haltepunkte&lt;br&gt;- die Kommandozeilenparameter&lt;br&gt;- das Arbeitsverzeichnis&lt;br&gt;- das Ausnahmemeldungsflag&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5265"/>
-        <location filename="../Project/Project.py" line="5264"/>
+        <location filename="../Project/Project.py" line="5276"/>
+        <location filename="../Project/Project.py" line="5275"/>
         <source>Save session</source>
         <translation>Sitzung speichern</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5271"/>
+        <location filename="../Project/Project.py" line="5282"/>
         <source>Save the projects session file.</source>
         <translation>Speichern der Projektsitzung.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5273"/>
+        <location filename="../Project/Project.py" line="5284"/>
         <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sitzung speichern&lt;/b&gt;&lt;p&gt;Dies speichert eine Projektsitzungsdatei. Die Sitzung enthält die folgenden Daten.&lt;br&gt;- alle offenen Quelltextdateien&lt;br&gt;- alle Haltepunkte&lt;br&gt;- die Kommandozeilenparameter&lt;br&gt;- das Arbeitsverzeichnis&lt;br&gt;- das Ausnahmemeldungsflag&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5289"/>
-        <location filename="../Project/Project.py" line="5288"/>
+        <location filename="../Project/Project.py" line="5300"/>
+        <location filename="../Project/Project.py" line="5299"/>
         <source>Delete session</source>
         <translation>Sitzung löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5295"/>
+        <location filename="../Project/Project.py" line="5306"/>
         <source>Delete the projects session file.</source>
         <translation>Löscht die Projektsitzungsdatei.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5297"/>
+        <location filename="../Project/Project.py" line="5308"/>
         <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sitzung löschen&lt;/b&gt;&lt;p&gt;Dies löscht die Sitzungsdatei des Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5312"/>
-        <source>Code Metrics</source>
-        <translation>Quelltextmetriken</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5313"/>
-        <source>&amp;Code Metrics...</source>
-        <translation>&amp;Quelltextmetriken...</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5320"/>
-        <source>Show some code metrics for the project.</source>
-        <translation>Zeige einige Quelltextmetriken für das Projekt.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="5323"/>
-        <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Quelltextmetriken...&lt;/b&gt;&lt;p&gt;Dies zeigt einige Quelltextmetriken für alle Python-Dateien des Projektes.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5333"/>
-        <source>Python Code Coverage</source>
-        <translation>Python-Quelltext-Abdeckung</translation>
+        <source>Code Metrics</source>
+        <translation>Quelltextmetriken</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5324"/>
+        <source>&amp;Code Metrics...</source>
+        <translation>&amp;Quelltextmetriken...</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5331"/>
+        <source>Show some code metrics for the project.</source>
+        <translation>Zeige einige Quelltextmetriken für das Projekt.</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="5334"/>
-        <source>Code Co&amp;verage...</source>
-        <translation>&amp;Quelltext Abdeckung...</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5341"/>
-        <source>Show code coverage information for the project.</source>
-        <translation>Zeige die Quelltextabdeckung für das Projekt.</translation>
+        <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Quelltextmetriken...&lt;/b&gt;&lt;p&gt;Dies zeigt einige Quelltextmetriken für alle Python-Dateien des Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="5344"/>
-        <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Quelltext Abdeckung...&lt;/b&gt;&lt;p&gt;Dies zeigt die Quelltextabdeckung für alle Python-Dateien des Projektes an.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="6778"/>
-        <location filename="../Project/Project.py" line="6765"/>
-        <location filename="../Project/Project.py" line="5354"/>
-        <source>Profile Data</source>
-        <translation>Profildaten</translation>
+        <source>Python Code Coverage</source>
+        <translation>Python-Quelltext-Abdeckung</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5345"/>
+        <source>Code Co&amp;verage...</source>
+        <translation>&amp;Quelltext Abdeckung...</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5352"/>
+        <source>Show code coverage information for the project.</source>
+        <translation>Zeige die Quelltextabdeckung für das Projekt.</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="5355"/>
+        <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Quelltext Abdeckung...&lt;/b&gt;&lt;p&gt;Dies zeigt die Quelltextabdeckung für alle Python-Dateien des Projektes an.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="6789"/>
+        <location filename="../Project/Project.py" line="6776"/>
+        <location filename="../Project/Project.py" line="5365"/>
+        <source>Profile Data</source>
+        <translation>Profildaten</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5366"/>
         <source>&amp;Profile Data...</source>
         <translation>&amp;Profildaten...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5362"/>
+        <location filename="../Project/Project.py" line="5373"/>
         <source>Show profiling data for the project.</source>
         <translation>Zeige Profildaten des aktuellen Projektes.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5365"/>
+        <location filename="../Project/Project.py" line="5376"/>
         <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profildaten...&lt;/b&gt;&lt;p&gt;Dies zeigt die Profildaten des Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6830"/>
-        <location filename="../Project/Project.py" line="5380"/>
+        <location filename="../Project/Project.py" line="6841"/>
+        <location filename="../Project/Project.py" line="5391"/>
         <source>Application Diagram</source>
         <translation>Applikations-Diagramm</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5381"/>
+        <location filename="../Project/Project.py" line="5392"/>
         <source>&amp;Application Diagram...</source>
         <translation>&amp;Applikations-Diagramm...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5388"/>
+        <location filename="../Project/Project.py" line="5399"/>
         <source>Show a diagram of the project.</source>
         <translation>Zeigt ein Diagramm des Projektes.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5391"/>
+        <location filename="../Project/Project.py" line="5402"/>
         <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Applikations-Diagramm...&lt;/b&gt;&lt;p&gt;Dies zeigt ein Diagramm des Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5400"/>
+        <location filename="../Project/Project.py" line="5411"/>
         <source>Load Diagram</source>
         <translation>Diagramm laden</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5401"/>
+        <location filename="../Project/Project.py" line="5412"/>
         <source>&amp;Load Diagram...</source>
         <translation>Diagramm &amp;laden...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5407"/>
+        <location filename="../Project/Project.py" line="5418"/>
         <source>Load a diagram from file.</source>
         <translation>Lade ein Diagramm aus einer Datei.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5409"/>
+        <location filename="../Project/Project.py" line="5420"/>
         <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Diagramm laden...&lt;/b&gt;&lt;p&gt;Dies lädt ein Diagramm aus einer Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6998"/>
-        <location filename="../Project/Project.py" line="6943"/>
-        <location filename="../Project/Project.py" line="5424"/>
+        <location filename="../Project/Project.py" line="7009"/>
+        <location filename="../Project/Project.py" line="6954"/>
+        <location filename="../Project/Project.py" line="5435"/>
         <source>Create Package List</source>
         <translation>Erzeuge Paketliste</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5426"/>
+        <location filename="../Project/Project.py" line="5437"/>
         <source>Create &amp;Package List</source>
         <translation>Erzeuge &amp;Paketliste</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5433"/>
+        <location filename="../Project/Project.py" line="5444"/>
         <source>Create an initial PKGLIST file for an eric plugin.</source>
         <translation>Erzeugt eine erste PKGLIST-Datei für ein eric Plugin.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5436"/>
+        <location filename="../Project/Project.py" line="5447"/>
         <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Erzeuge Paketliste&lt;/b&gt;&lt;p&gt;Dies erzeugt eine erste Liste von Dateien, die in ein eric Pluginarchive einbezogen werden sollen. Die Liste wird aus der Projektdatei erzeugt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7068"/>
-        <location filename="../Project/Project.py" line="5447"/>
+        <location filename="../Project/Project.py" line="7080"/>
+        <location filename="../Project/Project.py" line="5458"/>
         <source>Create Plugin Archives</source>
         <translation>Erzeuge Plugin Archive</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5449"/>
+        <location filename="../Project/Project.py" line="5460"/>
         <source>Create Plugin &amp;Archives</source>
         <translation>Erzeuge Plugin &amp;Archive</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5455"/>
+        <location filename="../Project/Project.py" line="5466"/>
         <source>Create eric plugin archive files.</source>
         <translation>Erzeugt eric Plugin Archivdateien.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5457"/>
+        <location filename="../Project/Project.py" line="5468"/>
         <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Erzeuge Plugin Archive&lt;/b&gt;&lt;p&gt;Dies erzeugt eric Plugin Archivdateien mit den Dateien, die in einer PKGLIST*-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert, falls er nicht in der Paketlistendatei angegeben ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5469"/>
+        <location filename="../Project/Project.py" line="5480"/>
         <source>Create Plugin Archives (Snapshot)</source>
         <translation>Erzeuge Plugin Archive (Snapshot)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5471"/>
+        <location filename="../Project/Project.py" line="5482"/>
         <source>Create Plugin Archives (&amp;Snapshot)</source>
         <translation>Erzeuge Plugin Archive (&amp;Snapshot)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5478"/>
+        <location filename="../Project/Project.py" line="5489"/>
         <source>Create eric plugin archive files (snapshot releases).</source>
         <translation>Erzeugt eric Plugin Archivdateien (Snapshot Releases).</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5481"/>
+        <location filename="../Project/Project.py" line="5492"/>
         <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Erzeuge Plugin Archive (Snapshot)&lt;/b&gt;&lt;p&gt;Dies erzeugt eric Plugin Archivdateien mit den Dateien, die in der PKGLIST*-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert, falls er nicht in der Paketlistendatei angegeben ist. Der Versionseintrag des Hauptskriptes wird verändert, um ein Snapshot Release anzuzeigen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7510"/>
-        <location filename="../Project/Project.py" line="7481"/>
-        <location filename="../Project/Project.py" line="7435"/>
-        <location filename="../Project/Project.py" line="7387"/>
-        <location filename="../Project/Project.py" line="5500"/>
+        <location filename="../Project/Project.py" line="7536"/>
+        <location filename="../Project/Project.py" line="7507"/>
+        <location filename="../Project/Project.py" line="7461"/>
+        <location filename="../Project/Project.py" line="7413"/>
+        <location filename="../Project/Project.py" line="5511"/>
         <source>Execute Make</source>
         <translation>Make ausführen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5501"/>
+        <location filename="../Project/Project.py" line="5512"/>
         <source>&amp;Execute Make</source>
         <translation>&amp;Make ausführen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5507"/>
+        <location filename="../Project/Project.py" line="5518"/>
         <source>Perform a &apos;make&apos; run.</source>
         <translation>Führt eine &apos;make&apos; Lauf aus.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5509"/>
-        <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a &apos;make&apos; run to rebuild the configured target.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Make ausführen&lt;/b&gt;&lt;p&gt;Die führt einen &apos;make&apos; Lauf aus, um das konfigurierte Ziel zu bauen.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="7487"/>
-        <location filename="../Project/Project.py" line="5519"/>
-        <source>Test for Changes</source>
-        <translation>Auf Änderungen prüfen</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="5520"/>
+        <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a &apos;make&apos; run to rebuild the configured target.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Make ausführen&lt;/b&gt;&lt;p&gt;Die führt einen &apos;make&apos; Lauf aus, um das konfigurierte Ziel zu bauen.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="7513"/>
+        <location filename="../Project/Project.py" line="5530"/>
+        <source>Test for Changes</source>
+        <translation>Auf Änderungen prüfen</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5531"/>
         <source>&amp;Test for Changes</source>
         <translation>Auf Änderungen &amp;prüfen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5527"/>
+        <location filename="../Project/Project.py" line="5538"/>
         <source>Question &apos;make&apos;, if a rebuild is needed.</source>
         <translation>Fragt &apos;make&apos;, ob ein Neubau erforderlich ist.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5530"/>
+        <location filename="../Project/Project.py" line="5541"/>
         <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions &apos;make&apos;, if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Auf Änderungen prüfen&lt;/b&gt;&lt;p&gt;Dies fragt &apos;make&apos;, ob ein Neubau des konfigurierten Zieles erforderlich ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5548"/>
-        <source>Create SBOM File</source>
-        <translation>STL Datei erzeugen</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5549"/>
-        <source>Create &amp;SBOM File</source>
-        <translation>&amp;STL Datei erzeugen</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5556"/>
-        <source>Create a SBOM file of the project dependencies.</source>
-        <translation>Erzeuge eine STL Datei der Projektabhängigkeiten.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="5559"/>
-        <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;STL Datei erzeugen&lt;/b&gt;&lt;p&gt;Dies erlaubt die Erstellung einer STL Datei der Projektabhängigkeiten. Dies kann auf verschiedenen Eingaben aufgebaut werden und wird in eine CycloneDX STL Datei gesichert.&lt;/p&gt;</translation>
+        <source>Create SBOM File</source>
+        <translation>STL Datei erzeugen</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5560"/>
+        <source>Create &amp;SBOM File</source>
+        <translation>&amp;STL Datei erzeugen</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5567"/>
+        <source>Create a SBOM file of the project dependencies.</source>
+        <translation>Erzeuge eine STL Datei der Projektabhängigkeiten.</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="5570"/>
-        <source>Clear Byte Code Caches</source>
-        <translation>Byte Code Caches löschen</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5571"/>
-        <source>Clear Byte Code &amp;Caches</source>
-        <translation>Byte Code &amp;Caches löschen</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5578"/>
-        <source>Clear the byte code caches of the project.</source>
-        <translation>Löscht die Byte Code Caches des Projektes.</translation>
+        <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;STL Datei erzeugen&lt;/b&gt;&lt;p&gt;Dies erlaubt die Erstellung einer STL Datei der Projektabhängigkeiten. Dies kann auf verschiedenen Eingaben aufgebaut werden und wird in eine CycloneDX STL Datei gesichert.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="5581"/>
+        <source>Clear Byte Code Caches</source>
+        <translation>Byte Code Caches löschen</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5582"/>
+        <source>Clear Byte Code &amp;Caches</source>
+        <translation>Byte Code &amp;Caches löschen</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5589"/>
+        <source>Clear the byte code caches of the project.</source>
+        <translation>Löscht die Byte Code Caches des Projektes.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5592"/>
         <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Byte Code Caches löschen&lt;/b&gt;&lt;p&gt;Dies löscht alle Verzeichnisse mit Byte Code Cachedateien.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5597"/>
+        <location filename="../Project/Project.py" line="5608"/>
         <source>About Black</source>
         <translation>Über Black</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5598"/>
+        <location filename="../Project/Project.py" line="5609"/>
         <source>&amp;Black</source>
         <translation>&amp;Black</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5604"/>
+        <location filename="../Project/Project.py" line="5615"/>
         <source>Show some information about &apos;Black&apos;.</source>
         <translation>Gibt ein paar Informationen zu &apos;Black&apos; aus.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5606"/>
+        <location filename="../Project/Project.py" line="5617"/>
         <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed &apos;Black&apos; tool.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;Dies gibt ein paar Informationen zum installierten &apos;Black&apos; Werkzeug aus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5618"/>
-        <source>Format Code</source>
-        <translation>Code formatieren</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5619"/>
-        <source>&amp;Format Code</source>
-        <translation>Code &amp;formatieren</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5626"/>
-        <source>Format the project sources with &apos;Black&apos;.</source>
-        <translation>Formatiert die Projektquellen mit &apos;Black&apos;.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="5629"/>
+        <source>Format Code</source>
+        <translation>Code formatieren</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5630"/>
+        <source>&amp;Format Code</source>
+        <translation>Code &amp;formatieren</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5637"/>
+        <source>Format the project sources with &apos;Black&apos;.</source>
+        <translation>Formatiert die Projektquellen mit &apos;Black&apos;.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5640"/>
         <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using &apos;Black&apos;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Code formatieren&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Konfiguration eines Formatierungslaufes an und formatiert die Quellen mit &apos;Black&apos;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5641"/>
+        <location filename="../Project/Project.py" line="5652"/>
         <source>Check Code Formatting</source>
         <translation>Code Umformatierung prüfen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5642"/>
+        <location filename="../Project/Project.py" line="5653"/>
         <source>&amp;Check Code Formatting</source>
         <translation>&amp;Code Umformatierung prüfen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5649"/>
+        <location filename="../Project/Project.py" line="5660"/>
         <source>Check, if the project sources need to be reformatted with &apos;Black&apos;.</source>
         <translation>Prüft, ob die Projektquellen mit &apos;Black&apos; umformatiert werden müssen.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5654"/>
+        <location filename="../Project/Project.py" line="5665"/>
         <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using &apos;Black&apos;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Code Umformatierung prüfen&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Konfiguration eines Formatierungsprüflaufes an und prüft, ob die Projektquellen mit &apos;Black&apos; umformatiert werden müssen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5667"/>
+        <location filename="../Project/Project.py" line="5678"/>
         <source>Code Formatting Diff</source>
         <translation>Diff Code Umformatierung</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5668"/>
+        <location filename="../Project/Project.py" line="5679"/>
         <source>Code Formatting &amp;Diff</source>
         <translation>&amp;Diff Code Umformatierung</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5675"/>
+        <location filename="../Project/Project.py" line="5686"/>
         <source>Generate a unified diff of potential project source reformatting with &apos;Black&apos;.</source>
         <translation>Erzeugt ein Unified Diff potentieller Umformatierungen der Projektquellen mit &apos;Black&apos;.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5681"/>
+        <location filename="../Project/Project.py" line="5692"/>
         <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using &apos;Black&apos;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Diff Code Umformatierung&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Konfiguration der Erstellung eines Formatierungsdiff an und erstellt ein Unified Diff potentieller Umformatierungen der Projektquellen mit &apos;Black&apos;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5846"/>
-        <location filename="../Project/Project.py" line="5796"/>
-        <location filename="../Project/Project.py" line="5795"/>
-        <location filename="../Project/Project.py" line="5695"/>
-        <location filename="../Project/Project.py" line="5694"/>
+        <location filename="../Project/Project.py" line="5857"/>
+        <location filename="../Project/Project.py" line="5807"/>
+        <location filename="../Project/Project.py" line="5806"/>
+        <location filename="../Project/Project.py" line="5706"/>
+        <location filename="../Project/Project.py" line="5705"/>
         <source>Configure</source>
         <translation>Einstellungen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5702"/>
+        <location filename="../Project/Project.py" line="5713"/>
         <source>Enter the parameters for formatting the project sources with &apos;Black&apos;.</source>
         <translation>Gib die Parameter zur Formatierung der Projektquellen mit &apos;Black&apos; ein.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5707"/>
+        <location filename="../Project/Project.py" line="5718"/>
         <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with &apos;Black&apos;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Einstellungen&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Eingabe der Parameter für Formatierung der Projektquellen mit &apos;Black&apos;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5723"/>
+        <location filename="../Project/Project.py" line="5734"/>
         <source>About isort</source>
         <translation>Über isort</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5724"/>
+        <location filename="../Project/Project.py" line="5735"/>
         <source>&amp;isort</source>
         <translation>&amp;isort</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5730"/>
+        <location filename="../Project/Project.py" line="5741"/>
         <source>Show some information about &apos;isort&apos;.</source>
         <translation>Gibt ein paar Informationen zu &apos;isort&apos; aus.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5732"/>
+        <location filename="../Project/Project.py" line="5743"/>
         <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed &apos;isort&apos; tool.&lt;/p&gt;</source>
         <translation>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;Dies gibt ein paar Informationen zum installierten &apos;isort&apos; Werkzeug aus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5745"/>
-        <location filename="../Project/Project.py" line="5744"/>
+        <location filename="../Project/Project.py" line="5756"/>
+        <location filename="../Project/Project.py" line="5755"/>
         <source>Sort Imports</source>
         <translation>Imports Sortieren</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5752"/>
+        <location filename="../Project/Project.py" line="5763"/>
         <source>Sort the import statements of the project sources with &apos;isort&apos;.</source>
         <translation>Sortiert die Importanweisungen der Projektquellen mit &apos;isort&apos;.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5755"/>
+        <location filename="../Project/Project.py" line="5766"/>
         <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using &apos;isort&apos;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Imports Sortieren&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Eingabe der Parameter eines Sortierungslaufes an und sortiert die Importanweisungen der Projektquellen mit &apos;isort&apos;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5769"/>
-        <location filename="../Project/Project.py" line="5768"/>
+        <location filename="../Project/Project.py" line="5780"/>
+        <location filename="../Project/Project.py" line="5779"/>
         <source>Imports Sorting Diff</source>
         <translation>Diff der Imports Sortierung</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5776"/>
+        <location filename="../Project/Project.py" line="5787"/>
         <source>Generate a unified diff of potential project source imports resorting with &apos;isort&apos;.</source>
         <translation>Erzeugt ein Unified Diff potentieller Umsortierungen der Importanweisungen der Projektquellen mit &apos;isort&apos;.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5782"/>
+        <location filename="../Project/Project.py" line="5793"/>
         <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using &apos;isort&apos;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Diff der Imports Sortierung&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Eingabe der Parameter eines Sortierungslaufes an und erzeugt ein Unified Diff potentieller Umsortierungen der Importanweisungen der Projektquellen mit &apos;isort&apos;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5803"/>
+        <location filename="../Project/Project.py" line="5814"/>
         <source>Enter the parameters for resorting the project sources import statements with &apos;isort&apos;.</source>
         <translation>Gib die Parameter für die Umsortierung der Importanweisungen der Projektquellen mit &apos;isort&apos; ein.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5809"/>
+        <location filename="../Project/Project.py" line="5820"/>
         <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with &apos;isort&apos;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Einstellungen&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Eingabe der Parameter für die Umsortierung der Importanweisungen der Projektquellen mit &apos;isort&apos; an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5825"/>
-        <source>Install Project</source>
-        <translation>Projekt installieren</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5826"/>
-        <source>&amp;Install Project</source>
-        <translation>Projekt &amp;installieren</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5833"/>
-        <source>Install the project into the embedded environment.</source>
-        <translation>Installiert das Projekt in die eingebettete Umgebung.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="5836"/>
-        <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Projekt insttallieren&lt;/b&gt;&lt;p&gt;Die installiert das Projekt im editierbaren Modus (d.h. Entwicklungsmodus) in die eingebettete Umgebung.&lt;/p&gt;</translation>
+        <source>Install Project</source>
+        <translation>Projekt installieren</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5837"/>
+        <source>&amp;Install Project</source>
+        <translation>Projekt &amp;installieren</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5844"/>
+        <source>Install the project into the embedded environment.</source>
+        <translation>Installiert das Projekt in die eingebettete Umgebung.</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="5847"/>
+        <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Projekt insttallieren&lt;/b&gt;&lt;p&gt;Die installiert das Projekt im editierbaren Modus (d.h. Entwicklungsmodus) in die eingebettete Umgebung.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5858"/>
         <source>&amp;Configure</source>
         <translation>&amp;Einstellungen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5854"/>
+        <location filename="../Project/Project.py" line="5865"/>
         <source>Configure the embedded environment.</source>
         <translation>Konfiguriert die eingebettete Umgebung.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5857"/>
-        <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Einstellungen&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Konfiguration der einebetteten virtuellen Umgebung des Projektes.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5867"/>
-        <source>Upgrade</source>
-        <translation>Aktualisieren</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="5868"/>
+        <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Einstellungen&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Konfiguration der einebetteten virtuellen Umgebung des Projektes.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5878"/>
+        <source>Upgrade</source>
+        <translation>Aktualisieren</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5879"/>
         <source>&amp;Upgrade</source>
         <translation>&amp;Aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5874"/>
+        <location filename="../Project/Project.py" line="5885"/>
         <source>Upgrade the embedded environment.</source>
         <translation>Aktualisiert die eingebettete Umgebung.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5876"/>
+        <location filename="../Project/Project.py" line="5887"/>
         <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aktualisieren&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Eingabe der Parameter für die Aktualisierung der einebetteten virtuellen Umgebung des Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5888"/>
+        <location filename="../Project/Project.py" line="5899"/>
         <source>Recreate</source>
         <translation>Neu erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5889"/>
+        <location filename="../Project/Project.py" line="5900"/>
         <source>&amp;Recreate</source>
         <translation>&amp;Neu erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5895"/>
+        <location filename="../Project/Project.py" line="5906"/>
         <source>Recreate the embedded environment.</source>
         <translation>Erzeugt die eingebettete Umgebung neu.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5897"/>
+        <location filename="../Project/Project.py" line="5908"/>
         <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neu erzeugen&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Eingabe der Parameter für die Neuerzeugung der einebetteten virtuellen Umgebung des Projektes. Die existierende Umgebung wird zunächst gelöscht.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5929"/>
+        <location filename="../Project/Project.py" line="5940"/>
         <source>&amp;Project</source>
         <translation>&amp;Projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5930"/>
-        <source>Open &amp;Recent Projects</source>
-        <translation>Zu&amp;letzt geöffnete Projekte</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5932"/>
-        <source>Session</source>
-        <translation>Sitzung</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5933"/>
-        <source>Debugger</source>
-        <translation>Debugger</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5934"/>
-        <source>Embedded Environment</source>
-        <translation>Eingebettete Umgebung</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5936"/>
-        <source>Project-T&amp;ools</source>
-        <translation>Projekt&amp;werkzeuge</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5937"/>
-        <source>&amp;Version Control</source>
-        <translation>&amp;Versionskontrolle</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="5941"/>
-        <source>Chec&amp;k</source>
-        <translation>&amp;Prüfen</translation>
+        <source>Open &amp;Recent Projects</source>
+        <translation>Zu&amp;letzt geöffnete Projekte</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="5943"/>
-        <source>Code &amp;Formatting</source>
-        <translation>Code &amp;Formatierung</translation>
+        <source>Session</source>
+        <translation>Sitzung</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5944"/>
+        <source>Debugger</source>
+        <translation>Debugger</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="5945"/>
-        <source>Sho&amp;w</source>
-        <translation>&amp;Zeige</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5946"/>
-        <source>&amp;Diagrams</source>
-        <translation>&amp;Diagramme</translation>
+        <source>Embedded Environment</source>
+        <translation>Eingebettete Umgebung</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="5947"/>
-        <source>Pac&amp;kagers</source>
-        <translation>Pa&amp;ketierer</translation>
+        <source>Project-T&amp;ools</source>
+        <translation>Projekt&amp;werkzeuge</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="5948"/>
+        <source>&amp;Version Control</source>
+        <translation>&amp;Versionskontrolle</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5952"/>
+        <source>Chec&amp;k</source>
+        <translation>&amp;Prüfen</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5954"/>
+        <source>Code &amp;Formatting</source>
+        <translation>Code &amp;Formatierung</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5956"/>
+        <source>Sho&amp;w</source>
+        <translation>&amp;Zeige</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5957"/>
+        <source>&amp;Diagrams</source>
+        <translation>&amp;Diagramme</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5958"/>
+        <source>Pac&amp;kagers</source>
+        <translation>Pa&amp;ketierer</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5959"/>
         <source>Source &amp;Documentation</source>
         <translation>&amp;Quelltextdokumentation</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5950"/>
+        <location filename="../Project/Project.py" line="5961"/>
         <source>Make</source>
         <translation>Make</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5951"/>
+        <location filename="../Project/Project.py" line="5962"/>
         <source>Other Tools</source>
         <translation>Weitere Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6113"/>
-        <location filename="../Project/Project.py" line="6111"/>
+        <location filename="../Project/Project.py" line="6124"/>
+        <location filename="../Project/Project.py" line="6122"/>
         <source>Project</source>
         <translation>Projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6195"/>
+        <location filename="../Project/Project.py" line="6206"/>
         <source>&amp;Clear</source>
         <translation>&amp;Löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6392"/>
+        <location filename="../Project/Project.py" line="6403"/>
         <source>Search New Files</source>
         <translation>Neue Dateien suchen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6393"/>
+        <location filename="../Project/Project.py" line="6404"/>
         <source>There were no new files found to be added.</source>
         <translation>Es wurden keine neuen Dateien gefunden.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6554"/>
-        <location filename="../Project/Project.py" line="6541"/>
+        <location filename="../Project/Project.py" line="6565"/>
+        <location filename="../Project/Project.py" line="6552"/>
         <source>Version Control System</source>
         <translation>Versionskontrollsystem</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6542"/>
+        <location filename="../Project/Project.py" line="6553"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das ausgewählte Versionskontrollsystem &lt;b&gt;{0}&lt;/b&gt; konnte nicht gefunden werden.&lt;br/&gt;Ignoriere Übersteuerung.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6555"/>
+        <location filename="../Project/Project.py" line="6566"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das ausgewählte Versionskontrollsystem &lt;b&gt;{0}&lt;/b&gt; konnte nicht gefunden werden.&lt;br/&gt;Versionskontrolle nicht möglich.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6712"/>
+        <location filename="../Project/Project.py" line="6723"/>
         <source>Coverage Data</source>
         <translation>Quelltext Abdeckungsdaten</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6766"/>
-        <location filename="../Project/Project.py" line="6713"/>
+        <location filename="../Project/Project.py" line="6777"/>
+        <location filename="../Project/Project.py" line="6724"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6725"/>
+        <location filename="../Project/Project.py" line="6736"/>
         <source>Code Coverage</source>
         <translation>Quelltext Abdeckung</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6726"/>
+        <location filename="../Project/Project.py" line="6737"/>
         <source>Please select a coverage file</source>
         <translation>Bitte wählen Sie eine Datei mit Abdeckungsdaten</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6779"/>
+        <location filename="../Project/Project.py" line="6790"/>
         <source>Please select a profile file</source>
         <translation>Bitte wählen Sie eine Datei mit Profildaten</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6831"/>
+        <location filename="../Project/Project.py" line="6842"/>
         <source>Include module names?</source>
         <translation>Modulnamen anzeigen?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6944"/>
+        <location filename="../Project/Project.py" line="6955"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;PKGLIST&lt;/b&gt; existiert bereits.&lt;/p&gt;&lt;p&gt;Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="6999"/>
+        <location filename="../Project/Project.py" line="7010"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;PKGLIST&lt;/b&gt; konnte nicht erzeugt werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7295"/>
-        <location filename="../Project/Project.py" line="7251"/>
-        <location filename="../Project/Project.py" line="7201"/>
-        <location filename="../Project/Project.py" line="7190"/>
-        <location filename="../Project/Project.py" line="7172"/>
-        <location filename="../Project/Project.py" line="7139"/>
-        <location filename="../Project/Project.py" line="7109"/>
-        <location filename="../Project/Project.py" line="7081"/>
-        <location filename="../Project/Project.py" line="7051"/>
-        <location filename="../Project/Project.py" line="7037"/>
-        <location filename="../Project/Project.py" line="7020"/>
+        <location filename="../Project/Project.py" line="7321"/>
+        <location filename="../Project/Project.py" line="7277"/>
+        <location filename="../Project/Project.py" line="7227"/>
+        <location filename="../Project/Project.py" line="7216"/>
+        <location filename="../Project/Project.py" line="7198"/>
+        <location filename="../Project/Project.py" line="7151"/>
+        <location filename="../Project/Project.py" line="7121"/>
+        <location filename="../Project/Project.py" line="7093"/>
+        <location filename="../Project/Project.py" line="7063"/>
+        <location filename="../Project/Project.py" line="7048"/>
+        <location filename="../Project/Project.py" line="7031"/>
         <source>Create Plugin Archive</source>
         <translation>Erzeuge Plugin Archiv</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7021"/>
+        <location filename="../Project/Project.py" line="7032"/>
         <source>The project does not have a main script defined. Aborting...</source>
         <translation>Für das Projekt wurde kein Hauptskript angegeben. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7038"/>
+        <location filename="../Project/Project.py" line="7049"/>
         <source>Select package lists:</source>
         <translation>Wähle Paketlisten:</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7052"/>
-        <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Keine Paketlistendateien (PKGLIST*) verfügbar oder ausgewählt. Abbruch...&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="7060"/>
-        <source>Creating plugin archives...</source>
-        <translation>Erzeuge Plugin Archive...</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="7061"/>
-        <source>Abort</source>
-        <translation>Abbruch</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="7064"/>
+        <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Keine Paketlistendateien (PKGLIST*) verfügbar oder ausgewählt. Abbruch...&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="7072"/>
+        <source>Creating plugin archives...</source>
+        <translation>Erzeuge Plugin Archive...</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="7073"/>
+        <source>Abort</source>
+        <translation>Abbruch</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="7076"/>
         <source>%v/%m Archives</source>
         <translation>%v/%m Archive</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7082"/>
+        <location filename="../Project/Project.py" line="7094"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geladen werden.&lt;br/&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7110"/>
+        <location filename="../Project/Project.py" line="7122"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the&apos;; initial_list&apos; line of the header.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; ist noch nicht bereit.&lt;/p&gt;&lt;p&gt;Bitte überarbeite sie und löschen die Zeile &apos;; initial_list&apos; des Dateikopfes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7140"/>
+        <location filename="../Project/Project.py" line="7152"/>
         <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die eric Plugin Archivdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7173"/>
+        <location filename="../Project/Project.py" line="7199"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht im Archiv gespeichert werde. Sie wird ignoriert.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7191"/>
+        <location filename="../Project/Project.py" line="7217"/>
         <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die eric Plugin Archivdateien wurden mit einigen Fehlern erzeugt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7202"/>
+        <location filename="../Project/Project.py" line="7228"/>
         <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die eric Plugin Archivdateien wurden erfolgreich erzeugt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7252"/>
+        <location filename="../Project/Project.py" line="7278"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Plugindatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;br&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7296"/>
+        <location filename="../Project/Project.py" line="7322"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Plugindatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;br&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7388"/>
+        <location filename="../Project/Project.py" line="7414"/>
         <source>&apos;Make&apos; is not supported for remote projects. Aborting...</source>
         <translation>&apos;Make&apos; wird für entfernte Projekte nicht unterstützt. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7436"/>
+        <location filename="../Project/Project.py" line="7462"/>
         <source>The make process did not start.</source>
         <translation>Der make Prozess ist nicht gestartet.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7482"/>
+        <location filename="../Project/Project.py" line="7508"/>
         <source>The make process crashed.</source>
         <translation>Der make Prozess ist abgestürzt.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7490"/>
+        <location filename="../Project/Project.py" line="7516"/>
         <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es gibt Änderungen, die einen Neubau des konfigurierten Zieles &lt;b&gt;{0}&lt;/b&gt; erfordern.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7495"/>
+        <location filename="../Project/Project.py" line="7521"/>
         <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es gibt Änderungen, die einen Neubau des Standardzieles erfordern.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7511"/>
+        <location filename="../Project/Project.py" line="7537"/>
         <source>The makefile contains errors.</source>
         <translation>Die make Datei enthält Fehler.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7941"/>
+        <location filename="../Project/Project.py" line="7975"/>
         <source>Interpreter Missing</source>
         <translation>Interpreter fehlt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="7942"/>
+        <location filename="../Project/Project.py" line="7976"/>
         <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
         <translation>Der konfigurierte Interpreter der eingebetteten Umgebung ist nicht mehr vorhanden. Soll die Umgebung aktualisiert werden?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="8023"/>
+        <location filename="../Project/Project.py" line="8057"/>
         <source>Open Remote Project</source>
         <translation>Entferntes Projekt öffnen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="8054"/>
-        <location filename="../Project/Project.py" line="8039"/>
+        <location filename="../Project/Project.py" line="8088"/>
+        <location filename="../Project/Project.py" line="8073"/>
         <source>Save Remote Project</source>
         <translation>Entferntes Projekt speichern</translation>
     </message>
@@ -65274,50 +65289,50 @@
         <translation>Die Datei hat den MIME-Typ &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt;Soll sie zur Liste der Text MIME-Typen hinzugefügt werden?</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectOthersBrowser.py" line="527"/>
-        <location filename="../Project/ProjectOthersBrowser.py" line="511"/>
+        <location filename="../Project/ProjectOthersBrowser.py" line="529"/>
+        <location filename="../Project/ProjectOthersBrowser.py" line="513"/>
         <source>New directory</source>
         <translation>Neues Verzeichnis</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectOthersBrowser.py" line="512"/>
+        <location filename="../Project/ProjectOthersBrowser.py" line="514"/>
         <source>&lt;p&gt;A file or directory named &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Eine Datei oder ein Verzeichnis mit Namen &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Die Aktion wird abgebrochen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectOthersBrowser.py" line="528"/>
+        <location filename="../Project/ProjectOthersBrowser.py" line="530"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Verzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht angelegt werden. Abbruch...&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectOthersBrowser.py" line="625"/>
-        <location filename="../Project/ProjectOthersBrowser.py" line="596"/>
-        <location filename="../Project/ProjectOthersBrowser.py" line="577"/>
+        <location filename="../Project/ProjectOthersBrowser.py" line="627"/>
+        <location filename="../Project/ProjectOthersBrowser.py" line="598"/>
+        <location filename="../Project/ProjectOthersBrowser.py" line="579"/>
         <source>New file</source>
         <translation>Neue Datei</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectOthersBrowser.py" line="578"/>
+        <location filename="../Project/ProjectOthersBrowser.py" line="580"/>
         <source>Enter the path of the new file:</source>
         <translation>Gib den Pfad der neuen Datei ein:</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectOthersBrowser.py" line="597"/>
+        <location filename="../Project/ProjectOthersBrowser.py" line="599"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Die Aktion wird abgebrochen?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectOthersBrowser.py" line="626"/>
+        <location filename="../Project/ProjectOthersBrowser.py" line="628"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden. Abbruch...&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectOthersBrowser.py" line="716"/>
+        <location filename="../Project/ProjectOthersBrowser.py" line="718"/>
         <source>Delete files/directories</source>
         <translation>Dateien/Verzeichnisse löschen</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectOthersBrowser.py" line="717"/>
+        <location filename="../Project/ProjectOthersBrowser.py" line="719"/>
         <source>Do you really want to delete these entries from the project?</source>
         <translation>Wollen Sie wirklich diese Einträge aus dem Projekt löschen?</translation>
     </message>
@@ -67060,22 +67075,22 @@
 <context>
     <name>Purge</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="74"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="76"/>
         <source>Purge All Files</source>
         <translation>Alle Dateien löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="75"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="77"/>
         <source>Do really want to delete all files not tracked by Mercurial (including ignored ones)?</source>
         <translation>Wollen Sie wirklich alle Dateien, die nicht von Mercurial überwacht werden, inklusive ignorierter Dateien löschen?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="80"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="82"/>
         <source>Purge Files</source>
         <translation>Dateien löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="83"/>
         <source>Do really want to delete files not tracked by Mercurial?</source>
         <translation>Wollen Sie wirklich alle Dateien, die nicht von Mercurial überwacht werden, löschen?</translation>
     </message>
@@ -67183,7 +67198,7 @@
         <translation>PyBoard Funktionen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="453"/>
+        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="455"/>
         <location filename="../MicroPython/Devices/PyBoardDevices.py" line="235"/>
         <source>Show MicroPython Versions</source>
         <translation>Zeige MicroPython Versionen</translation>
@@ -67199,7 +67214,7 @@
         <translation>Liste der DFU fähigen Geräte</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432"/>
+        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="433"/>
         <location filename="../MicroPython/Devices/PyBoardDevices.py" line="246"/>
         <source>Flash MicroPython Firmware</source>
         <translation>MicroPython Firmware flashen</translation>
@@ -67255,7 +67270,7 @@
         <translation>DFU Modus deaktivieren</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="431"/>
+        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432"/>
         <location filename="../MicroPython/Devices/PyBoardDevices.py" line="390"/>
         <source>&apos;dfu-util&apos; Output</source>
         <translation>&apos;dfu-util&apos; Ausgabe</translation>
@@ -67266,37 +67281,37 @@
         <translation>Liste der DFU fähigen Geräte</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="416"/>
+        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="417"/>
         <source>Flash MicroPython/CircuitPython Firmware</source>
         <translation>MicroPython/CircuitPython Firmware flashen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="418"/>
+        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="419"/>
         <source>MicroPython Firmware Files (*.dfu);;CircuitPython Firmware Files (*.bin);;All Files (*)</source>
         <translation>MicroPython Firmwaredateien (*.dfu);;CircuitPython Firmwaredateien (*.bin);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="454"/>
+        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="456"/>
         <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
         <translation>Die Firmware des verbundenen Gerätes kann nicht ermittelt werden oder das Board enthält kein MicroPython. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="482"/>
+        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="484"/>
         <source>unknown</source>
         <translation>unbekannt</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="488"/>
+        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="490"/>
         <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;h4&gt;MicroPython Versionsinformationen&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installiert:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Verfügbar:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="496"/>
+        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="498"/>
         <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;Update verfügbar!&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="500"/>
+        <location filename="../MicroPython/Devices/PyBoardDevices.py" line="502"/>
         <source>MicroPython Version</source>
         <translation>MicroPython Version</translation>
     </message>
@@ -69440,12 +69455,12 @@
         <translation>&lt;b&gt;QRegularExpression-Assistent&lt;/b&gt;&lt;p&gt;Dieser Assistent öffnet einen Dialog zur Eingabe der Parameter, die zur Erzeugung eines QRegularExpression-Ausdruckes benötigt werden. Der erzeugte Quelltext wird an der aktuellen Cursorposition eingefügt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginWizardQRegularExpression.py" line="139"/>
+        <location filename="../Plugins/PluginWizardQRegularExpression.py" line="141"/>
         <source>No current editor</source>
         <translation>Kein aktueller Editor</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginWizardQRegularExpression.py" line="140"/>
+        <location filename="../Plugins/PluginWizardQRegularExpression.py" line="142"/>
         <source>Please open or create a file first.</source>
         <translation>Bitte öffnen oder erzeugen Sie zuerst eine Datei.</translation>
     </message>
@@ -71247,7 +71262,7 @@
         <translation>Plug-ins verwalten...</translation>
     </message>
     <message>
-        <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="122"/>
+        <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="124"/>
         <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="82"/>
         <source>Add Documentation</source>
         <translation>Dokumentation hinzufügen</translation>
@@ -71258,7 +71273,7 @@
         <translation>Qt-Hilfedateien (*.qch)</translation>
     </message>
     <message>
-        <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="123"/>
+        <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="125"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; could not be added.</source>
         <translation>Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht hinzugefügt werden.</translation>
     </message>
@@ -71518,191 +71533,191 @@
 <context>
     <name>Queues</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="226"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="228"/>
         <source>New Patch</source>
         <translation>Neuer Patch</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="277"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="279"/>
         <source>Update Current Patch</source>
         <translation>Aktuellen Patch aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="335"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="337"/>
         <source>Pop Patches</source>
         <translation>Pop Patches</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="339"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="341"/>
         <source>Push Patches</source>
         <translation>Push Patches</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="343"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="345"/>
         <source>Go to Patch</source>
         <translation>zu Patch wechseln</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="437"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="369"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="356"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="441"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="371"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="358"/>
         <source>Select Patch</source>
         <translation>Patch auswählen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="357"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="359"/>
         <source>Select the target patch name:</source>
         <translation>Wählen den Namen des Zielpatches aus:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="370"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="372"/>
         <source>No patches to select from.</source>
         <translation>Keine Patches zum Auswählen vorhanden.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="401"/>
         <source>Finish Applied Patches</source>
         <translation>Angewandte Patches abschließen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="423"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="427"/>
         <source>Rename Patch</source>
         <translation>Patch umbenennen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="438"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="442"/>
         <source>Select the patch to be deleted:</source>
         <translation>Wähle den zu löschenden Patch aus:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="446"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="450"/>
         <source>Delete Patch</source>
         <translation>Patch löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="488"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="482"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="475"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="492"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="486"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="479"/>
         <source>Fold Patches</source>
         <translation>Patches zusammenfügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="483"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="487"/>
         <source>No patches selected.</source>
         <translation>Keine Patches ausgewählt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="489"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="493"/>
         <source>No patches available to be folded.</source>
         <translation>Keine Patches zum Zusammenführen verfügbar.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="506"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="510"/>
         <source>List Guards</source>
         <translation>Guards anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="507"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="511"/>
         <source>No patches available to list guards for.</source>
         <translation>Keine Patches verfügbar, für die Guards angezeigt werden können.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="536"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="540"/>
         <source>Define Guards</source>
         <translation>Guards definieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="569"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="537"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="573"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="541"/>
         <source>No patches available to define guards for.</source>
         <translation>Keine Patches verfügbar, für die Guards definiert werden können.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="568"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="548"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="572"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="552"/>
         <source>Drop All Guards</source>
         <translation>Alle Guards löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="549"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="553"/>
         <source>Select the patch to drop guards for (leave empty for the current patch):</source>
         <translation>Patch auswählen dessen Guards gelöscht werden sollen (für aktuellen Patch leer lassen):</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="597"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="590"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="606"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598"/>
         <source>Set Active Guards</source>
         <translation>Aktive Guards setzen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="607"/>
         <source>No guards available to select from.</source>
         <translation>Keine Guards zur Auswahl verfügbar.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="609"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="618"/>
         <source>Deactivate Guards</source>
         <translation>Guards deaktivieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649"/>
         <source>Create New Queue</source>
         <translation>Neue Patchschlange anlegen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649"/>
         <source>Rename Active Queue</source>
         <translation>Aktive Patchschlange umbenennen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="658"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="673"/>
         <source>Error while creating a new queue.</source>
         <translation>Fehler beim Anlegen einer neuen Patchschlange.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="660"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="675"/>
         <source>Error while renaming the active queue.</source>
         <translation>Fehler beim Umbenennen der aktiven Patchschlange.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="693"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="708"/>
         <source>Purge Queue</source>
         <translation>Patchschlange säubern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="695"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="710"/>
         <source>Delete Queue</source>
         <translation>Patchschlange löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="697"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="712"/>
         <source>Activate Queue</source>
         <translation>Patchschlange aktivieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="717"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="736"/>
         <source>Error while purging the queue.</source>
         <translation>Fehler beim Säubern der Patchschlange.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="719"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="738"/>
         <source>Error while deleting the queue.</source>
         <translation>Fehler beim Löschen der Patchschlange.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="721"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="740"/>
         <source>Error while setting the active queue.</source>
         <translation>Fehler beim Setzen der aktiven Patchschlange.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="743"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="762"/>
         <source>Available Queues</source>
         <translation>Verfügbare Patchschlangen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="757"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="777"/>
         <source>Initializing new queue repository</source>
         <translation>Neues Patchschlangenrepository initialisieren</translation>
     </message>
@@ -72824,17 +72839,17 @@
 <context>
     <name>Rebase</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="86"/>
         <source>Rebase Changesets</source>
         <translation>Änderungssätze umgruppieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="106"/>
         <source>Rebase Changesets (Continue)</source>
         <translation>Änderungssätze umgruppieren (Fortsetzung)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="121"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="127"/>
         <source>Rebase Changesets (Abort)</source>
         <translation>Änderungssätze umgruppieren (Abbruch)</translation>
     </message>
@@ -73085,7 +73100,7 @@
         <translation>STLink Funktionen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/STLinkDevices.py" line="421"/>
+        <location filename="../MicroPython/Devices/STLinkDevices.py" line="423"/>
         <location filename="../MicroPython/Devices/STLinkDevices.py" line="231"/>
         <source>Show MicroPython Versions</source>
         <translation>Zeige MicroPython Versionen</translation>
@@ -73139,37 +73154,37 @@
         <translation>&apos;st-flash&apos; Ausgabe</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/STLinkDevices.py" line="402"/>
+        <location filename="../MicroPython/Devices/STLinkDevices.py" line="403"/>
         <source>&apos;st-info&apos; Output</source>
         <translation>&apos;st-info&apos; Ausgabe</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/STLinkDevices.py" line="403"/>
+        <location filename="../MicroPython/Devices/STLinkDevices.py" line="404"/>
         <source>STLink Device Information</source>
         <translation>STLink Geräteinformationen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/STLinkDevices.py" line="422"/>
+        <location filename="../MicroPython/Devices/STLinkDevices.py" line="424"/>
         <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
         <translation>Die Firmware des verbundenen Gerätes kann nicht ermittelt werden oder das Board enthält kein MicroPython. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/STLinkDevices.py" line="450"/>
+        <location filename="../MicroPython/Devices/STLinkDevices.py" line="452"/>
         <source>unknown</source>
         <translation>unbekannt</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/STLinkDevices.py" line="456"/>
+        <location filename="../MicroPython/Devices/STLinkDevices.py" line="458"/>
         <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;h4&gt;MicroPython Versionsinformationen&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installiert:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Verfügbar:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/STLinkDevices.py" line="464"/>
+        <location filename="../MicroPython/Devices/STLinkDevices.py" line="466"/>
         <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;Update verfügbar!&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/Devices/STLinkDevices.py" line="468"/>
+        <location filename="../MicroPython/Devices/STLinkDevices.py" line="470"/>
         <source>MicroPython Version</source>
         <translation>MicroPython Version</translation>
     </message>
@@ -76143,49 +76158,49 @@
 <context>
     <name>Shelve</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="105"/>
         <source>Shelve current changes</source>
         <translation>Aktuelle Änderungen ablegen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="151"/>
         <source>Restore shelved changes</source>
         <translation>Ablage wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="162"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="170"/>
         <source>Abort restore operation</source>
         <translation>Wiederherstellung abbrechen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="182"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="191"/>
         <source>Continue restore operation</source>
         <translation>Wiederherstellung fortsetzen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="201"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211"/>
         <source>Select the shelves to be deleted:</source>
         <translation>Wähle die zu löschenden Ablagen aus:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="220"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="222"/>
         <source>Delete shelves</source>
         <translation>Ablagen löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="212"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="223"/>
         <source>Do you really want to delete these shelves?</source>
         <translation>Sollen diese Ablagen wirklich gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="238"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="249"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="242"/>
         <source>Delete all shelves</source>
         <translation>Alle Ablagen löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="232"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="243"/>
         <source>Do you really want to delete all shelved changes?</source>
         <translation>Sollen wirklich alle Ablagen gelöscht werden?</translation>
     </message>
@@ -79005,7 +79020,7 @@
 <context>
     <name>Strip</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="64"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="68"/>
         <source>Stripping changesets from repository</source>
         <translation>Änderungssätze aus dem Repository löschen</translation>
     </message>
@@ -79121,7 +79136,7 @@
         <translation>Der svn-Prozess endete mit dem Code {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2138"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2173"/>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="185"/>
         <source>The svn process did not finish within 30s.</source>
         <translation>Der svn-Prozess endete nicht innerhalb von 30s.</translation>
@@ -79157,339 +79172,339 @@
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="320"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="334"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="335"/>
         <source>Importing project into Subversion repository</source>
         <translation>Lade das Projekt in das Subversion-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="379"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="375"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="378"/>
         <source>Subversion Checkout</source>
         <translation>Subversion-Checkout</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="450"/>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="436"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="376"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="452"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="381"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="442"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="379"/>
         <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
         <translation>Das Tag muss ein normales Tag (tags) oder ein Zweigtag (branches) sein. Bitte aus der Liste auswählen.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="402"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="402"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="403"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="406"/>
         <source>Checking project out of Subversion repository</source>
         <translation>Lade das Projekt aus dem Subversion-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="449"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="435"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="451"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="441"/>
         <source>Subversion Export</source>
         <translation>Subversion-Export</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="471"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="459"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="473"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="466"/>
         <source>Exporting project from Subversion repository</source>
         <translation>Expotiere das Projekt aus dem Subversion-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="554"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="532"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="557"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="541"/>
         <source>Commit Changes</source>
         <translation>Änderungen einpflegen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="555"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="533"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="542"/>
         <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
         <translation>Das Einpflegen von Änderungen betrifft Dateien mit ungesicherten Änderungen. Soll die Aktion fortgesetzt werden?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="597"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="582"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="600"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="592"/>
         <source>Commiting changes to Subversion repository</source>
         <translation>Pflege Änderungen in das Subversion-Repository ein</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="702"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="657"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="706"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="670"/>
         <source>Synchronizing with the Subversion repository</source>
         <translation>Gleiche mit dem Subversion-Repository ab</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="816"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="759"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="821"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="774"/>
         <source>Adding files/directories to the Subversion repository</source>
         <translation>Füge Dateien/Verzeichnisse dem Subversion-Repository hinzu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="927"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="852"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="933"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="869"/>
         <source>Adding directory trees to the Subversion repository</source>
         <translation>Füge Verzeichnisbäume dem Subversion-Repository hinzu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="968"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="889"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="975"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="908"/>
         <source>Removing files/directories from the Subversion repository</source>
         <translation>Lösche Dateien/Verzeichnisse aus dem Subversion-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1032"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="953"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1042"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="973"/>
         <source>Moving {0}</source>
         <translation>Verschiebe {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1331"/>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1302"/>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1162"/>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1132"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1216"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1187"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1035"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1351"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1319"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1176"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1143"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1243"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1211"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1087"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1055"/>
         <source>Subversion Error</source>
         <translation>Subversion-Fehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1133"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1036"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1144"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1056"/>
         <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
         <translation>Die URL des Projektrepositorys konnte nicht aus der Arbeitskopie ermittelt werden. Die Tag-Operation wird abgebrochen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1065"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1177"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1088"/>
         <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
         <translation>Die URL des Projektrepositorys hat ein ungültiges Format. Die Tag-Operation wird abgebrochen</translation>
     </message>
     <message>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1214"/>
         <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199"/>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1185"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1099"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1122"/>
         <source>Tagging {0} in the Subversion repository</source>
         <translation>Markiere {0} im Subversion-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1246"/>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1235"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1143"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1132"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1262"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1251"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1167"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1156"/>
         <source>Revert changes</source>
         <translation>Änderungen rückgängig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1236"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1133"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1252"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1157"/>
         <source>Do you really want to revert all changes to these files or directories?</source>
         <translation>Wollen Sie wirklich alle Änderungen an den folgenden Dateien oder Verzeichnissen rückgängig machen?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1247"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1144"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1168"/>
         <source>Do you really want to revert all changes of the project?</source>
         <translation>Wollen Sie wirklich alle Änderungen des Projektes rückgängig machen?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1255"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1271"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1174"/>
         <source>Reverting changes</source>
         <translation>Mache Änderungen rückgängig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1303"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1188"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1320"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1212"/>
         <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
         <translation>Die URL des Projektrepositorys konnte nicht aus der Arbeitskopie ermittelt werden. Die Umschaltoperation wird abgebrochen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1332"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1217"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1352"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1244"/>
         <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
         <translation>Die URL des Projektrepositorys hat ein ungültiges Format. Die Umschaltoperation wird abgebrochen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1355"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1246"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1375"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273"/>
         <source>Switching to {0}</source>
         <translation>Schalte {0} um</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1456"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1313"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1481"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1344"/>
         <source>Merging {0}</source>
         <translation>Arbeite Änderungen in {0} ein</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1787"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1602"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1813"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633"/>
         <source>Cleaning up {0}</source>
         <translation>Räume {0} auf</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1828"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1859"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1666"/>
         <source>Subversion command</source>
         <translation>Subversion-Befehl</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1960"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1816"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1991"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1849"/>
         <source>Resolving conficts</source>
         <translation>Löse Konflikte</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1852"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2036"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1885"/>
         <source>Copying {0}</source>
         <translation>Kopiere {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2084"/>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2067"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1923"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1902"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2117"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1956"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1935"/>
         <source>Subversion Set Property</source>
         <translation>Subversion-Eigenschaft definieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2131"/>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2068"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1951"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1903"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2165"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2101"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1984"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1936"/>
         <source>You have to supply a property name. Aborting.</source>
         <translation>Sie müssen einen Namen für die Eigenschaft angeben. Abbruch.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2147"/>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2130"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1968"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1950"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1939"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2181"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2164"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2001"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1983"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1972"/>
         <source>Subversion Delete Property</source>
         <translation>Subversion-Eigenschaft löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1940"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1973"/>
         <source>Enter property name</source>
         <translation>Gib den Namen der Eigenschaft ein</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2140"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2175"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2403"/>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2391"/>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2382"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2206"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2194"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2185"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2440"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2428"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2419"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2241"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2229"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220"/>
         <source>Subversion Side-by-Side Difference</source>
         <translation>Subversion Unterschiede nebeneinander anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2404"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2207"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2441"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2242"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2466"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2260"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2503"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2295"/>
         <source>Locking in the Subversion repository</source>
         <translation>Sperren im Subversion-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2508"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2545"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2324"/>
         <source>Unlocking in the Subversion repository</source>
         <translation>Entsperren im Subversion-Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2558"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2314"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2595"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2351"/>
         <source>Relocating</source>
         <translation>Relozierung</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2584"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2333"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2621"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2370"/>
         <source>Repository Browser</source>
         <translation>Repositorybrowser</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2585"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2334"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2622"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2371"/>
         <source>Enter the repository URL.</source>
         <translation>Gib die URL des Repository ein.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2610"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2647"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2441"/>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2404"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2367"/>
         <source>Remove from changelist</source>
         <translation>Von Änderungsliste entfernen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2649"/>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2638"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2383"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2687"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2676"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2420"/>
         <source>Add to changelist</source>
         <translation>Zu Änderungsliste hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2639"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2384"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2677"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2421"/>
         <source>Enter name of the changelist:</source>
         <translation>Gib den Namen der Änderungsliste ein:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2706"/>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2474"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2746"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2511"/>
         <source>Upgrade</source>
         <translation>Modernisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="338"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="339"/>
         <source>Imported revision {0}.
 </source>
         <translation>Revision {0} importiert.
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="631"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="635"/>
         <source>Committed revision {0}.</source>
         <translation>Revision {0} eingepflegt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1363"/>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1384"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1226"/>
         <source>Revision {0}.
 </source>
         <translation>Revision {0}.
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2107"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2141"/>
         <source>Property set.</source>
         <translation>Eigenschaft definiert.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2165"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2200"/>
         <source>Property deleted.</source>
         <translation>Eigenschaft gelöscht.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2448"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2485"/>
         <source>Subversion Lock</source>
         <translation>Subversion-Sperre</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2449"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2486"/>
         <source>Enter lock comment</source>
         <translation>Gib eine Kommentar für die Sperre ein</translation>
     </message>
@@ -89862,133 +89877,133 @@
 <context>
     <name>UF2FlashDialog</name>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="722"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="732"/>
         <source>&lt;h3&gt;CircuitPython Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Switch your device to &apos;bootloader&apos; mode by double-pressing the reset button.&lt;/li&gt;&lt;li&gt;Wait until the device has entered &apos;bootloader&apos; mode.&lt;/li&gt;&lt;li&gt;(If this does not happen, then try shorter or longer pauses between presses.)&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
         <translation>&lt;h3&gt;CircuitPython Gerät&lt;/h3&gt;&lt;p&gt;Um das Gerät zum Flashen vorzubereiten, folgen sie den folgenden Schritten:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Aktiviere den &apos;Bootloader&apos; Modus durch zweimaliges Drücken des Reset Knopfes.&lt;/li&gt;&lt;li&gt;Warten sie, bis das Gerät den &apos;Bootloader&apos; Modus eingenommen hat.&lt;/li&gt;&lt;li&gt;(Falls dies nicht erfolgt, versuchen sie es mit einer kürzeren oder längeren Pause zwischen den Drücken.)&lt;/li&gt;&lt;li&gt;Stellen sie sicher, dass der Boot Datenträger verfügbar ist (evtl. ist er zu mounten).&lt;/li&gt;&lt;li&gt;Wählen sie die zu flashende Firmwaredatei und klicken sie den Flash Knopf.&lt;/li&gt;&lt;/ol&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="748"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="758"/>
         <source>&lt;h3&gt;Pi Pico (RP2040/RP2350) Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Enter &apos;bootloader&apos; mode (board &lt;b&gt;without&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;Plug in your board while holding the BOOTSEL button.&lt;/li&gt;&lt;/ul&gt;Enter &apos;bootloader&apos; mode (board &lt;b&gt;with&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;hold down RESET&lt;/li&gt;&lt;li&gt;hold down BOOTSEL&lt;/li&gt;&lt;li&gt;release RESET&lt;/li&gt;&lt;li&gt;release BOOTSEL&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Wait until the device has entered &apos;bootloader&apos; mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
         <translation>&lt;h3&gt;Pi Pico (RP2040/RP2350) Gerät&lt;/h3&gt;&lt;p&gt;Um das Gerät zum Flashen vorzubereiten, folgen sie den folgenden Schritten:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&apos;Bootloader&apos; Modus aktivieren (Gerät &lt;b&gt;ohne&lt;/b&gt; RESET Knopf):&lt;ul&gt;&lt;li&gt;Verbinden sie das Gerät während der BOOTSEL Knopf gedrückt gehalten wird.&lt;/li&gt;&lt;/ul&gt;&apos;Bootloader&apos; Modus aktivieren (Gerät &lt;b&gt;mit&lt;/b&gt; RESET Knopf):&lt;ul&gt;&lt;li&gt;RESET drücken und halten&lt;/li&gt;&lt;li&gt;BOOTSEL drücken und halten&lt;/li&gt;&lt;li&gt;RESET loslassen&lt;/li&gt;&lt;li&gt;BOOTSEL loslassen&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Warten sie, bis das Gerät den &apos;Bootloader&apos; Modus eingenommen hat.&lt;/li&gt;&lt;li&gt;Stellen sie sicher, dass der Boot Datenträger verfügbar ist (evtl. ist er zu mounten).&lt;/li&gt;&lt;li&gt;Wählen sie die zu flashende Firmwaredatei und klicken sie den Flash Knopf.&lt;/li&gt;&lt;/ol&gt;</translation>
     </message>
     <message>
         <location filename="../MicroPython/UF2FlashDialog.ui" line="0"/>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1248"/>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1256"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1258"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1266"/>
         <source>Flash UF2 Device</source>
         <translation>UF2 Gerät flashen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1257"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1267"/>
         <source>Select the Boot Volume of the device:</source>
         <translation>Wähle das Bootverzeichnis des Gerätes:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="861"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="871"/>
         <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source>
         <translation>MicroPython/CircuitPython Dateien (*.uf2);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="928"/>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="920"/>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="904"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="938"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="930"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="914"/>
         <source>Manual Select</source>
         <translation>Manuelle Auswahl</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1032"/>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1000"/>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="977"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1042"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1010"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="987"/>
         <source>Reset Instructions:</source>
         <translation>Reset Instruktionen:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="979"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="989"/>
         <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the appropriate instructions below to set &lt;b&gt;one&lt;/b&gt; board into &apos;bootloader&apos; mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
         <translation>&lt;h4&gt;Kein bekanntes Gerät erkannt.&lt;/h4&gt;&lt;p&gt;Folgen sie den entsprechenden Anweisungen, um &lt;b&gt;ein&lt;/b&gt; Gerät in den &apos;Bootloader&apos; Modus zu versetzen. Drücken sie &lt;b&gt;Aktualisieren&lt;/b&gt;, wenn sie bereit sind.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1003"/>
-        <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into &apos;bootloader&apos; mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
-        <translation>&lt;h4&gt;{0} Firmware flashen&lt;/h4&gt;&lt;p&gt;Folgen sie den Anweisungen, um &lt;b&gt;ein&lt;/b&gt; Gerät in den &apos;Bootloader&apos; Modus zu versetzen. Drücken sie &lt;b&gt;Aktualisieren&lt;/b&gt;, wenn sie bereit sind.&lt;/p&gt;&lt;hr/&gt;{1}</translation>
-    </message>
-    <message>
         <location filename="../MicroPython/UF2FlashDialog.py" line="1013"/>
+        <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into &apos;bootloader&apos; mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
+        <translation>&lt;h4&gt;{0} Firmware flashen&lt;/h4&gt;&lt;p&gt;Folgen sie den Anweisungen, um &lt;b&gt;ein&lt;/b&gt; Gerät in den &apos;Bootloader&apos; Modus zu versetzen. Drücken sie &lt;b&gt;Aktualisieren&lt;/b&gt;, wenn sie bereit sind.&lt;/p&gt;&lt;hr/&gt;{1}</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1023"/>
         <source>&lt;h4&gt;Potentially UF2 capable devices found&lt;/h4&gt;&lt;p&gt;Found these potentially UF2 capable devices:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into &apos;bootloader&apos; mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
         <translation>&lt;h4&gt;Potentiell UF2 fähige Geräte gefunden&lt;/h4&gt;&lt;p&gt;Es wurde folgende potentiell UF2 fähige Geräte gefunden:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Folgen sie den Anweisungen, um &lt;b&gt;ein&lt;/b&gt; Gerät in den &apos;Bootloader&apos; Modus zu versetzen. Drücken sie &lt;b&gt;Aktualisieren&lt;/b&gt;, wenn sie bereit sind.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1034"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1044"/>
         <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into &apos;bootloader&apos; mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
         <translation>&lt;h4&gt;Keine bekannten Geräte erkannt.&lt;/h4&gt;&lt;p&gt;Folgen sie den Anweisungen, um &lt;b&gt;ein&lt;/b&gt; Gerät in den &apos;Bootloader&apos; Modus zu versetzen. Drücken sie &lt;b&gt;Aktualisieren&lt;/b&gt;, wenn sie bereit sind.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1046"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1056"/>
         <source>Flash Instructions:</source>
         <translation>Flash Instruktionen:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1048"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1058"/>
         <source>&lt;h4&gt;Flash method &apos;manual&apos; selected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to flash a device by entering the data manually.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Change the device to &apos;bootloader&apos; mode.&lt;/li&gt;&lt;li&gt;Wait until the device has entered &apos;bootloader&apos; mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it) and select its path.&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
         <translation>&lt;h4&gt;Flash Method &apos;manuell&apos; ausgewählt.&lt;/h4&gt;Folgen sie den Anweisungen, um ein Gerät mit manueller Eingabe der Parameter zu flashen.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Bringen sie das Gerät in den &apos;Bootloader&apos; Modus.&lt;/li&gt;&lt;li&gt;Warten sie, bis das Gerät den &apos;Bootloader&apos; Modus eingenommen hat.&lt;/li&gt;&lt;li&gt;Stellen sie sicher, dass der Boot Datenträger verfügbar ist (evtl. ist er zu mounten).&lt;/li&gt;&lt;li&gt;Wählen sie die zu flashende Firmwaredatei und klicken sie den Flash Knopf.&lt;/li&gt;&lt;/ol&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1073"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1083"/>
         <source>Boot Volume not found:</source>
         <translation>Boot Datenträger nicht gefunden:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1075"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1085"/>
         <source>&lt;h4&gt;No Boot Volume detected.&lt;/h4&gt;&lt;p&gt;Please ensure that the boot volume of the device to be flashed is available. </source>
         <translation>&lt;h4&gt;Es wurde kein Boot Datenträger gefunden.&lt;/h4&gt;&lt;p&gt;Bitte stellen sie sicher, dass der Boot Datenträger für das zu flashende Gerät verfügbar ist. </translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1081"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1091"/>
         <source>This volume should be named &lt;b&gt;{0}&lt;/b&gt;. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
         <translation>Dieser Datenträger sollte die Bezeichnung &lt;b&gt;{0}&lt;/b&gt; haben. Drücken sie &lt;b&gt;Aktualisieren&lt;/b&gt;, wenn sie bereit sind.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1086"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1096"/>
         <source>This volume should have one of these names.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
         <translation>Dieser Datenträger sollte eine dieser Bezeichnungen haben.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Drücken sie &lt;b&gt;Aktualisieren&lt;/b&gt;, wenn sie bereit sind.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1093"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1103"/>
         <source>&lt;h4&gt;Reset Instructions&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set the board into &apos;bootloader&apos; mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
         <translation>&lt;h4&gt;Reset Instruktionen&lt;/h4&gt;&lt;p&gt;Folgen sie den Anweisungen, um das Gerät in den &apos;Bootloader&apos; Modus zu versetzen. Drücken sie &lt;b&gt;Aktualisieren&lt;/b&gt;, wenn sie bereit sind.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1112"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1122"/>
         <source>Multiple Boot Volumes found:</source>
         <translation>Mehrere Boot Datenträger erkannt:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1114"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1124"/>
         <source>&lt;h4&gt;Multiple Boot Volumes were found&lt;/h4&gt;&lt;p&gt;These volume paths were found.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please ensure that only one device of a type is ready for flashing. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
         <translation>&lt;h4&gt;Mehrere Boot Datenträger wurden erkannt&lt;/h4&gt;&lt;p&gt;Diese Datenträgerpfade wurden erkannt.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Bitte stellen sie sicher, dass nur ein Gerät zum Flashen bereit ist. Drücken sie &lt;b&gt;Aktualisieren&lt;/b&gt;, wenn sie bereit sind.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1133"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1143"/>
         <source>Flashing Firmware</source>
         <translation>Flashe Firmware</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1135"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1145"/>
         <source>&lt;p&gt;Flashing the selected firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Flashe die ausgewählte Firmware auf das Gerät. Bitte warten Sie bis sich das Gerät automatisch resettet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1142"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1152"/>
         <source>Flashing {0}</source>
         <translation>Flashe {0}</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1144"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1154"/>
         <source>&lt;p&gt;Flashing the {0} firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Flashe die {0} Firmware auf das Gerät. Bitte warten sie, bis sich das Gerät automatisch resettet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="1249"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="1259"/>
         <source>No UF2 device &apos;boot&apos; volumes found.</source>
         <translation>Keine &apos;boot&apos; Verzeichnisse für UF2 Gerät gefunden.</translation>
     </message>
@@ -90554,24 +90569,24 @@
         <translation>Grafiken</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="405"/>
-        <location filename="../Graphics/UMLGraphicsView.py" line="392"/>
-        <location filename="../Graphics/UMLGraphicsView.py" line="375"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="409"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="396"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="379"/>
         <source>Save Diagram</source>
         <translation>Diagramm speichern</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="377"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="381"/>
         <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
         <translation>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="393"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="397"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="406"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="410"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden.&lt;/p&gt;</translation>
     </message>
@@ -90749,44 +90764,44 @@
         <translation>{0} (0x{1:04x}/0x{2:04x})</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UnknownDevicesDialog.py" line="95"/>
+        <location filename="../MicroPython/UnknownDevicesDialog.py" line="97"/>
         <source>{0} (*)</source>
         <comment>list entry is modified</comment>
         <translation>{0} (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UnknownDevicesDialog.py" line="179"/>
-        <location filename="../MicroPython/UnknownDevicesDialog.py" line="158"/>
+        <location filename="../MicroPython/UnknownDevicesDialog.py" line="181"/>
+        <location filename="../MicroPython/UnknownDevicesDialog.py" line="160"/>
         <source>Delete Unknown Devices</source>
         <translation>Löschen unbekannter Geräte</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UnknownDevicesDialog.py" line="159"/>
+        <location filename="../MicroPython/UnknownDevicesDialog.py" line="161"/>
         <source>The selected entries contain some with modified data. Shall they really be deleted?</source>
         <translation>Die ausgewählten Einträge enthalten solche mit geänderten Daten. Sollen sie wirklich gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UnknownDevicesDialog.py" line="180"/>
+        <location filename="../MicroPython/UnknownDevicesDialog.py" line="182"/>
         <source>The list contains some devices with modified data. Shall they really be deleted?</source>
         <translation>Die Liste enthält einige Geräte mit geänderten Daten.Sollen sie wirklich gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UnknownDevicesDialog.py" line="198"/>
+        <location filename="../MicroPython/UnknownDevicesDialog.py" line="200"/>
         <source>Restore Unknown Devices</source>
         <translation>Unbekannte Geräte wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UnknownDevicesDialog.py" line="199"/>
+        <location filename="../MicroPython/UnknownDevicesDialog.py" line="201"/>
         <source>Restoring the list of unknown devices will overwrite all changes made. Do you really want to restore the list?</source>
         <translation>Die Wiederherstellung der Liste unbekannter Geräte wird alle Änderungen überschreiben. Soll die Liste wirklich wiederhergestellt werden?</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UnknownDevicesDialog.py" line="263"/>
+        <location filename="../MicroPython/UnknownDevicesDialog.py" line="265"/>
         <source>Unsaved Data</source>
         <translation>Ungesicherte Daten</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UnknownDevicesDialog.py" line="264"/>
+        <location filename="../MicroPython/UnknownDevicesDialog.py" line="266"/>
         <source>The list of devices contains some with modified data.</source>
         <translation>Die Geräteliste enthält einige mit geänderten Daten.</translation>
     </message>
@@ -91300,7 +91315,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="7883"/>
+        <location filename="../UI/UserInterface.py" line="7890"/>
         <location filename="../UI/UserInterface.py" line="1955"/>
         <location filename="../UI/UserInterface.py" line="1948"/>
         <source>Load session</source>
@@ -92391,7 +92406,7 @@
         <translation>&lt;b&gt;Symbol-Editor&lt;/b&gt;&lt;p&gt;Startet den eric Symbol-Editor zum Editieren einfacher Icons.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6626"/>
+        <location filename="../UI/UserInterface.py" line="6630"/>
         <location filename="../UI/UserInterface.py" line="3172"/>
         <source>Snapshot</source>
         <translation>Bildschirmfoto</translation>
@@ -92628,8 +92643,8 @@
         <translation>&lt;b&gt;Tastaturkurzbefehle&lt;/b&gt;&lt;p&gt;Setze die Tastaturkurzbefehle der Applikation mit den bevorzugten Werten.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7591"/>
-        <location filename="../UI/UserInterface.py" line="7572"/>
+        <location filename="../UI/UserInterface.py" line="7598"/>
+        <location filename="../UI/UserInterface.py" line="7579"/>
         <location filename="../UI/UserInterface.py" line="3402"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Tastaturkurzbefehle exportieren</translation>
@@ -92650,7 +92665,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="7610"/>
+        <location filename="../UI/UserInterface.py" line="7617"/>
         <location filename="../UI/UserInterface.py" line="3421"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Tastaturkurzbefehle importieren</translation>
@@ -93059,7 +93074,7 @@
         <translation>Einstellungen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6354"/>
+        <location filename="../UI/UserInterface.py" line="6358"/>
         <location filename="../UI/UserInterface.py" line="4194"/>
         <location filename="../UI/UserInterface.py" line="4179"/>
         <source>Help</source>
@@ -93237,315 +93252,315 @@
         <translation>Alle &amp;ausblenden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6491"/>
-        <location filename="../UI/UserInterface.py" line="6480"/>
-        <location filename="../UI/UserInterface.py" line="6432"/>
-        <location filename="../UI/UserInterface.py" line="6422"/>
-        <location filename="../UI/UserInterface.py" line="6245"/>
-        <location filename="../UI/UserInterface.py" line="6235"/>
-        <location filename="../UI/UserInterface.py" line="6177"/>
-        <location filename="../UI/UserInterface.py" line="6167"/>
+        <location filename="../UI/UserInterface.py" line="6495"/>
+        <location filename="../UI/UserInterface.py" line="6484"/>
+        <location filename="../UI/UserInterface.py" line="6436"/>
+        <location filename="../UI/UserInterface.py" line="6426"/>
+        <location filename="../UI/UserInterface.py" line="6249"/>
+        <location filename="../UI/UserInterface.py" line="6239"/>
+        <location filename="../UI/UserInterface.py" line="6181"/>
+        <location filename="../UI/UserInterface.py" line="6171"/>
         <source>Problem</source>
         <translation>Problem</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6492"/>
-        <location filename="../UI/UserInterface.py" line="6481"/>
-        <location filename="../UI/UserInterface.py" line="6433"/>
-        <location filename="../UI/UserInterface.py" line="6423"/>
-        <location filename="../UI/UserInterface.py" line="6246"/>
-        <location filename="../UI/UserInterface.py" line="6236"/>
-        <location filename="../UI/UserInterface.py" line="6178"/>
-        <location filename="../UI/UserInterface.py" line="6168"/>
+        <location filename="../UI/UserInterface.py" line="6496"/>
+        <location filename="../UI/UserInterface.py" line="6485"/>
+        <location filename="../UI/UserInterface.py" line="6437"/>
+        <location filename="../UI/UserInterface.py" line="6427"/>
+        <location filename="../UI/UserInterface.py" line="6250"/>
+        <location filename="../UI/UserInterface.py" line="6240"/>
+        <location filename="../UI/UserInterface.py" line="6182"/>
+        <location filename="../UI/UserInterface.py" line="6172"/>
         <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="6735"/>
-        <location filename="../UI/UserInterface.py" line="6646"/>
-        <location filename="../UI/UserInterface.py" line="6527"/>
-        <location filename="../UI/UserInterface.py" line="6504"/>
-        <location filename="../UI/UserInterface.py" line="6445"/>
-        <location filename="../UI/UserInterface.py" line="6392"/>
-        <location filename="../UI/UserInterface.py" line="6370"/>
-        <location filename="../UI/UserInterface.py" line="6321"/>
-        <location filename="../UI/UserInterface.py" line="6312"/>
-        <location filename="../UI/UserInterface.py" line="6277"/>
-        <location filename="../UI/UserInterface.py" line="6268"/>
-        <location filename="../UI/UserInterface.py" line="6209"/>
-        <location filename="../UI/UserInterface.py" line="6200"/>
+        <location filename="../UI/UserInterface.py" line="6739"/>
+        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6531"/>
+        <location filename="../UI/UserInterface.py" line="6508"/>
+        <location filename="../UI/UserInterface.py" line="6449"/>
+        <location filename="../UI/UserInterface.py" line="6396"/>
+        <location filename="../UI/UserInterface.py" line="6374"/>
+        <location filename="../UI/UserInterface.py" line="6325"/>
+        <location filename="../UI/UserInterface.py" line="6316"/>
+        <location filename="../UI/UserInterface.py" line="6281"/>
+        <location filename="../UI/UserInterface.py" line="6272"/>
+        <location filename="../UI/UserInterface.py" line="6213"/>
+        <location filename="../UI/UserInterface.py" line="6204"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6201"/>
+        <location filename="../UI/UserInterface.py" line="6205"/>
         <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="6210"/>
+        <location filename="../UI/UserInterface.py" line="6214"/>
         <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Qt-Designer Programm konnte nicht gefunden werden.&lt;br&gt;Stelle sicher, dass es installiert und optional auf der Qt Konfigurationsseite konfiguriert ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6269"/>
+        <location filename="../UI/UserInterface.py" line="6273"/>
         <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="6278"/>
+        <location filename="../UI/UserInterface.py" line="6282"/>
         <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Qt-Linguist Programm konnte nicht gefunden werden.&lt;br&gt;Stelle sicher, dass es installiert und optional auf der Qt Konfigurationsseite konfiguriert ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
+        <location filename="../UI/UserInterface.py" line="6317"/>
         <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="6322"/>
+        <location filename="../UI/UserInterface.py" line="6326"/>
         <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Qt-Assistant Programm konnte nicht gefunden werden.&lt;br&gt;Stelle sicher, dass es installiert und optional auf der Qt Konfigurationsseite konfiguriert ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6355"/>
+        <location filename="../UI/UserInterface.py" line="6359"/>
         <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="6371"/>
+        <location filename="../UI/UserInterface.py" line="6375"/>
         <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="6393"/>
+        <location filename="../UI/UserInterface.py" line="6397"/>
         <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>
     <message>
-        <location filename="../UI/UserInterface.py" line="6446"/>
+        <location filename="../UI/UserInterface.py" line="6450"/>
         <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die UI-Vorschau konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass sie als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6505"/>
+        <location filename="../UI/UserInterface.py" line="6509"/>
         <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Übersetzungsvorschau konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass sie als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6528"/>
+        <location filename="../UI/UserInterface.py" line="6532"/>
         <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der SQL-Browser konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass er als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6627"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Bildschirmfotofunktion steht für Wayland basierte Desktop-Umgebungen nicht zur Verfügung.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6647"/>
+        <location filename="../UI/UserInterface.py" line="6651"/>
         <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="6680"/>
-        <location filename="../UI/UserInterface.py" line="6670"/>
+        <location filename="../UI/UserInterface.py" line="6684"/>
+        <location filename="../UI/UserInterface.py" line="6674"/>
         <source>External Tools</source>
         <translation>Externe Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6671"/>
+        <location filename="../UI/UserInterface.py" line="6675"/>
         <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="6681"/>
+        <location filename="../UI/UserInterface.py" line="6685"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation>Kein Werkzeuggruppeneintrag „{0}“ gefunden.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6718"/>
+        <location filename="../UI/UserInterface.py" line="6722"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Starte Prozess „{0} {1}“.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6736"/>
+        <location filename="../UI/UserInterface.py" line="6740"/>
         <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="6815"/>
+        <location filename="../UI/UserInterface.py" line="6819"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>Prozess „{0}“ ist beendet.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7102"/>
-        <location filename="../UI/UserInterface.py" line="7040"/>
-        <location filename="../UI/UserInterface.py" line="6996"/>
-        <location filename="../UI/UserInterface.py" line="6922"/>
-        <location filename="../UI/UserInterface.py" line="6858"/>
+        <location filename="../UI/UserInterface.py" line="7106"/>
+        <location filename="../UI/UserInterface.py" line="7044"/>
+        <location filename="../UI/UserInterface.py" line="7000"/>
+        <location filename="../UI/UserInterface.py" line="6926"/>
+        <location filename="../UI/UserInterface.py" line="6862"/>
         <source>Documentation Missing</source>
         <translation>Dokumentation fehlt</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7103"/>
-        <location filename="../UI/UserInterface.py" line="7041"/>
-        <location filename="../UI/UserInterface.py" line="6997"/>
-        <location filename="../UI/UserInterface.py" line="6923"/>
-        <location filename="../UI/UserInterface.py" line="6859"/>
+        <location filename="../UI/UserInterface.py" line="7107"/>
+        <location filename="../UI/UserInterface.py" line="7045"/>
+        <location filename="../UI/UserInterface.py" line="7001"/>
+        <location filename="../UI/UserInterface.py" line="6927"/>
+        <location filename="../UI/UserInterface.py" line="6863"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Dokumentationsstartpunkt „&lt;b&gt;{0}&lt;/b&gt;“ konnte nicht gefunden werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7084"/>
-        <location filename="../UI/UserInterface.py" line="6966"/>
+        <location filename="../UI/UserInterface.py" line="7088"/>
+        <location filename="../UI/UserInterface.py" line="6970"/>
         <source>Documentation</source>
         <translation>Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6967"/>
+        <location filename="../UI/UserInterface.py" line="6971"/>
         <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der PyQt{0}-Dokumentations-Startpunkt ist nicht konfiguriert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7085"/>
+        <location filename="../UI/UserInterface.py" line="7089"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der PySide{0}-Dokumentations-Startpunkt ist nicht konfiguriert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7264"/>
-        <location filename="../UI/UserInterface.py" line="7200"/>
+        <location filename="../UI/UserInterface.py" line="7268"/>
+        <location filename="../UI/UserInterface.py" line="7204"/>
         <source>Start Web Browser</source>
         <translation>Web Browser starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7201"/>
+        <location filename="../UI/UserInterface.py" line="7205"/>
         <source>The eric web browser could not be started.</source>
         <translation>Der eric Web Browser konnte nicht gestartet werden.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7265"/>
+        <location filename="../UI/UserInterface.py" line="7269"/>
         <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der eric Web Browser ist nicht gestartet.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7311"/>
+        <location filename="../UI/UserInterface.py" line="7315"/>
         <source>Open Browser</source>
         <translation>Browser starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7311"/>
+        <location filename="../UI/UserInterface.py" line="7315"/>
         <source>Could not start a web browser</source>
         <translation>Der System Web Browser konnte nicht gestartet werden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7612"/>
-        <location filename="../UI/UserInterface.py" line="7574"/>
+        <location filename="../UI/UserInterface.py" line="7619"/>
+        <location filename="../UI/UserInterface.py" line="7581"/>
         <source>Keyboard Shortcuts File (*.ekj)</source>
         <translation>Tastaturkurzbefehlsdatei (*.ekj)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7592"/>
+        <location filename="../UI/UserInterface.py" line="7599"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Tastaturkurzbefehlsdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7796"/>
+        <location filename="../UI/UserInterface.py" line="7803"/>
         <source>Load crash session...</source>
         <translation>Absturzsicherung laden...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7799"/>
+        <location filename="../UI/UserInterface.py" line="7806"/>
         <source>Clean crash sessions...</source>
         <translation>Absturzsicherungen bereinigen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7836"/>
+        <location filename="../UI/UserInterface.py" line="7843"/>
         <source>Read Session</source>
         <translation>Sitzung lesen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7837"/>
+        <location filename="../UI/UserInterface.py" line="7844"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Sitzungsdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7860"/>
+        <location filename="../UI/UserInterface.py" line="7867"/>
         <source>Save Session</source>
         <translation>Sitzung speichern</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7885"/>
-        <location filename="../UI/UserInterface.py" line="7862"/>
+        <location filename="../UI/UserInterface.py" line="7892"/>
+        <location filename="../UI/UserInterface.py" line="7869"/>
         <source>eric Session Files (*.esj)</source>
         <translation>eric Sitzungsdateien (*.esj)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7954"/>
+        <location filename="../UI/UserInterface.py" line="7961"/>
         <source>Found Crash Sessions</source>
         <translation>Absturzsicherungen gefunden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7955"/>
+        <location filename="../UI/UserInterface.py" line="7962"/>
         <source>These crash session files were found. Select the one to open. Select &apos;Cancel&apos; to not open a crash session.</source>
         <translation>Diese Absturzsicherungen wurden gefunden. Wähle die zu öffnende aus. Wähle &apos;Abbrechen&apos;, wenn keine geladen werden soll.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8028"/>
+        <location filename="../UI/UserInterface.py" line="8035"/>
         <source>Clean stale crash sessions</source>
         <translation>Veraltete Absturzsicherungen bereinigen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8029"/>
+        <location filename="../UI/UserInterface.py" line="8036"/>
         <source>Do you really want to delete these stale crash session files?</source>
         <translation>Sollen wirklich diese veralteten Absturzsicherungen gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8405"/>
+        <location filename="../UI/UserInterface.py" line="8412"/>
         <source>Drop Error</source>
         <translation>Drop-Fehler</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8406"/>
+        <location filename="../UI/UserInterface.py" line="8413"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; ist keine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8594"/>
+        <location filename="../UI/UserInterface.py" line="8605"/>
         <source>Upgrade available</source>
         <translation>Aktualisierung verfügbar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8595"/>
+        <location filename="../UI/UserInterface.py" line="8606"/>
         <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href=&quot;{0}/eric-ide/&quot;&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Eine neuere Version des &lt;b&gt;eric-ide&lt;/b&gt; Paketes ist auf &lt;a href=&quot;{0}/eric-ide/&quot;&gt;PyPI&lt;/a&gt; verfügbar.&lt;/p&gt;&lt;p&gt;Installiert: {1}&lt;br/&gt;Verfügbar: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Soll &lt;b&gt;eric-ide&lt;/b&gt; aktualisiert werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8640"/>
+        <location filename="../UI/UserInterface.py" line="8651"/>
         <source>First time usage</source>
         <translation>Erstmalige Nutzung</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8641"/>
+        <location filename="../UI/UserInterface.py" line="8652"/>
         <source>eric has not been configured yet. The configuration dialog will be started.</source>
         <translation>eric wurde noch nicht konfiguriert. Der Konfigurationsdialog wird nun gestartet.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8663"/>
+        <location filename="../UI/UserInterface.py" line="8674"/>
         <source>Select Workspace Directory</source>
         <translation>Wähle Arbeitsverzeichnis</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8831"/>
+        <location filename="../UI/UserInterface.py" line="8842"/>
         <source>Unsaved Data Detected</source>
         <translation>Nicht gespeicherte Daten gefunden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="8832"/>
+        <location filename="../UI/UserInterface.py" line="8843"/>
         <source>Some editors contain unsaved data. Shall these be saved?</source>
         <translation>Einige Editoren haben nicht gespeicherte Inhalte. Sollen diese gespeichert werden?</translation>
     </message>
@@ -94253,8 +94268,8 @@
         <translation>Versionskontrolle – Git</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginVcsGit.py" line="134"/>
-        <location filename="../Plugins/PluginVcsGit.py" line="98"/>
+        <location filename="../Plugins/PluginVcsGit.py" line="133"/>
+        <location filename="../Plugins/PluginVcsGit.py" line="97"/>
         <source>Git</source>
         <translation>Git</translation>
     </message>
@@ -94468,156 +94483,156 @@
 <context>
     <name>VcsProjectHelper</name>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="76"/>
+        <location filename="../VCS/ProjectHelper.py" line="77"/>
         <source>New from repository</source>
         <translation>Neu aus Repository</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="78"/>
+        <location filename="../VCS/ProjectHelper.py" line="79"/>
         <source>&amp;New from repository...</source>
         <translation>&amp;Neu aus Repository...</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="85"/>
+        <location filename="../VCS/ProjectHelper.py" line="86"/>
         <source>Create a new project from the VCS repository</source>
         <translation>Erzeuge ein neues Projekt aus dem VCS-Repository</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="90"/>
+        <location filename="../VCS/ProjectHelper.py" line="91"/>
         <source>&lt;b&gt;New from repository&lt;/b&gt;&lt;p&gt;This creates a new local project from the VCS repository.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neu aus Repository&lt;/b&gt;&lt;p&gt;Dies erzeugt ein neues Projekt aus dem VCS-Repository.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="101"/>
+        <location filename="../VCS/ProjectHelper.py" line="102"/>
         <source>Export from repository</source>
         <translation>Export aus Repository</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="103"/>
+        <location filename="../VCS/ProjectHelper.py" line="104"/>
         <source>&amp;Export from repository...</source>
         <translation>&amp;Export aus Repository...</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="112"/>
+        <location filename="../VCS/ProjectHelper.py" line="113"/>
         <source>Export a project from the repository</source>
         <translation>Exportiert ein Projekt aus dem Repository</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="117"/>
+        <location filename="../VCS/ProjectHelper.py" line="118"/>
         <source>&lt;b&gt;Export from repository&lt;/b&gt;&lt;p&gt;This exports a project from the repository.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Export aus Repository&lt;/b&lt;&lt;p&gt;Dies exportiert ein Projekt aus dem Repository.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="127"/>
+        <location filename="../VCS/ProjectHelper.py" line="128"/>
         <source>Add to repository</source>
         <translation>Zum Repository hinzufügen</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="129"/>
+        <location filename="../VCS/ProjectHelper.py" line="130"/>
         <source>&amp;Add to repository...</source>
         <translation>Zum Repository &amp;hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="136"/>
+        <location filename="../VCS/ProjectHelper.py" line="137"/>
         <source>Add the local project to the VCS repository</source>
         <translation>Fügt das lokale Projekt zum VCS-Repository hinzu</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="141"/>
+        <location filename="../VCS/ProjectHelper.py" line="142"/>
         <source>&lt;b&gt;Add to repository&lt;/b&gt;&lt;p&gt;This adds (imports) the local project to the VCS repository.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zum Repository hinzufügen&lt;/b&gt;&lt;p&gt;Dies fügt das lokale Projekt zum VCS-Repository hinzu (Import).&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="192"/>
-        <location filename="../VCS/ProjectHelper.py" line="190"/>
+        <location filename="../VCS/ProjectHelper.py" line="193"/>
+        <location filename="../VCS/ProjectHelper.py" line="191"/>
         <source>VCS</source>
         <translation>Versionskontrollsystem</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="265"/>
-        <location filename="../VCS/ProjectHelper.py" line="236"/>
+        <location filename="../VCS/ProjectHelper.py" line="266"/>
+        <location filename="../VCS/ProjectHelper.py" line="237"/>
         <source>New Project</source>
         <translation>Neues Projekt</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="462"/>
-        <location filename="../VCS/ProjectHelper.py" line="237"/>
+        <location filename="../VCS/ProjectHelper.py" line="465"/>
+        <location filename="../VCS/ProjectHelper.py" line="238"/>
         <source>Select version control system for the project</source>
         <translation>Wähle das Versionskontrollsystem für das Projekt</translation>
     </message>
     <message>
+        <location filename="../VCS/ProjectHelper.py" line="497"/>
+        <location filename="../VCS/ProjectHelper.py" line="267"/>
+        <source>Would you like to edit the VCS command options?</source>
+        <translation>Möchten Sie die VCS-Befehlsoptionen bearbeiten?</translation>
+    </message>
+    <message>
+        <location filename="../VCS/ProjectHelper.py" line="287"/>
+        <source>Create project directory</source>
+        <translation>Projektverzeichnis erstellen</translation>
+    </message>
+    <message>
+        <location filename="../VCS/ProjectHelper.py" line="290"/>
+        <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Das Projektverzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht erstellt werden.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../VCS/ProjectHelper.py" line="396"/>
+        <location filename="../VCS/ProjectHelper.py" line="380"/>
+        <location filename="../VCS/ProjectHelper.py" line="336"/>
+        <location filename="../VCS/ProjectHelper.py" line="316"/>
+        <source>New project from repository</source>
+        <translation>Neues Projekt aus Repository</translation>
+    </message>
+    <message>
+        <location filename="../VCS/ProjectHelper.py" line="319"/>
+        <source>Select a project file to open.</source>
+        <translation>Wähle eine zu öffnende Projektdatei aus.</translation>
+    </message>
+    <message>
+        <location filename="../VCS/ProjectHelper.py" line="339"/>
+        <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
+        <translation>Das aus dem Repository geladene Projekt enthält keine eric-Projektdatei (*.epj). Soll sie erzeugt werden?</translation>
+    </message>
+    <message>
+        <location filename="../VCS/ProjectHelper.py" line="384"/>
+        <source>Shall the project file be added to the repository?</source>
+        <translation>Soll die Projektdatei zum Repository hinzugefügt werden?</translation>
+    </message>
+    <message>
+        <location filename="../VCS/ProjectHelper.py" line="399"/>
+        <source>The project could not be retrieved from the repository.</source>
+        <translation>Das Project konnte nicht aus dem Repository geladen werden.</translation>
+    </message>
+    <message>
         <location filename="../VCS/ProjectHelper.py" line="494"/>
-        <location filename="../VCS/ProjectHelper.py" line="266"/>
-        <source>Would you like to edit the VCS command options?</source>
-        <translation>Möchten Sie die VCS-Befehlsoptionen bearbeiten?</translation>
-    </message>
-    <message>
-        <location filename="../VCS/ProjectHelper.py" line="286"/>
-        <source>Create project directory</source>
-        <translation>Projektverzeichnis erstellen</translation>
-    </message>
-    <message>
-        <location filename="../VCS/ProjectHelper.py" line="289"/>
-        <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Das Projektverzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht erstellt werden.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../VCS/ProjectHelper.py" line="393"/>
-        <location filename="../VCS/ProjectHelper.py" line="377"/>
-        <location filename="../VCS/ProjectHelper.py" line="335"/>
-        <location filename="../VCS/ProjectHelper.py" line="315"/>
-        <source>New project from repository</source>
-        <translation>Neues Projekt aus Repository</translation>
-    </message>
-    <message>
-        <location filename="../VCS/ProjectHelper.py" line="318"/>
-        <source>Select a project file to open.</source>
-        <translation>Wähle eine zu öffnende Projektdatei aus.</translation>
-    </message>
-    <message>
-        <location filename="../VCS/ProjectHelper.py" line="338"/>
-        <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
-        <translation>Das aus dem Repository geladene Projekt enthält keine eric-Projektdatei (*.epj). Soll sie erzeugt werden?</translation>
-    </message>
-    <message>
-        <location filename="../VCS/ProjectHelper.py" line="381"/>
-        <source>Shall the project file be added to the repository?</source>
-        <translation>Soll die Projektdatei zum Repository hinzugefügt werden?</translation>
-    </message>
-    <message>
-        <location filename="../VCS/ProjectHelper.py" line="396"/>
-        <source>The project could not be retrieved from the repository.</source>
-        <translation>Das Project konnte nicht aus dem Repository geladen werden.</translation>
-    </message>
-    <message>
-        <location filename="../VCS/ProjectHelper.py" line="491"/>
-        <location filename="../VCS/ProjectHelper.py" line="461"/>
+        <location filename="../VCS/ProjectHelper.py" line="464"/>
         <source>Import Project</source>
         <translation>Projekt importieren</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="535"/>
+        <location filename="../VCS/ProjectHelper.py" line="540"/>
         <source>Update</source>
         <translation>Aktualisieren</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="669"/>
-        <location filename="../VCS/ProjectHelper.py" line="536"/>
+        <location filename="../VCS/ProjectHelper.py" line="674"/>
+        <location filename="../VCS/ProjectHelper.py" line="541"/>
         <source>The project should be reread. Do this now?</source>
         <translation>Das Projekt sollte neu gelesen werde. Jetzt durchführen?</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="572"/>
+        <location filename="../VCS/ProjectHelper.py" line="577"/>
         <source>Remove project from repository</source>
         <translation>Projekt aus dem Repository löschen</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="575"/>
+        <location filename="../VCS/ProjectHelper.py" line="580"/>
         <source>Dou you really want to remove this project from the repository (and disk)?</source>
         <translation>Wollen Sie wirklich das Projekt vom Repository (und der Platte) löschen?</translation>
     </message>
     <message>
-        <location filename="../VCS/ProjectHelper.py" line="668"/>
+        <location filename="../VCS/ProjectHelper.py" line="673"/>
         <source>Switch</source>
         <translation>Umschalten</translation>
     </message>
@@ -99631,54 +99646,54 @@
 <context>
     <name>VirtualenvManager</name>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="318"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="322"/>
         <source>Add Virtual Environment</source>
         <translation>Virtuelle Umgebung hinzufügen</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="319"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="323"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
         <translation>Eine virtuelle Umgebung mit Namen &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Soll sie ersetzt werden?</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="356"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="362"/>
         <source>Change Virtual Environment</source>
         <translation>Virtuelle Umgebung ändern</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="389"/>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="357"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="395"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="363"/>
         <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
         <translation>Eine virtuelle Umgebung mit Namen &lt;b&gt;{0}&lt;/b&gt; existiert nicht. Abbruch!</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="388"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="394"/>
         <source>Rename Virtual Environment</source>
         <translation>Virtuelle Umgebung umbenennen</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="480"/>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="413"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="486"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="419"/>
         <source>{0} - {1}</source>
         <translation>{0} – {1}</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="420"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="426"/>
         <source>Delete Virtual Environments</source>
         <translation>Virtuelle Umgebung löschen</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="421"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="427"/>
         <source>Do you really want to delete these virtual environments?</source>
         <translation>Sollen diese virtuellen Umgebungen wirklich gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="487"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="493"/>
         <source>Remove Virtual Environments</source>
         <translation>Virtuelle Umgebung entfernen</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManager.py" line="488"/>
+        <location filename="../VirtualEnv/VirtualenvManager.py" line="494"/>
         <source>Do you really want to remove these virtual environments?</source>
         <translation>Sollen diese virtuellen Umgebungen wirklich entfernt werden?</translation>
     </message>
@@ -99686,7 +99701,7 @@
 <context>
     <name>VirtualenvManagerDialog</name>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448"/>
+        <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="449"/>
         <source>Manage Virtual Environments</source>
         <translation>Virtuelle Umgebungen verwalten</translation>
     </message>
@@ -99810,7 +99825,7 @@
 <context>
     <name>VirtualenvManagerWindow</name>
     <message>
-        <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488"/>
+        <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="489"/>
         <source>Manage Virtual Environments</source>
         <translation>Virtuelle Umgebungen verwalten</translation>
     </message>
@@ -104950,22 +104965,22 @@
         <translation>Zeige WLAN Status</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="125"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="117"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="127"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="119"/>
         <location filename="../MicroPython/WifiDialogs/WifiController.py" line="49"/>
         <source>Connect WiFi</source>
         <translation>WLAN verbinden</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="173"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="167"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="175"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="169"/>
         <location filename="../MicroPython/WifiDialogs/WifiController.py" line="50"/>
         <source>Check Internet Connection</source>
         <translation>Internetverbindung prüfen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="147"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="141"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="149"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="143"/>
         <location filename="../MicroPython/WifiDialogs/WifiController.py" line="51"/>
         <source>Disconnect WiFi</source>
         <translation>WLAN trennen</translation>
@@ -104976,40 +104991,40 @@
         <translation>Netzwerkscan</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="244"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="235"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="225"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="215"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="249"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="240"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="230"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="220"/>
         <location filename="../MicroPython/WifiDialogs/WifiController.py" line="55"/>
         <source>Write WiFi Credentials</source>
         <translation>WLAN Berechtigungen schreiben</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="282"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="272"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="261"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="287"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="277"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="266"/>
         <location filename="../MicroPython/WifiDialogs/WifiController.py" line="56"/>
         <source>Remove WiFi Credentials</source>
         <translation>WLAN Berechtigungen löschen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="495"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="486"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="500"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="491"/>
         <location filename="../MicroPython/WifiDialogs/WifiController.py" line="58"/>
         <source>Enable WebREPL</source>
         <translation>WebREPL aktivieren</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="529"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="520"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="512"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="534"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="525"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="517"/>
         <location filename="../MicroPython/WifiDialogs/WifiController.py" line="59"/>
         <source>Disable WebREPL</source>
         <translation>WebREPL deaktivieren</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="313"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="329"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="318"/>
         <location filename="../MicroPython/WifiDialogs/WifiController.py" line="61"/>
         <source>Start WiFi Access Point</source>
         <translation>WLAN Access Point starten</translation>
@@ -105020,14 +105035,14 @@
         <translation>WLAN Access Point mit IP starten</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="378"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="383"/>
         <location filename="../MicroPython/WifiDialogs/WifiController.py" line="66"/>
         <source>Show Connected Clients</source>
         <translation>Zeige verbundene Geräte</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="345"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="359"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="350"/>
         <location filename="../MicroPython/WifiDialogs/WifiController.py" line="68"/>
         <source>Stop WiFi Access Point</source>
         <translation>WLAN Access Point stoppen</translation>
@@ -105043,186 +105058,186 @@
         <translation>Deaktiviere Access Point Schnittstelle</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="464"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="448"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="428"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="419"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="469"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="433"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="424"/>
         <location filename="../MicroPython/WifiDialogs/WifiController.py" line="79"/>
         <source>Set Network Time</source>
         <translation>Netzwerkzeit setzen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="118"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="120"/>
         <source>&lt;p&gt;The device was connected to &lt;b&gt;{0}&lt;/b&gt; successfully.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Gerät wurde erfolgreich mit &lt;b&gt;{0}&lt;/b&gt; verbunden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="126"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="128"/>
         <source>&lt;p&gt;The device could not connect to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Gerät konnte nicht mit &lt;b&gt;{0}&lt;/b&gt; verbunden werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="533"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="499"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="286"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="248"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="150"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="129"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="538"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="504"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="291"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="253"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="178"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="152"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="131"/>
         <source>unknown</source>
         <translation>unbekannt</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="142"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="144"/>
         <source>&lt;p&gt;The device was disconnected from the WiFi network.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Gerät wurde vom WLAN Netzwerk getrennt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="148"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="150"/>
         <source>&lt;p&gt;The device could not be disconnected.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Gerät konnte nicht getrennt werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="161"/>
-        <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Die Internetverbindung ist &lt;b&gt;verfügbar&lt;/b&gt;.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../MicroPython/WifiDialogs/WifiController.py" line="163"/>
+        <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Die Internetverbindung ist &lt;b&gt;verfügbar&lt;/b&gt;.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="165"/>
         <source>&lt;p&gt;The internet connection is &lt;b&gt;not available&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Internetverbindung ist &lt;b&gt;nicht verfügbar&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="174"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176"/>
         <source>&lt;p&gt;The internet is not available.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Internet ist nicht verfügbar.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="236"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="216"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="241"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="221"/>
         <source>&lt;p&gt;The WiFi credentials were saved on the device. The device will connect to the WiFi network at boot time.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die WLAN Berechtigungen wurden auf dem Gerät gespeichert. Das Gerät wird sich beim Start mit dem WLAN Netzwerk verbinden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="226"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="231"/>
         <source>&lt;p&gt;The WiFi credentials and a connect script were saved on the device. Use the script by simply importing it.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die WLAN Berechtigungen wurden auf dem Gerät gespeichert. Verwende das Skript durch einen simplen Import.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="245"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="250"/>
         <source>&lt;p&gt;The WiFi credentials could not be saved on the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die WLAN Berechtigungen konnten nicht auf dem Gerät gespeichert werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="262"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="267"/>
         <source>Shall the saved WiFi credentials really be removed from the connected device?</source>
         <translation>Sollen die gespeicherten WLAN Berechtigungen wirklich vom verbundenen Gerät gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="273"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="278"/>
         <source>&lt;p&gt;The WiFi credentials were removed from the device. The device will not connect to the WiFi network at boot time anymore.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die WLAN Berechtigungen wurden auf dem Gerät gelöscht. Das Gerät wird sich beim Start nicht mehr mit dem WLAN Netzwerk verbinden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="283"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="288"/>
         <source>&lt;p&gt;The WiFi credentials could not be removed from the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die WLAN Berechtigungen konnten nicht auf dem Gerät gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="314"/>
-        <source>The WiFi Access Point interface was started successfully.</source>
-        <translation>Die WLAN Access Point Schnittstelle wurde erfolgreich gestartet.</translation>
-    </message>
-    <message>
         <location filename="../MicroPython/WifiDialogs/WifiController.py" line="319"/>
+        <source>The WiFi Access Point interface was started successfully.</source>
+        <translation>Die WLAN Access Point Schnittstelle wurde erfolgreich gestartet.</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324"/>
         <source>&lt;p&gt;The WiFi Access Point could not be started.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der WLAN Access Point konnte nicht gestartet werden.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="405"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="356"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="326"/>
+        <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351"/>
+        <source>The WiFi Access Point interface was stopped successfully.</source>
+        <translation>Die WLAN Access Point Schnittstelle wurde erfolgreich gestoppt.</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354"/>
+        <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Der WLAN Access Point konnte nicht gestoppt werden.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="384"/>
+        <source>No clients are connected to the access point.</source>
+        <translation>Es sind keine Geräte mit dem Access Point verbunden.</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="408"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="399"/>
+        <source>Deactivate WiFi Interface</source>
+        <translation>WLAN Schnittstelle deaktivieren</translation>
+    </message>
+    <message>
         <location filename="../MicroPython/WifiDialogs/WifiController.py" line="400"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="321"/>
-        <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="346"/>
-        <source>The WiFi Access Point interface was stopped successfully.</source>
-        <translation>Die WLAN Access Point Schnittstelle wurde erfolgreich gestoppt.</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="349"/>
-        <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Der WLAN Access Point konnte nicht gestoppt werden.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="379"/>
-        <source>No clients are connected to the access point.</source>
-        <translation>Es sind keine Geräte mit dem Access Point verbunden.</translation>
+        <source>The WiFi interface was deactivated successfully.</source>
+        <translation>Die WLAN Schnittstelle wurde erfolgreich deaktiviert.</translation>
     </message>
     <message>
         <location filename="../MicroPython/WifiDialogs/WifiController.py" line="403"/>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="394"/>
-        <source>Deactivate WiFi Interface</source>
-        <translation>WLAN Schnittstelle deaktivieren</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="395"/>
-        <source>The WiFi interface was deactivated successfully.</source>
-        <translation>Die WLAN Schnittstelle wurde erfolgreich deaktiviert.</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="398"/>
         <source>&lt;p&gt;The WiFi interface could not be deactivated.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die WLAN Schnittstelle konnte nicht deaktiviert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="420"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="425"/>
         <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;adafruit_ntp&lt;/b&gt; is not installed.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Gerät unterstützt nicht die Netzwerkzeitsynchronisation. Das Modul &lt;b&gt;adafruit_ntp&lt;/b&gt; ist nicht installiert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="429"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="434"/>
         <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;ntptime&lt;/b&gt; is not available.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Gerät unterstützt nicht die Netzwerkzeitsynchronisation. Das Modul &lt;b&gt;ntptime&lt;/b&gt; ist nicht verfügbar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="449"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="454"/>
         <source>The device time was synchronized successfully.</source>
         <translation>Die Gerätezeit wurde erfolgreich synchronisiert.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453"/>
-        <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Die Gerätezeit konnte nicht synchronisiert werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../MicroPython/WifiDialogs/WifiController.py" line="458"/>
+        <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Die Gerätezeit konnte nicht synchronisiert werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="463"/>
         <source>&lt;p&gt;The device time could not be synchronized. Is the device connected to a WiFi network?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Gerätezeit konnte nicht synchronisiert werden. Ist das Gerät mit einem WLAN Netzwerk verbunden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="487"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="492"/>
         <source>&lt;p&gt;The WebREPL server of the device will be activated after a reboot.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der WebREPL Server des Gerätes wird nach einem Neustart aktiviert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="496"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="501"/>
         <source>&lt;p&gt;The WebREPL server of the device could not be enabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der WebREPL Server des Gerätes konnte nicht aktiviert werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="513"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="518"/>
         <source>Shall the WebREPL server of the device really be disabled?</source>
         <translation>Soll der WebREPL Server des Gerätes wirklich deaktiviert werden?</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="521"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="526"/>
         <source>&lt;p&gt;The WebREPL server of the device will not be enabled at boot time anymore.&lt;/p&gt;</source>
         <translation>&lt;p&gt; Der WebREPL Server des Geräts wird nicht mehr beim Start aktiviert. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="530"/>
+        <location filename="../MicroPython/WifiDialogs/WifiController.py" line="535"/>
         <source>&lt;p&gt;The WebREPL server of the device could not be disabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt; Der WebREPL Server des Geräts konnte nicht deaktiviert werden. &lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
@@ -105787,32 +105802,32 @@
 <context>
     <name>mercurial</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1349"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1383"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Vorgänger #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Änderungssatz&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1913"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1357"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1955"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1391"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Marken&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1919"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1363"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1961"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1397"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Lesezeichen&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926"/>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1370"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1968"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1404"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zweige&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1410"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
@@ -105821,7 +105836,7 @@
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed um&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1395"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1429"/>
         <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -105832,38 +105847,38 @@
         <translation></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1887"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1929"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Kopf #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1894"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1936"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Vorgänger #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1901"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1943"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Spitze&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1906"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1948"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Änderungssatz&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1933"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1975"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Vorgänger&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1981"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -106527,17 +106542,17 @@
 <context>
     <name>subversion</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1736"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1769"/>
         <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;h3&gt;Repositoryinformationen&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Aktuelle Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Eingepflegte Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Einpflegedatum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Einpflegezeit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Letzter Autor&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1888"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1919"/>
         <source>unknown</source>
         <translation>Unbekannt</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1892"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1923"/>
         <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;h3&gt;Repositoryinformationen&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Aktuelle Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Eingepflegte Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Einpflegedatum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Einpflegezeit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Letzter Autor&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_empty.ts	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/i18n/eric7_empty.ts	Fri Nov 01 18:12:30 2024 +0100
@@ -1970,47 +1970,47 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="281" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="284" />
       <source>Formatting Failure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="282" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="285" />
       <source>&lt;p&gt;Formatting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="545" />
-      <source>would reformat</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../CodeFormatting/BlackFormattingDialog.py" line="548" />
+      <source>would reformat</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="551" />
       <source>reformatted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="553" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="556" />
       <source>unchanged</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="557" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="560" />
       <source>unmodified</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="561" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="564" />
       <source>ignored</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="565" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="568" />
       <source>failed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="570" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="573" />
       <source>invalid status ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -4355,16 +4355,16 @@
   <context>
     <name>CircuitPythonUpdaterInterface</name>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="600" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="592" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="579" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="546" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="516" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="506" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="486" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="469" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="460" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="446" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="615" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="607" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="594" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="561" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="531" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="521" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="501" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="484" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="475" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="54" />
       <source>Install Modules</source>
       <translation type="unfinished" />
@@ -4400,10 +4400,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="385" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="375" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="365" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="346" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="396" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="355" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="95" />
       <source>Update Modules</source>
       <translation type="unfinished" />
@@ -4424,8 +4424,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="642" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="621" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="658" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="636" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="108" />
       <source>Uninstall Modules</source>
       <translation type="unfinished" />
@@ -4446,25 +4446,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="249" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="236" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="225" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="213" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="201" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="188" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="251" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="238" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="227" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="215" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="203" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="190" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="118" />
       <source>Add Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="284" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="269" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="287" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="271" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="119" />
       <source>Remove Bundles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="671" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="689" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="121" />
       <source>Show Local Cache Path</source>
       <translation type="unfinished" />
@@ -4485,132 +4485,132 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="189" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="191" />
       <source>Enter Bundle by 'User/Repo' Github String:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="202" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="204" />
       <source>&lt;p&gt;The bundle &lt;b&gt;{0}&lt;/b&gt; is already in the list.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="214" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="216" />
       <source>&lt;p&gt;The bundle string is invalid, expecting github URL or 'user/repository' string.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="226" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="228" />
       <source>&lt;p&gt;The bundle string is invalid. The repository doesn't exist (error code 404).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="237" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="239" />
       <source>&lt;p&gt;The bundle string is invalid. Is the repository a valid circup bundle?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="250" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="252" />
       <source>&lt;p&gt;Added bundle &lt;b&gt;{0}&lt;/b&gt; ({1}).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="270" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="272" />
       <source>Select the bundles to be removed:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="285" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="288" />
       <source>&lt;p&gt;These bundles were removed from the local bundles list.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="347" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="356" />
       <source>All modules are already up-to-date.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="366" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="377" />
       <source>&lt;p&gt;There was an error updating &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="387" />
       <source>&lt;p&gt;These modules were updated on the connected device.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="397" />
       <source>No modules could be updated.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="448" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="463" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="476" />
       <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not contain valid modules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="470" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="485" />
       <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="488" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="503" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="507" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="522" />
       <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not contain valid import statements or does not import external modules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="517" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="532" />
       <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="547" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="562" />
       <source>&lt;p&gt;Ready to install these modules?{0}{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="552" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="567" />
       <source>Dependencies:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="580" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="595" />
       <source>&lt;p&gt;Installation complete. These modules were installed successfully.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="593" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="608" />
       <source>&lt;p&gt;Installation complete. No modules were installed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="601" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="616" />
       <source>&lt;p&gt;No modules installation is required.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="622" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="637" />
       <source>Select the modules/packages to be uninstalled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="643" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="659" />
       <source>&lt;p&gt;These modules/packages were uninstalled from the connected device.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="672" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="690" />
       <source>&lt;p&gt;&lt;b&gt;circup&lt;/b&gt; stores the downloaded CircuitPython bundles in this directory.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -4618,44 +4618,44 @@
   <context>
     <name>CircupFunctions</name>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="75" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="84" />
       <source>Find Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="76" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="85" />
       <source>&lt;p&gt;There was an error: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="148" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="109" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="157" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="118" />
       <source>Download Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="110" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="119" />
       <source>&lt;p&gt;There was a problem downloading the bundle. Please try again in a moment.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="149" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="158" />
       <source>&lt;p&gt;Missing file &lt;b&gt;boot_out.txt&lt;/b&gt; on the device: wrong path or drive corrupted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="243" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="232" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="252" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="241" />
       <source>Install Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="233" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="242" />
       <source>&lt;p&gt;The compiled version of module &lt;b&gt;{0}&lt;/b&gt; cannot be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="244" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="253" />
       <source>&lt;p&gt;The module name &lt;b&gt;{0}&lt;/b&gt; is not known.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -4779,17 +4779,17 @@
   <context>
     <name>Closehead</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="52" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54" />
       <source>Revision &lt;{0}&gt; closed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="56" />
       <source>Revisions &lt;{0}&gt; closed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="61" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="63" />
       <source>Closing Heads</source>
       <translation type="unfinished" />
     </message>
@@ -6113,19 +6113,19 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1650" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1609" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1652" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1611" />
       <source>{0} - {1}</source>
       <comment>issue code, message</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2995" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2997" />
       <source>Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2996" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2998" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
@@ -7384,7 +7384,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="713" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="715" />
       <location filename="../CondaInterface/CondaPackagesWidget.py" line="181" />
       <source>Delete Environment</source>
       <translation type="unfinished" />
@@ -7431,22 +7431,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="686" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="687" />
       <source>Create Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="714" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="716" />
       <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="739" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="741" />
       <source>Edit Configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="740" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="742" />
       <source>The configuration file "{0}" does not exist or is not writable.</source>
       <translation type="unfinished" />
     </message>
@@ -8789,30 +8789,30 @@
   <context>
     <name>CycloneDX</name>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="190" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="182" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="151" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="115" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="192" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="184" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="153" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="117" />
       <source>CycloneDX - SBOM Creation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="118" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="120" />
       <source>&lt;p&gt;The configured input file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="152" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="154" />
       <source>&lt;p&gt;Some of the dependencies do not have pinned version numbers.&lt;ul&gt;{0}&lt;/ul&gt;The above listed packages will NOT be included in the generated CycloneDX SBOM file as version is a mandatory field.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="183" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="185" />
       <source>&lt;p&gt;The SBOM data was written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="191" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="193" />
       <source>&lt;p&gt;The SBOM file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9154,58 +9154,58 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1355" />
-      <location filename="../Debugger/DebugServer.py" line="1272" />
-      <location filename="../Debugger/DebugServer.py" line="1188" />
-      <location filename="../Debugger/DebugServer.py" line="1098" />
+      <location filename="../Debugger/DebugServer.py" line="1358" />
+      <location filename="../Debugger/DebugServer.py" line="1275" />
+      <location filename="../Debugger/DebugServer.py" line="1191" />
+      <location filename="../Debugger/DebugServer.py" line="1101" />
       <source>Start Debugger</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1356" />
-      <location filename="../Debugger/DebugServer.py" line="1273" />
-      <location filename="../Debugger/DebugServer.py" line="1189" />
-      <location filename="../Debugger/DebugServer.py" line="1099" />
+      <location filename="../Debugger/DebugServer.py" line="1359" />
+      <location filename="../Debugger/DebugServer.py" line="1276" />
+      <location filename="../Debugger/DebugServer.py" line="1192" />
+      <location filename="../Debugger/DebugServer.py" line="1102" />
       <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1945" />
+      <location filename="../Debugger/DebugServer.py" line="1948" />
       <source>
 Not connected
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2110" />
+      <location filename="../Debugger/DebugServer.py" line="2113" />
       <source>Passive debug connection received
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2119" />
+      <location filename="../Debugger/DebugServer.py" line="2122" />
       <source>Passive debug connection received while not in passive mode.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2125" />
+      <location filename="../Debugger/DebugServer.py" line="2128" />
       <source>Debug Client Connection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2126" />
+      <location filename="../Debugger/DebugServer.py" line="2129" />
       <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2141" />
+      <location filename="../Debugger/DebugServer.py" line="2144" />
       <source>Passive debug connection closed
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2272" />
+      <location filename="../Debugger/DebugServer.py" line="2275" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9218,7 +9218,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2374" />
+      <location filename="../Debugger/DebugUI.py" line="2380" />
       <location filename="../Debugger/DebugUI.py" line="234" />
       <source>Run Script</source>
       <translation type="unfinished" />
@@ -9239,8 +9239,8 @@
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="2386" />
       <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="2374" />
       <location filename="../Debugger/DebugUI.py" line="255" />
       <source>Run Project</source>
       <translation type="unfinished" />
@@ -9341,7 +9341,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2567" />
+      <location filename="../Debugger/DebugUI.py" line="2573" />
       <location filename="../Debugger/DebugUI.py" line="365" />
       <source>Debug Script</source>
       <translation type="unfinished" />
@@ -9362,8 +9362,8 @@
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="2579" />
       <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="2567" />
       <location filename="../Debugger/DebugUI.py" line="387" />
       <source>Debug Project</source>
       <translation type="unfinished" />
@@ -9384,7 +9384,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2889" />
+      <location filename="../Debugger/DebugUI.py" line="2895" />
       <location filename="../Debugger/DebugUI.py" line="411" />
       <location filename="../Debugger/DebugUI.py" line="409" />
       <source>Restart</source>
@@ -9823,66 +9823,66 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1775" />
+      <location filename="../Debugger/DebugUI.py" line="1779" />
       <source>Watch Expression Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1776" />
+      <location filename="../Debugger/DebugUI.py" line="1780" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1804" />
+      <location filename="../Debugger/DebugUI.py" line="1810" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1809" />
-      <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="1815" />
+      <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="1821" />
       <source>Watch expression already exists</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1980" />
-      <location filename="../Debugger/DebugUI.py" line="1971" />
+      <location filename="../Debugger/DebugUI.py" line="1986" />
+      <location filename="../Debugger/DebugUI.py" line="1977" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1973" />
+      <location filename="../Debugger/DebugUI.py" line="1979" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2381" />
-      <location filename="../Debugger/DebugUI.py" line="2183" />
-      <location filename="../Debugger/DebugUI.py" line="1981" />
+      <location filename="../Debugger/DebugUI.py" line="2387" />
+      <location filename="../Debugger/DebugUI.py" line="2189" />
+      <location filename="../Debugger/DebugUI.py" line="1987" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2182" />
-      <location filename="../Debugger/DebugUI.py" line="2173" />
+      <location filename="../Debugger/DebugUI.py" line="2188" />
+      <location filename="../Debugger/DebugUI.py" line="2179" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2175" />
+      <location filename="../Debugger/DebugUI.py" line="2181" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2574" />
+      <location filename="../Debugger/DebugUI.py" line="2580" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3246" />
+      <location filename="../Debugger/DebugUI.py" line="3252" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -10045,26 +10045,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="325" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="312" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="336" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="323" />
       <source>Add allowed host</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="349" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="313" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="360" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="324" />
       <source>Enter the IP address of an allowed host</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="363" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="326" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="374" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="337" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="362" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="348" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="373" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="359" />
       <source>Edit allowed host</source>
       <translation type="unfinished" />
     </message>
@@ -10161,12 +10161,7 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debugger Type:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Select the debugger type of the backend</source>
+      <source>Debug Server Port:</source>
       <translation type="unfinished" />
     </message>
     <message>
@@ -10182,7 +10177,27 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debug Server Port:</source>
+      <source>Debugger Type:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select the debugger type of the backend</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select to not stop the debugger at the first executable line.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>&lt;b&gt;Don't stop at first line&lt;/b&gt;&lt;p&gt;This prevents the debugger from stopping at the first executable line.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Don't stop at first line</source>
       <translation type="unfinished" />
     </message>
     <message>
@@ -10515,46 +10530,46 @@
   <context>
     <name>DebuggerInterfacePython</name>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="728" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="705" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="609" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="563" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="445" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="422" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="345" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="321" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="258" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="747" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="724" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="628" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="582" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="464" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="441" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="364" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="340" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="277" />
       <source>Start Debugger</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="564" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="259" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="583" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="278" />
       <source>&lt;p&gt;No suitable Python3 environment configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="729" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="706" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="610" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="446" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="423" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="322" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="748" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="725" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="629" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="465" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="442" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="341" />
       <source>&lt;p&gt;The debugger backend could not be started.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="346" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="365" />
       <source>&lt;p&gt;Remote debugging is configured but no command for remote login was given.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1691" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1692" />
       <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;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -11560,8 +11575,8 @@
   <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="450" />
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="420" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421" />
       <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.ui" line="0" />
       <source>.desktop Wizard</source>
       <translation type="unfinished" />
@@ -11918,8 +11933,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451" />
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="452" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="422" />
       <source>Only one of 'Only Show In' or  'Not Show In' allowed.</source>
       <translation type="unfinished" />
     </message>
@@ -15066,12 +15081,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="287" />
+      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288" />
       <source>Tab and Indent Override</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288" />
+      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="289" />
       <source>Shall the selected entries really be removed?</source>
       <translation type="unfinished" />
     </message>
@@ -15406,27 +15421,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="803" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="805" />
       <source>Delete Sub-Style</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="804" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="806" />
       <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="840" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="842" />
       <source>{0} - Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="867" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="869" />
       <source>Reset Sub-Styles to Default</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="868" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="870" />
       <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -21716,14 +21731,14 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="395" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="193" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1775" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1759" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1782" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1766" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="197" />
       <source>Erase Flash</source>
       <translation type="unfinished" />
@@ -21734,7 +21749,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1864" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1877" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="204" />
       <source>Flash Additional Firmware</source>
       <translation type="unfinished" />
@@ -21746,25 +21761,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="367" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="368" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="211" />
       <source>Restore Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="465" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="467" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="215" />
       <source>Show Chip ID</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="488" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="491" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="218" />
       <source>Show Flash ID</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="511" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="515" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="221" />
       <source>Show MAC Address</source>
       <translation type="unfinished" />
@@ -21785,139 +21800,139 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1863" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1820" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="366" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1876" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1830" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="367" />
       <source>'esptool write_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="396" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="425" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="434" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="436" />
       <source>&lt;h4&gt;{0} Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="442" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="444" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="448" />
       <source>{0} Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="466" />
       <source>'esptool chip_id' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="487" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="490" />
       <source>'esptool flash_id' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="510" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="514" />
       <source>'esptool read_mac' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="641" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="646" />
       <source>Set Country</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="642" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="647" />
       <source>Reset Country</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="965" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="970" />
       <source>Error saving credentials: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="976" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="981" />
       <source>Error saving auto-connect script: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="980" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="985" />
       <source>Error modifying 'boot.py': {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1017" />
       <source>Error deleting credentials: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1096" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1101" />
       <source>unknown ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1475" />
-      <source>Active</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1476" />
-      <source>Name</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1477" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/EspDevices.py" line="1480" />
-      <source>Address Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1481" />
-      <source>Public</source>
+      <source>Active</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/EspDevices.py" line="1481" />
+      <source>Name</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1482" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1485" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1486" />
+      <source>Public</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1486" />
       <source>Random</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1484" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1489" />
       <source>MTU</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1484" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1489" />
       <source>{0} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1760" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1767" />
       <source>Shall the flash of the selected device really be erased?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1774" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1781" />
       <source>'esptool erase_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1821" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1831" />
       <source>Flash µPy/CPy Firmware</source>
       <translation type="unfinished" />
     </message>
@@ -21925,7 +21940,7 @@
   <context>
     <name>EspFirmwareSelectionDialog</name>
     <message>
-      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="68" />
+      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="77" />
       <source>Firmware Files (*.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -24214,22 +24229,22 @@
   <context>
     <name>FindFileFiltersEditDialog</name>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="109" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="111" />
       <source>Delete Selected Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="110" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="112" />
       <source>Shall the selected filters really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="127" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="129" />
       <source>Default Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="128" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="130" />
       <source>Do you really want to clear the list of defined file filters and replace it with the list of default filters?</source>
       <translation type="unfinished" />
     </message>
@@ -24918,7 +24933,7 @@
   <context>
     <name>FormattingDiffWidget</name>
     <message>
-      <location filename="../CodeFormatting/FormattingDiffWidget.py" line="63" />
+      <location filename="../CodeFormatting/FormattingDiffWidget.py" line="65" />
       <source>There is no difference.</source>
       <translation type="unfinished" />
     </message>
@@ -25018,7 +25033,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1715" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1747" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="219" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -25044,153 +25059,153 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="308" />
       <source>Adding files to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="316" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="321" />
       <source>Initial commit to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="348" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="357" />
       <source>Cloning project from a Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="448" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="460" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="449" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="461" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="518" />
       <source>Committing changes to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="584" />
       <source>Switch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="585" />
       <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="597" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="614" />
       <source>Synchronizing with the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="664" />
       <source>Adding files/directories to the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="721" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="743" />
       <source>Removing files/directories from the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="814" />
       <source>Renaming {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="942" />
       <source>Unstage files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="968" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="957" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="996" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="985" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="958" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="986" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="969" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="997" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="975" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1003" />
       <source>Reverting changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1028" />
-      <source>Merging</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1057" />
+      <source>Merging</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1086" />
       <source>Main branch head</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1285" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1315" />
       <source>Git Command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1396" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1426" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1430" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1406" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1436" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1412" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1442" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1417" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1447" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1422" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1457" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1462" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1437" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1467" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1443" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1473" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -25200,459 +25215,459 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1553" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1554" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1574" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1621" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1604" />
       <source>Git Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1575" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1605" />
       <source>&lt;p&gt;Copying the directory &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1592" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1622" />
       <source>&lt;p&gt;Copying the file &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2845" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1717" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2920" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1749" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1788" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1775" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1764" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1822" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1809" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1798" />
       <source>Git Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1823" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1842" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1877" />
       <source>Fetching from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1879" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918" />
       <source>Pulling from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1919" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1962" />
       <source>Pushing to a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1948" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1994" />
       <source>Committing failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1974" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2021" />
       <source>Aborting uncommitted/failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2008" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2056" />
       <source>Applying patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2043" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2091" />
       <source>Check patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2046" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2094" />
       <source>Apply patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2130" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2181" />
       <source>Tagging in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2443" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2488" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2510" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2511" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2484" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2578" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2560" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2542" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2486" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2544" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2503" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2561" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2550" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2608" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2597" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2689" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2571" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2753" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2699" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2599" />
       <source>Git Bundle Files (*.bundle);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2580" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2627" />
       <source>List Bundle Heads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2687" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2751" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2697" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2660" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2775" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2746" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2816" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3025" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2861" />
+      <source>Git Bisect ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2919" />
+      <source>Process Generation Error</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2965" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2948" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2930" />
+      <source>Create Bisect Replay File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2932" />
+      <source>Git Bisect Replay Files (*.replay)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2949" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2789" />
-      <source>Git Bisect ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2844" />
-      <source>Process Generation Error</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2890" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2873" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2855" />
-      <source>Create Bisect Replay File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2857" />
-      <source>Git Bisect Replay Files (*.replay)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2874" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2891" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2966" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2911" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2940" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2913" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3015" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2988" />
       <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3013" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3299" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3121" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3378" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3200" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3181" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3260" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3182" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3261" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3323" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3402" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3384" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3417" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3497" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3442" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3468" />
-      <source>Copy Changesets (Cancel)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3549" />
+      <source>Copy Changesets (Cancel)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3630" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3763" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3844" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3673" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3845" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3802" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3751" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3674" />
+      <source>Select a stash (empty for latest stash):</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3708" />
+      <source>Restore Stash</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3721" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
-      <source>Select a stash (empty for latest stash):</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3669" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3627" />
-      <source>Restore Stash</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3683" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3720" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3801" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3790" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3710" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3735" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3774" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3855" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3775" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3856" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3785" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3866" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3807" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3888" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3889" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3895" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3876" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3958" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3899" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3985" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3921" />
-      <source>Performing Repository Housekeeping</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3963" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3965" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3970" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3976" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3982" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3987" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3993" />
-      <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3999" />
-      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011" />
+      <source>Performing Repository Housekeeping</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4054" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4056" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4061" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4067" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4073" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4078" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4084" />
+      <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4090" />
+      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4095" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4102" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4080" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4172" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4120" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4186" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4278" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4187" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4279" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4200" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4292" />
       <source>All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4204" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4296" />
       <source>Submodule Path</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4297" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4254" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4347" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4382" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4357" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4318" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4453" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4414" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4387" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4484" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4441" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4539" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -32311,101 +32326,101 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="519" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="520" />
       <source>Add Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="537" />
-      <source>Lock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538" />
-      <source>Enter a reason for the lock:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="556" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538" />
+      <source>Lock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="539" />
+      <source>Enter a reason for the lock:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="557" />
       <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="580" />
-      <source>Unlock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="581" />
+      <source>Unlock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="582" />
       <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="616" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="599" />
-      <source>Move Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600" />
-      <source>Enter the new path for the worktree:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600" />
+      <source>Move Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="601" />
+      <source>Enter the new path for the worktree:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="618" />
       <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="637" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="638" />
       <source>Remove Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="640" />
       <source>Remove Worktree Forcefully</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="645" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="646" />
       <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="672" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="673" />
       <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="727" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="703" />
-      <source>Prune Worktree Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704" />
-      <source>Do you really want to prune the information of these worktrees?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="728" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704" />
+      <source>Prune Worktree Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="705" />
+      <source>Do you really want to prune the information of these worktrees?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="729" />
       <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="765" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="754" />
-      <source>Repair Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755" />
-      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755" />
+      <source>Repair Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="756" />
+      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="767" />
       <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -32521,12 +32536,12 @@
   <context>
     <name>Gpg</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="73" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="76" />
       <source>Verify Signatures</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="124" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="128" />
       <source>Sign Revision</source>
       <translation type="unfinished" />
     </message>
@@ -35118,456 +35133,456 @@
   <context>
     <name>Hg</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="300" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="303" />
       <source>Create project repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="301" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="304" />
       <source>The project repository could not be created.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="334" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="338" />
       <source>Creating Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="353" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="359" />
       <source>Initial commit to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="405" />
       <source>Cloning project from a Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="503" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="516" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="504" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="517" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="566" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="580" />
       <source>Committing changes to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="661" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="679" />
       <source>Synchronizing with the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="692" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="713" />
       <source>Adding files/directories to the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="751" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="774" />
       <source>Removing files/directories from the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="829" />
       <source>Renaming {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="935" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="964" />
       <source>Tagging in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="981" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="970" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1011" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1000" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="971" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1001" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="982" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1012" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="988" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018" />
       <source>Reverting changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1033" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064" />
       <source>Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1072" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1103" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1095" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1065" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1096" />
       <source>Do you really want to re-merge these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1073" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1104" />
       <source>Do you really want to re-merge the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1076" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1108" />
       <source>Re-Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1098" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1131" />
       <source>Current branch tip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1280" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1314" />
       <source>Mercurial command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1457" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1492" />
       <source>Copying {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1720" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1699" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1746" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737" />
       <source>Mercurial Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1721" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1759" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2391" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2380" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1797" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2457" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2446" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1835" />
       <source>Apply changegroups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1800" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1838" />
       <source>Pulling from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1845" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1884" />
       <source>Pushing to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1985" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2027" />
       <source>Marking as 'unresolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1987" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2029" />
       <source>Marking as 'resolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2009" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2051" />
       <source>Aborting uncommitted merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2032" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2075" />
       <source>Creating branch in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2040" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2086" />
       <source>Created new branch &lt;{0}&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2095" />
       <source>Showing current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2136" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2184" />
       <source>Verifying the integrity of the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2149" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2200" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2160" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2215" />
       <source>Showing aliases for remote repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2171" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230" />
       <source>Recovering from interrupted transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2182" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2245" />
       <source>Identifying project directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2227" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2291" />
       <source>Create .hgignore file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2292" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2329" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2303" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2285" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2351" />
       <source>Create changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2287" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2353" />
       <source>Mercurial Changegroup Files (*.hg)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2304" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370" />
       <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2409" />
       <source>Preview changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2372" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2345" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2438" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2411" />
       <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2381" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2447" />
       <source>Shall the working directory be updated?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2413" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2479" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2433" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2501" />
       <source>Mercurial Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2527" />
       <source>Removing files from the Mercurial repository only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2500" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2481" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2576" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2557" />
       <source>Backing out changeset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2482" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2558" />
       <source>No revision given. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2516" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2511" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2593" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2587" />
       <source>Rollback last transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2512" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2588" />
       <source>Are you sure you want to rollback the last transaction?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2579" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2657" />
       <source>Import Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2627" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2707" />
       <source>Export Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2749" />
       <source>Change Phase</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2724" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2804" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2843" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2853" />
       <source>Copy Changesets (Stop)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2783" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2863" />
       <source>Copy Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2806" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2887" />
       <source>Create Unversioned Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2820" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2902" />
       <source>Delete All Backups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2821" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2903" />
       <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2912" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2892" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2881" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2994" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2963" />
       <source>Add Sub-repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2951" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2882" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3033" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2964" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2893" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2975" />
       <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2969" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2913" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3051" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2995" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2968" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2950" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2936" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3050" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3032" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3018" />
       <source>Remove Sub-repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2937" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3019" />
       <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3056" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3296" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3138" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3057" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3139" />
       <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3207" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3297" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3329" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3420" />
       <source>Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3437" />
       <source>Delete Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3347" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3438" />
       <source>Select the bookmark to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3449" />
       <source>Delete Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3382" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3476" />
       <source>Rename Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3421" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3518" />
       <source>Move Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3502" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3600" />
       <source>Pull Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3503" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3601" />
       <source>Select the bookmark to be pulled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3515" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3613" />
       <source>Pulling bookmark from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3641" />
       <source>Push Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3542" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3642" />
       <source>Select the bookmark to be push:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3657" />
       <source>Pushing bookmark to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
@@ -43094,22 +43109,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="644" />
       <source>Delete Host Minimum Protocol</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="643" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="645" />
       <source>&lt;p&gt;Shall the minimum protocol entry for host &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="708" />
       <source>Edit User Configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="707" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="709" />
       <source>You will loose all changes made in this dialog. Shall the data be saved first?</source>
       <translation type="unfinished" />
     </message>
@@ -43229,22 +43244,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="79" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="108" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="164" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -48874,52 +48889,52 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="300" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="303" />
       <source>Imports Sorting Failure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="301" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="304" />
       <source>&lt;p&gt;Imports sorting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="352" />
-      <source>would resort</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../CodeFormatting/IsortFormattingDialog.py" line="355" />
+      <source>would resort</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="358" />
       <source>resorted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="360" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="363" />
       <source>unchanged</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="364" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="367" />
       <source>skipped</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="368" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="371" />
       <source>failed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="373" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="376" />
       <source>error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="374" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="377" />
       <source>Unsupported 'isort' action ({0}) given.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="381" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="384" />
       <source>invalid status ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -49056,7 +49071,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="682" />
+      <location filename="../JediInterface/JediServer.py" line="683" />
       <location filename="../JediInterface/JediServer.py" line="522" />
       <source>Rename Variable</source>
       <translation type="unfinished" />
@@ -49087,27 +49102,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="690" />
+      <location filename="../JediInterface/JediServer.py" line="692" />
       <source>Refactoring</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="691" />
+      <location filename="../JediInterface/JediServer.py" line="693" />
       <source>&lt;p&gt;The refactoring could not be performed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="749" />
+      <location filename="../JediInterface/JediServer.py" line="751" />
       <source>Apply Refactoring</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="750" />
+      <location filename="../JediInterface/JediServer.py" line="752" />
       <source>&lt;p&gt;The refactoring could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="786" />
+      <location filename="../JediInterface/JediServer.py" line="788" />
       <source>The data received from the Jedi server could not be decoded. Please report this issue with the received data to the eric bugs email address.
 Error: {0}
 Data:
@@ -49116,7 +49131,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="796" />
+      <location filename="../JediInterface/JediServer.py" line="798" />
       <source>An exception happened in the Jedi client. Please report it to the eric bugs email address.
 Exception: {0}
 Value: {1}
@@ -49125,25 +49140,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="838" />
+      <location filename="../JediInterface/JediServer.py" line="840" />
       <source>The jedi and/or parso library is not installed.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="843" />
+      <location filename="../JediInterface/JediServer.py" line="845" />
       <source>'{0}' is not supported because the configured interpreter could not be started.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="851" />
+      <location filename="../JediInterface/JediServer.py" line="853" />
       <source>'{0}' is not supported because no suitable interpreter is configured.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="953" />
+      <location filename="../JediInterface/JediServer.py" line="955" />
       <source>Jedi</source>
       <translation type="unfinished" />
     </message>
@@ -49151,37 +49166,37 @@
   <context>
     <name>Largefiles</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="72" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="75" />
       <source>Convert Project - Converting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="88" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="92" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="89" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="93" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="100" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="104" />
       <source>Convert Project - Extracting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="145" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="150" />
       <source>Adding files to the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="174" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="182" />
       <source>Pulling large files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="196" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="205" />
       <source>Verifying the integrity of large files</source>
       <translation type="unfinished" />
     </message>
@@ -50494,13 +50509,13 @@
     <name>Lexers</name>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="412" />
-      <location filename="../Preferences/__init__.py" line="596" />
+      <location filename="../Preferences/__init__.py" line="597" />
       <source>Python Files (*.py *.py3)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="505" />
-      <location filename="../Preferences/__init__.py" line="599" />
+      <location filename="../Preferences/__init__.py" line="600" />
       <source>Python3 Files (*.py)</source>
       <translation type="unfinished" />
     </message>
@@ -52329,18 +52344,18 @@
   <context>
     <name>MicroPythonDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="356" />
+      <location filename="../MicroPython/Devices/__init__.py" line="369" />
       <source>Generic MicroPython Board</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="403" />
+      <location filename="../MicroPython/Devices/__init__.py" line="416" />
       <source>RP2040/RP2350 based</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="566" />
-      <location filename="../MicroPython/Devices/__init__.py" line="555" />
+      <location filename="../MicroPython/Devices/__init__.py" line="579" />
+      <location filename="../MicroPython/Devices/__init__.py" line="568" />
       <source>Unknown Device</source>
       <translation type="unfinished" />
     </message>
@@ -53736,343 +53751,343 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="737" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="724" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="740" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="725" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="728" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="735" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1193" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1185" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="735" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1196" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1188" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="738" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="796" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="787" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="799" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
       <source>Run Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="779" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
       <source>There is no editor open. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="788" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="797" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="800" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="836" />
       <source>Start Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="834" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="837" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="849" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="852" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="866" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="869" />
       <source>Unsaved Chart Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="867" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="870" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="915" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="918" />
       <source>Start File Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="916" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="919" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="939" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1012" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1015" />
       <source>Downloads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1059" />
-      <source>Show Version</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1062" />
-      <source>Show Implementation</source>
+      <source>Show Version</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
+      <source>Show Implementation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Board Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1268" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1271" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1073" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1073" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Show Device Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
-      <source>Show Local Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <source>Show Local Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1082" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1085" />
       <source>Show Builtin Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1094" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1086" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1689" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1097" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1089" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1723" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1720" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1090" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1725" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1093" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1497" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1501" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1103" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1523" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1514" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1104" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1527" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1518" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1107" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1125" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1128" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1132" />
-      <source>Show Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1135" />
+      <source>Show Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Convert To UF2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1136" />
-      <source>Flash UF2 Device</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1139" />
-      <source>Manage Unknown Devices</source>
+      <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
-      <source>Ignored Serial Devices</source>
+      <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
-      <source>Configure</source>
+      <source>Ignored Serial Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
+      <source>Configure</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Quit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1157" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1160" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1168" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1164" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1171" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1167" />
       <source>Device Version Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1172" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1202" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1215" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1206" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1218" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1209" />
       <source>Device Implementation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1207" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1210" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1216" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1219" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1272" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1299" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1302" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1315" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1318" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1327" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
       <source>Local Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1369" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1352" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1372" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1355" />
       <source>Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1353" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1356" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1370" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1373" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1394" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1397" />
       <source>Error handling device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1395" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1398" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1437" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1440" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1463" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1466" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1473" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1476" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1483" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1486" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1515" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1519" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1607" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1611" />
       <source>Add Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1608" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1657" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1709" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1714" />
       <source>Package '{0}' was installed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1724" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1729" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -55954,237 +55969,237 @@
   <context>
     <name>MultiProject</name>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="338" />
-      <location filename="../MultiProject/MultiProject.py" line="324" />
+      <location filename="../MultiProject/MultiProject.py" line="341" />
+      <location filename="../MultiProject/MultiProject.py" line="327" />
       <source>Copy Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="325" />
+      <location filename="../MultiProject/MultiProject.py" line="328" />
       <source>Enter directory for the new project (must not exist already):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="339" />
+      <location filename="../MultiProject/MultiProject.py" line="342" />
       <source>&lt;p&gt;The source project &lt;b&gt;{0}&lt;/b&gt; could not be copied to its destination &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="349" />
+      <location filename="../MultiProject/MultiProject.py" line="352" />
       <source>{0} - Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="499" />
+      <location filename="../MultiProject/MultiProject.py" line="502" />
       <source>Open Multi Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="556" />
-      <location filename="../MultiProject/MultiProject.py" line="546" />
-      <location filename="../MultiProject/MultiProject.py" line="501" />
+      <location filename="../MultiProject/MultiProject.py" line="559" />
+      <location filename="../MultiProject/MultiProject.py" line="549" />
+      <location filename="../MultiProject/MultiProject.py" line="504" />
       <source>Multi Project Files (*.emj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="554" />
+      <location filename="../MultiProject/MultiProject.py" line="557" />
       <source>Save Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="570" />
+      <location filename="../MultiProject/MultiProject.py" line="573" />
       <source>Save File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="571" />
+      <location filename="../MultiProject/MultiProject.py" line="574" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="598" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
       <source>Close Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="599" />
+      <location filename="../MultiProject/MultiProject.py" line="602" />
       <source>The current multiproject has unsaved changes.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="653" />
+      <location filename="../MultiProject/MultiProject.py" line="656" />
       <source>New multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="655" />
+      <location filename="../MultiProject/MultiProject.py" line="658" />
       <source>&amp;New...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="661" />
+      <location filename="../MultiProject/MultiProject.py" line="664" />
       <source>Generate a new multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="663" />
+      <location filename="../MultiProject/MultiProject.py" line="666" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="673" />
+      <location filename="../MultiProject/MultiProject.py" line="676" />
       <source>Open multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="675" />
+      <location filename="../MultiProject/MultiProject.py" line="678" />
       <source>&amp;Open...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="681" />
+      <location filename="../MultiProject/MultiProject.py" line="684" />
       <source>Open an existing multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="683" />
+      <location filename="../MultiProject/MultiProject.py" line="686" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="689" />
+      <location filename="../MultiProject/MultiProject.py" line="692" />
       <source>Close multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="691" />
+      <location filename="../MultiProject/MultiProject.py" line="694" />
       <source>&amp;Close</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="697" />
+      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>Close the current multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="699" />
+      <location filename="../MultiProject/MultiProject.py" line="702" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="705" />
+      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>Save multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="707" />
+      <location filename="../MultiProject/MultiProject.py" line="710" />
       <source>&amp;Save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="713" />
+      <location filename="../MultiProject/MultiProject.py" line="716" />
       <source>Save the current multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="715" />
+      <location filename="../MultiProject/MultiProject.py" line="718" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="721" />
+      <location filename="../MultiProject/MultiProject.py" line="724" />
       <source>Save multiproject as</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="723" />
+      <location filename="../MultiProject/MultiProject.py" line="726" />
       <source>Save &amp;as...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="730" />
-      <source>Save the current multiproject to a new file</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="733" />
+      <source>Save the current multiproject to a new file</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="742" />
+      <location filename="../MultiProject/MultiProject.py" line="745" />
       <source>Add project to multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
+      <location filename="../MultiProject/MultiProject.py" line="747" />
       <source>Add &amp;project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="751" />
-      <source>Add a project to the current multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="754" />
+      <source>Add a project to the current multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="757" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <location filename="../MultiProject/MultiProject.py" line="767" />
       <source>Multiproject properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="766" />
+      <location filename="../MultiProject/MultiProject.py" line="769" />
       <source>&amp;Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="772" />
+      <location filename="../MultiProject/MultiProject.py" line="775" />
       <source>Show the multiproject properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="774" />
+      <location filename="../MultiProject/MultiProject.py" line="777" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="786" />
-      <location filename="../MultiProject/MultiProject.py" line="784" />
+      <location filename="../MultiProject/MultiProject.py" line="789" />
+      <location filename="../MultiProject/MultiProject.py" line="787" />
       <source>Clear Out</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="793" />
-      <source>Remove all projects marked as removed</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="796" />
+      <source>Remove all projects marked as removed</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="799" />
       <source>&lt;b&gt;Clear Out...&lt;/b&gt;&lt;p&gt;This removes all projects marked as removed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="818" />
+      <location filename="../MultiProject/MultiProject.py" line="821" />
       <source>&amp;Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
+      <location filename="../MultiProject/MultiProject.py" line="822" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="862" />
-      <location filename="../MultiProject/MultiProject.py" line="860" />
+      <location filename="../MultiProject/MultiProject.py" line="865" />
+      <location filename="../MultiProject/MultiProject.py" line="863" />
       <source>Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="918" />
+      <location filename="../MultiProject/MultiProject.py" line="921" />
       <source>&amp;Clear</source>
       <translation type="unfinished" />
     </message>
@@ -59174,108 +59189,108 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="562" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="583" />
+      <location filename="../PipInterface/Pip.py" line="585" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="618" />
-      <location filename="../PipInterface/Pip.py" line="608" />
+      <location filename="../PipInterface/Pip.py" line="620" />
+      <location filename="../PipInterface/Pip.py" line="610" />
       <source>Install 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="739" />
-      <location filename="../PipInterface/Pip.py" line="609" />
+      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="611" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="619" />
+      <location filename="../PipInterface/Pip.py" line="621" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="638" />
+      <location filename="../PipInterface/Pip.py" line="641" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="766" />
-      <location filename="../PipInterface/Pip.py" line="695" />
-      <location filename="../PipInterface/Pip.py" line="667" />
-      <location filename="../PipInterface/Pip.py" line="658" />
+      <location filename="../PipInterface/Pip.py" line="775" />
+      <location filename="../PipInterface/Pip.py" line="701" />
+      <location filename="../PipInterface/Pip.py" line="671" />
+      <location filename="../PipInterface/Pip.py" line="662" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="767" />
-      <location filename="../PipInterface/Pip.py" line="696" />
-      <location filename="../PipInterface/Pip.py" line="659" />
+      <location filename="../PipInterface/Pip.py" line="776" />
+      <location filename="../PipInterface/Pip.py" line="702" />
+      <location filename="../PipInterface/Pip.py" line="663" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="712" />
+      <location filename="../PipInterface/Pip.py" line="719" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="738" />
+      <location filename="../PipInterface/Pip.py" line="758" />
+      <location filename="../PipInterface/Pip.py" line="747" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="750" />
+      <location filename="../PipInterface/Pip.py" line="759" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
+      <location filename="../PipInterface/Pip.py" line="786" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1185" />
+      <location filename="../PipInterface/Pip.py" line="1195" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1211" />
-      <location filename="../PipInterface/Pip.py" line="1202" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
+      <location filename="../PipInterface/Pip.py" line="1212" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1203" />
+      <location filename="../PipInterface/Pip.py" line="1213" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1235" />
-      <location filename="../PipInterface/Pip.py" line="1228" />
+      <location filename="../PipInterface/Pip.py" line="1245" />
+      <location filename="../PipInterface/Pip.py" line="1238" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1239" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1260" />
-      <location filename="../PipInterface/Pip.py" line="1252" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
+      <location filename="../PipInterface/Pip.py" line="1262" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1263" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -61857,18 +61872,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1904" />
+      <location filename="../Preferences/__init__.py" line="1905" />
       <source>Export Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1933" />
-      <location filename="../Preferences/__init__.py" line="1906" />
+      <location filename="../Preferences/__init__.py" line="1934" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1931" />
+      <location filename="../Preferences/__init__.py" line="1932" />
       <source>Import Preferences</source>
       <translation type="unfinished" />
     </message>
@@ -61889,7 +61904,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="509" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="520" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -62516,1698 +62531,1698 @@
   <context>
     <name>Project</name>
     <message>
-      <location filename="../Project/Project.py" line="187" />
+      <location filename="../Project/Project.py" line="188" />
       <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="250" />
-      <source>Add File Category</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="251" />
+      <source>Add File Category</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="252" />
       <source>&lt;p&gt;The file category &lt;b&gt;{0}&lt;/b&gt; has already been added. This attempt will be ignored.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="336" />
-      <source>PyQt5 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="337" />
-      <source>PyQt5 Console</source>
+      <source>PyQt5 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="338" />
-      <source>PyQt6 GUI</source>
+      <source>PyQt5 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="339" />
-      <source>PyQt6 Console</source>
+      <source>PyQt6 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="340" />
-      <source>Eric7 Plugin</source>
+      <source>PyQt6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="341" />
-      <source>Console</source>
+      <source>Eric7 Plugin</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="342" />
+      <source>Console</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="343" />
       <source>Other</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="361" />
-      <source>PySide2 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="362" />
+      <source>PySide2 GUI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="363" />
       <source>PySide2 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="366" />
-      <source>PySide6 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="367" />
+      <source>PySide6 GUI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="465" />
-      <location filename="../Project/Project.py" line="453" />
-      <location filename="../Project/Project.py" line="442" />
-      <source>Registering Project Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="443" />
-      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="454" />
-      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="466" />
+      <location filename="../Project/Project.py" line="454" />
+      <location filename="../Project/Project.py" line="443" />
+      <source>Registering Project Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="444" />
+      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="455" />
+      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="467" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="771" />
+      <location filename="../Project/Project.py" line="772" />
       <source>All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1332" />
+      <location filename="../Project/Project.py" line="1333" />
       <source>Read Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1578" />
-      <location filename="../Project/Project.py" line="1552" />
-      <location filename="../Project/Project.py" line="1516" />
-      <location filename="../Project/Project.py" line="1434" />
+      <location filename="../Project/Project.py" line="1579" />
+      <location filename="../Project/Project.py" line="1553" />
+      <location filename="../Project/Project.py" line="1517" />
+      <location filename="../Project/Project.py" line="1435" />
+      <location filename="../Project/Project.py" line="1396" />
+      <location filename="../Project/Project.py" line="1371" />
+      <location filename="../Project/Project.py" line="1334" />
+      <source>Please save the project first.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="1370" />
+      <source>Save Project Session</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="1412" />
       <location filename="../Project/Project.py" line="1395" />
-      <location filename="../Project/Project.py" line="1370" />
-      <location filename="../Project/Project.py" line="1333" />
-      <source>Please save the project first.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="1369" />
-      <source>Save Project Session</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="1411" />
-      <location filename="../Project/Project.py" line="1394" />
       <source>Delete Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1401" />
+      <location filename="../Project/Project.py" line="1402" />
       <source>Delete Remote Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1420" />
+      <location filename="../Project/Project.py" line="1421" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1433" />
+      <location filename="../Project/Project.py" line="1434" />
       <source>Read Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1515" />
+      <location filename="../Project/Project.py" line="1516" />
       <source>Read Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1551" />
+      <location filename="../Project/Project.py" line="1552" />
       <source>Save Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1594" />
-      <location filename="../Project/Project.py" line="1577" />
+      <location filename="../Project/Project.py" line="1595" />
+      <location filename="../Project/Project.py" line="1578" />
       <source>Delete Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1584" />
+      <location filename="../Project/Project.py" line="1585" />
       <source>Delete Remote Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1603" />
+      <location filename="../Project/Project.py" line="1604" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1774" />
+      <location filename="../Project/Project.py" line="1777" />
       <source>Add Language</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1775" />
+      <location filename="../Project/Project.py" line="1778" />
       <source>You have to specify a translation pattern first.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1916" />
+      <location filename="../Project/Project.py" line="1919" />
       <source>Delete Translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1943" />
-      <location filename="../Project/Project.py" line="1917" />
+      <location filename="../Project/Project.py" line="1946" />
+      <location filename="../Project/Project.py" line="1920" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1942" />
+      <location filename="../Project/Project.py" line="1945" />
       <source>Delete translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2093" />
-      <location filename="../Project/Project.py" line="2076" />
+      <location filename="../Project/Project.py" line="2098" />
+      <location filename="../Project/Project.py" line="2081" />
       <source>Add File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2195" />
-      <location filename="../Project/Project.py" line="2077" />
+      <location filename="../Project/Project.py" line="2200" />
+      <location filename="../Project/Project.py" line="2082" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2094" />
+      <location filename="../Project/Project.py" line="2099" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2106" />
+      <location filename="../Project/Project.py" line="2111" />
       <source>Add file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2289" />
-      <location filename="../Project/Project.py" line="2107" />
+      <location filename="../Project/Project.py" line="2296" />
+      <location filename="../Project/Project.py" line="2112" />
       <source>The target directory must not be empty.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2194" />
-      <location filename="../Project/Project.py" line="2167" />
-      <location filename="../Project/Project.py" line="2147" />
+      <location filename="../Project/Project.py" line="2199" />
+      <location filename="../Project/Project.py" line="2172" />
+      <location filename="../Project/Project.py" line="2152" />
       <source>Add Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2148" />
+      <location filename="../Project/Project.py" line="2153" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2168" />
+      <location filename="../Project/Project.py" line="2173" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2300" />
-      <location filename="../Project/Project.py" line="2288" />
+      <location filename="../Project/Project.py" line="2307" />
+      <location filename="../Project/Project.py" line="2295" />
       <source>Add directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2301" />
+      <location filename="../Project/Project.py" line="2308" />
       <source>The source directory must not be empty.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2415" />
-      <location filename="../Project/Project.py" line="2397" />
+      <location filename="../Project/Project.py" line="2422" />
+      <location filename="../Project/Project.py" line="2404" />
+      <location filename="../Project/Project.py" line="2388" />
       <location filename="../Project/Project.py" line="2381" />
-      <location filename="../Project/Project.py" line="2374" />
       <source>Rename File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8055" />
-      <location filename="../Project/Project.py" line="3898" />
-      <location filename="../Project/Project.py" line="2398" />
+      <location filename="../Project/Project.py" line="8089" />
+      <location filename="../Project/Project.py" line="3909" />
+      <location filename="../Project/Project.py" line="2405" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2416" />
+      <location filename="../Project/Project.py" line="2423" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2683" />
+      <location filename="../Project/Project.py" line="2690" />
       <source>Delete File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2684" />
+      <location filename="../Project/Project.py" line="2691" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2712" />
+      <location filename="../Project/Project.py" line="2719" />
       <source>Delete Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2713" />
+      <location filename="../Project/Project.py" line="2720" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2846" />
+      <location filename="../Project/Project.py" line="2853" />
       <source>Create project directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2847" />
+      <location filename="../Project/Project.py" line="2854" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3671" />
-      <location filename="../Project/Project.py" line="2947" />
+      <location filename="../Project/Project.py" line="3682" />
+      <location filename="../Project/Project.py" line="2954" />
       <source>Create project management directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3672" />
-      <location filename="../Project/Project.py" line="2948" />
+      <location filename="../Project/Project.py" line="3683" />
+      <location filename="../Project/Project.py" line="2955" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2988" />
+      <location filename="../Project/Project.py" line="2995" />
       <source>Create main script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2989" />
+      <location filename="../Project/Project.py" line="2996" />
       <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3454" />
-      <location filename="../Project/Project.py" line="3013" />
+      <location filename="../Project/Project.py" line="3463" />
+      <location filename="../Project/Project.py" line="3020" />
       <source>Create Makefile</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3455" />
-      <location filename="../Project/Project.py" line="3014" />
+      <location filename="../Project/Project.py" line="3464" />
+      <location filename="../Project/Project.py" line="3021" />
       <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3701" />
-      <location filename="../Project/Project.py" line="3164" />
-      <location filename="../Project/Project.py" line="3135" />
-      <location filename="../Project/Project.py" line="3103" />
-      <location filename="../Project/Project.py" line="3087" />
-      <location filename="../Project/Project.py" line="3062" />
-      <location filename="../Project/Project.py" line="3024" />
+      <location filename="../Project/Project.py" line="3712" />
+      <location filename="../Project/Project.py" line="3173" />
+      <location filename="../Project/Project.py" line="3144" />
+      <location filename="../Project/Project.py" line="3112" />
+      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="3069" />
+      <location filename="../Project/Project.py" line="3031" />
       <source>New Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3025" />
+      <location filename="../Project/Project.py" line="3032" />
       <source>Add existing files to the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3702" />
-      <location filename="../Project/Project.py" line="3063" />
+      <location filename="../Project/Project.py" line="3713" />
+      <location filename="../Project/Project.py" line="3070" />
       <source>Select Version Control System</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3165" />
-      <location filename="../Project/Project.py" line="3088" />
+      <location filename="../Project/Project.py" line="3174" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Would you like to edit the VCS command options?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3104" />
+      <location filename="../Project/Project.py" line="3113" />
       <source>Shall the project file be added to the repository?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3141" />
-      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3150" />
+      <location filename="../Project/Project.py" line="3139" />
       <source>None</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3145" />
       <source>Select version control system for the project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3347" />
+      <location filename="../Project/Project.py" line="3356" />
       <source>Translation Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3348" />
+      <location filename="../Project/Project.py" line="3357" />
       <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3650" />
+      <location filename="../Project/Project.py" line="3661" />
       <source>Open Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8041" />
-      <location filename="../Project/Project.py" line="8035" />
-      <location filename="../Project/Project.py" line="8025" />
-      <location filename="../Project/Project.py" line="3883" />
-      <location filename="../Project/Project.py" line="3873" />
-      <location filename="../Project/Project.py" line="3652" />
+      <location filename="../Project/Project.py" line="8075" />
+      <location filename="../Project/Project.py" line="8069" />
+      <location filename="../Project/Project.py" line="8059" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3884" />
+      <location filename="../Project/Project.py" line="3663" />
       <source>Project Files (*.epj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3897" />
-      <location filename="../Project/Project.py" line="3881" />
+      <location filename="../Project/Project.py" line="3908" />
+      <location filename="../Project/Project.py" line="3892" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3936" />
+      <location filename="../Project/Project.py" line="3947" />
       <source>Close Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3937" />
+      <location filename="../Project/Project.py" line="3948" />
       <source>The current project has unsaved changes.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4137" />
-      <location filename="../Project/Project.py" line="4101" />
+      <location filename="../Project/Project.py" line="4148" />
+      <location filename="../Project/Project.py" line="4112" />
       <source>Syntax Errors Detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4138" />
-      <location filename="../Project/Project.py" line="4102" />
+      <location filename="../Project/Project.py" line="4149" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation type="unfinished">
         <numerusform />
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4796" />
+      <location filename="../Project/Project.py" line="4807" />
       <source>New project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4798" />
+      <location filename="../Project/Project.py" line="4809" />
       <source>&amp;New...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4804" />
+      <location filename="../Project/Project.py" line="4815" />
       <source>Generate a new project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4806" />
+      <location filename="../Project/Project.py" line="4817" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4816" />
+      <location filename="../Project/Project.py" line="4827" />
       <source>Open project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4818" />
+      <location filename="../Project/Project.py" line="4829" />
       <source>&amp;Open...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4824" />
+      <location filename="../Project/Project.py" line="4835" />
       <source>Open an existing project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4826" />
+      <location filename="../Project/Project.py" line="4837" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4832" />
+      <location filename="../Project/Project.py" line="4843" />
       <source>Open remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4834" />
+      <location filename="../Project/Project.py" line="4845" />
       <source>Open (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4840" />
-      <source>Open an existing remote project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4842" />
-      <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4851" />
-      <source>Reload project</source>
+      <source>Open an existing remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4853" />
+      <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4862" />
+      <source>Reload project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4864" />
       <source>Re&amp;load</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4859" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>Reload the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4861" />
+      <location filename="../Project/Project.py" line="4872" />
       <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4867" />
+      <location filename="../Project/Project.py" line="4878" />
       <source>Close project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4869" />
+      <location filename="../Project/Project.py" line="4880" />
       <source>&amp;Close</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4875" />
+      <location filename="../Project/Project.py" line="4886" />
       <source>Close the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4877" />
+      <location filename="../Project/Project.py" line="4888" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4883" />
+      <location filename="../Project/Project.py" line="4894" />
       <source>Save project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5180" />
-      <location filename="../Project/Project.py" line="4885" />
+      <location filename="../Project/Project.py" line="5191" />
+      <location filename="../Project/Project.py" line="4896" />
       <source>&amp;Save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4891" />
+      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4893" />
+      <location filename="../Project/Project.py" line="4904" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4899" />
+      <location filename="../Project/Project.py" line="4910" />
       <source>Save project as</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4901" />
+      <location filename="../Project/Project.py" line="4912" />
       <source>Save &amp;as...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4907" />
-      <source>Save the current project to a new file</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4909" />
-      <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4918" />
-      <source>Save project as (Remote)</source>
+      <source>Save the current project to a new file</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4920" />
+      <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4929" />
+      <source>Save project as (Remote)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4931" />
       <source>Save as (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4927" />
+      <location filename="../Project/Project.py" line="4938" />
       <source>Save the current project to a new remote file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4930" />
+      <location filename="../Project/Project.py" line="4941" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4946" />
+      <location filename="../Project/Project.py" line="4957" />
       <source>Add files to project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4948" />
+      <location filename="../Project/Project.py" line="4959" />
       <source>Add &amp;files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4954" />
+      <location filename="../Project/Project.py" line="4965" />
       <source>Add files to the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4956" />
-      <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4967" />
+      <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4978" />
       <source>Add directory to project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4969" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Add directory...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4976" />
+      <location filename="../Project/Project.py" line="4987" />
       <source>Add a directory to the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4979" />
+      <location filename="../Project/Project.py" line="4990" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4989" />
+      <location filename="../Project/Project.py" line="5000" />
       <source>Add translation to project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4991" />
+      <location filename="../Project/Project.py" line="5002" />
       <source>Add &amp;translation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4998" />
+      <location filename="../Project/Project.py" line="5009" />
       <source>Add a translation to the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5001" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5011" />
-      <source>Search new files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5012" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5022" />
+      <source>Search new files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5018" />
+      <location filename="../Project/Project.py" line="5029" />
       <source>Search new files in the project directory.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5020" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5030" />
-      <source>Search Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5031" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5041" />
+      <source>Search Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5042" />
       <source>Search Project File...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5032" />
+      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5037" />
-      <source>Search for a file in the project list of files.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5039" />
-      <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5048" />
-      <source>Project properties</source>
+      <source>Search for a file in the project list of files.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5050" />
+      <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5059" />
+      <source>Project properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5061" />
       <source>&amp;Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5056" />
-      <source>Show the project properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5058" />
-      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5067" />
-      <source>User project properties</source>
+      <source>Show the project properties</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5069" />
+      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5078" />
+      <source>User project properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5080" />
       <source>&amp;User Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5076" />
+      <location filename="../Project/Project.py" line="5087" />
       <source>Show the user specific project properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5079" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5089" />
-      <source>Filetype Associations</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5090" />
-      <source>Filetype Associations...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5097" />
-      <source>Show the project file type associations</source>
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5100" />
+      <source>Filetype Associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5101" />
+      <source>Filetype Associations...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5108" />
+      <source>Show the project file type associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5111" />
       <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5113" />
-      <source>Lexer Associations</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5114" />
-      <source>Lexer Associations...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5121" />
-      <source>Show the project lexer associations (overriding defaults)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5124" />
+      <source>Lexer Associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5125" />
+      <source>Lexer Associations...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5132" />
+      <source>Show the project lexer associations (overriding defaults)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5135" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5142" />
+      <location filename="../Project/Project.py" line="5153" />
       <source>Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5143" />
+      <location filename="../Project/Project.py" line="5154" />
       <source>Debugger &amp;Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5149" />
+      <location filename="../Project/Project.py" line="5160" />
       <source>Show the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5161" />
-      <source>Load</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5162" />
+      <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Load</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
       <source>&amp;Load</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5168" />
-      <source>Load the debugger properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5170" />
-      <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5179" />
+      <source>Load the debugger properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5181" />
+      <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5190" />
       <source>Save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5186" />
-      <source>Save the debugger properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5188" />
-      <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5197" />
+      <source>Save the debugger properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5199" />
+      <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5208" />
       <source>Delete</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5198" />
+      <location filename="../Project/Project.py" line="5209" />
       <source>&amp;Delete</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5204" />
+      <location filename="../Project/Project.py" line="5215" />
       <source>Delete the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5206" />
-      <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5216" />
-      <source>Reset</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5217" />
+      <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5227" />
+      <source>Reset</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5228" />
       <source>&amp;Reset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5223" />
+      <location filename="../Project/Project.py" line="5234" />
       <source>Reset the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5225" />
+      <location filename="../Project/Project.py" line="5236" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5241" />
-      <location filename="../Project/Project.py" line="5240" />
+      <location filename="../Project/Project.py" line="5252" />
+      <location filename="../Project/Project.py" line="5251" />
       <source>Load session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5247" />
+      <location filename="../Project/Project.py" line="5258" />
       <source>Load the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5249" />
+      <location filename="../Project/Project.py" line="5260" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5265" />
-      <location filename="../Project/Project.py" line="5264" />
+      <location filename="../Project/Project.py" line="5276" />
+      <location filename="../Project/Project.py" line="5275" />
       <source>Save session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5271" />
+      <location filename="../Project/Project.py" line="5282" />
       <source>Save the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5273" />
+      <location filename="../Project/Project.py" line="5284" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5289" />
-      <location filename="../Project/Project.py" line="5288" />
+      <location filename="../Project/Project.py" line="5300" />
+      <location filename="../Project/Project.py" line="5299" />
       <source>Delete session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5295" />
+      <location filename="../Project/Project.py" line="5306" />
       <source>Delete the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5297" />
+      <location filename="../Project/Project.py" line="5308" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5312" />
-      <source>Code Metrics</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5313" />
-      <source>&amp;Code Metrics...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5320" />
-      <source>Show some code metrics for the project.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5323" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5333" />
-      <source>Python Code Coverage</source>
+      <source>Code Metrics</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5324" />
+      <source>&amp;Code Metrics...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5331" />
+      <source>Show some code metrics for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5334" />
-      <source>Code Co&amp;verage...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5341" />
-      <source>Show code coverage information for the project.</source>
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5344" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6778" />
-      <location filename="../Project/Project.py" line="6765" />
-      <location filename="../Project/Project.py" line="5354" />
-      <source>Profile Data</source>
+      <source>Python Code Coverage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5345" />
+      <source>Code Co&amp;verage...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5352" />
+      <source>Show code coverage information for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5355" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6789" />
+      <location filename="../Project/Project.py" line="6776" />
+      <location filename="../Project/Project.py" line="5365" />
+      <source>Profile Data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5362" />
+      <location filename="../Project/Project.py" line="5373" />
       <source>Show profiling data for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5365" />
+      <location filename="../Project/Project.py" line="5376" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6830" />
-      <location filename="../Project/Project.py" line="5380" />
+      <location filename="../Project/Project.py" line="6841" />
+      <location filename="../Project/Project.py" line="5391" />
       <source>Application Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5381" />
+      <location filename="../Project/Project.py" line="5392" />
       <source>&amp;Application Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5388" />
+      <location filename="../Project/Project.py" line="5399" />
       <source>Show a diagram of the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="5402" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5400" />
+      <location filename="../Project/Project.py" line="5411" />
       <source>Load Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5401" />
+      <location filename="../Project/Project.py" line="5412" />
       <source>&amp;Load Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5407" />
+      <location filename="../Project/Project.py" line="5418" />
       <source>Load a diagram from file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5409" />
+      <location filename="../Project/Project.py" line="5420" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6998" />
-      <location filename="../Project/Project.py" line="6943" />
-      <location filename="../Project/Project.py" line="5424" />
+      <location filename="../Project/Project.py" line="7009" />
+      <location filename="../Project/Project.py" line="6954" />
+      <location filename="../Project/Project.py" line="5435" />
       <source>Create Package List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5426" />
+      <location filename="../Project/Project.py" line="5437" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5433" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5436" />
+      <location filename="../Project/Project.py" line="5447" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7068" />
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="7080" />
+      <location filename="../Project/Project.py" line="5458" />
       <source>Create Plugin Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5449" />
+      <location filename="../Project/Project.py" line="5460" />
       <source>Create Plugin &amp;Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5455" />
+      <location filename="../Project/Project.py" line="5466" />
       <source>Create eric plugin archive files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5457" />
+      <location filename="../Project/Project.py" line="5468" />
       <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5469" />
+      <location filename="../Project/Project.py" line="5480" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5471" />
+      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5478" />
+      <location filename="../Project/Project.py" line="5489" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5481" />
+      <location filename="../Project/Project.py" line="5492" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7510" />
-      <location filename="../Project/Project.py" line="7481" />
-      <location filename="../Project/Project.py" line="7435" />
-      <location filename="../Project/Project.py" line="7387" />
-      <location filename="../Project/Project.py" line="5500" />
+      <location filename="../Project/Project.py" line="7536" />
+      <location filename="../Project/Project.py" line="7507" />
+      <location filename="../Project/Project.py" line="7461" />
+      <location filename="../Project/Project.py" line="7413" />
+      <location filename="../Project/Project.py" line="5511" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5501" />
+      <location filename="../Project/Project.py" line="5512" />
       <source>&amp;Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5507" />
+      <location filename="../Project/Project.py" line="5518" />
       <source>Perform a 'make' run.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5509" />
-      <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7487" />
-      <location filename="../Project/Project.py" line="5519" />
-      <source>Test for Changes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5520" />
+      <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7513" />
+      <location filename="../Project/Project.py" line="5530" />
+      <source>Test for Changes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5531" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5527" />
+      <location filename="../Project/Project.py" line="5538" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="5541" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5548" />
-      <source>Create SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5549" />
-      <source>Create &amp;SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5556" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5559" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <source>Create SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5560" />
+      <source>Create &amp;SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5567" />
+      <source>Create a SBOM file of the project dependencies.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5570" />
-      <source>Clear Byte Code Caches</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5571" />
-      <source>Clear Byte Code &amp;Caches</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5578" />
-      <source>Clear the byte code caches of the project.</source>
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5581" />
+      <source>Clear Byte Code Caches</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5582" />
+      <source>Clear Byte Code &amp;Caches</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5589" />
+      <source>Clear the byte code caches of the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5592" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5597" />
+      <location filename="../Project/Project.py" line="5608" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5598" />
+      <location filename="../Project/Project.py" line="5609" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5604" />
+      <location filename="../Project/Project.py" line="5615" />
       <source>Show some information about 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5606" />
+      <location filename="../Project/Project.py" line="5617" />
       <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5618" />
-      <source>Format Code</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5619" />
-      <source>&amp;Format Code</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5626" />
-      <source>Format the project sources with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5629" />
+      <source>Format Code</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5630" />
+      <source>&amp;Format Code</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5637" />
+      <source>Format the project sources with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5640" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5641" />
+      <location filename="../Project/Project.py" line="5652" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5642" />
+      <location filename="../Project/Project.py" line="5653" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5649" />
+      <location filename="../Project/Project.py" line="5660" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5654" />
+      <location filename="../Project/Project.py" line="5665" />
       <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5667" />
+      <location filename="../Project/Project.py" line="5678" />
       <source>Code Formatting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5668" />
+      <location filename="../Project/Project.py" line="5679" />
       <source>Code Formatting &amp;Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5686" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5681" />
+      <location filename="../Project/Project.py" line="5692" />
       <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5846" />
-      <location filename="../Project/Project.py" line="5796" />
-      <location filename="../Project/Project.py" line="5795" />
-      <location filename="../Project/Project.py" line="5695" />
-      <location filename="../Project/Project.py" line="5694" />
+      <location filename="../Project/Project.py" line="5857" />
+      <location filename="../Project/Project.py" line="5807" />
+      <location filename="../Project/Project.py" line="5806" />
+      <location filename="../Project/Project.py" line="5706" />
+      <location filename="../Project/Project.py" line="5705" />
       <source>Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5702" />
+      <location filename="../Project/Project.py" line="5713" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5707" />
+      <location filename="../Project/Project.py" line="5718" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5723" />
+      <location filename="../Project/Project.py" line="5734" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5724" />
+      <location filename="../Project/Project.py" line="5735" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5730" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5732" />
+      <location filename="../Project/Project.py" line="5743" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5745" />
-      <location filename="../Project/Project.py" line="5744" />
+      <location filename="../Project/Project.py" line="5756" />
+      <location filename="../Project/Project.py" line="5755" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5752" />
+      <location filename="../Project/Project.py" line="5763" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5755" />
+      <location filename="../Project/Project.py" line="5766" />
       <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5769" />
-      <location filename="../Project/Project.py" line="5768" />
+      <location filename="../Project/Project.py" line="5780" />
+      <location filename="../Project/Project.py" line="5779" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5776" />
+      <location filename="../Project/Project.py" line="5787" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5782" />
+      <location filename="../Project/Project.py" line="5793" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5803" />
+      <location filename="../Project/Project.py" line="5814" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5809" />
+      <location filename="../Project/Project.py" line="5820" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5825" />
-      <source>Install Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5826" />
-      <source>&amp;Install Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5833" />
-      <source>Install the project into the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5836" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <source>Install Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5837" />
+      <source>&amp;Install Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5844" />
+      <source>Install the project into the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5847" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5854" />
+      <location filename="../Project/Project.py" line="5865" />
       <source>Configure the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5857" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5867" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5868" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5878" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5874" />
+      <location filename="../Project/Project.py" line="5885" />
       <source>Upgrade the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5876" />
+      <location filename="../Project/Project.py" line="5887" />
       <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5888" />
+      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5889" />
+      <location filename="../Project/Project.py" line="5900" />
       <source>&amp;Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5895" />
+      <location filename="../Project/Project.py" line="5906" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5897" />
+      <location filename="../Project/Project.py" line="5908" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5929" />
+      <location filename="../Project/Project.py" line="5940" />
       <source>&amp;Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5930" />
-      <source>Open &amp;Recent Projects</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5932" />
-      <source>Session</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5933" />
-      <source>Debugger</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5934" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5936" />
-      <source>Project-T&amp;ools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5937" />
-      <source>&amp;Version Control</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5941" />
-      <source>Chec&amp;k</source>
+      <source>Open &amp;Recent Projects</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Code &amp;Formatting</source>
+      <source>Session</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5944" />
+      <source>Debugger</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Sho&amp;w</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5946" />
-      <source>&amp;Diagrams</source>
+      <source>Embedded Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Pac&amp;kagers</source>
+      <source>Project-T&amp;ools</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
+      <source>&amp;Version Control</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5952" />
+      <source>Chec&amp;k</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5954" />
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5956" />
+      <source>Sho&amp;w</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5957" />
+      <source>&amp;Diagrams</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5958" />
+      <source>Pac&amp;kagers</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5959" />
       <source>Source &amp;Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5950" />
+      <location filename="../Project/Project.py" line="5961" />
       <source>Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5951" />
+      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6113" />
-      <location filename="../Project/Project.py" line="6111" />
+      <location filename="../Project/Project.py" line="6124" />
+      <location filename="../Project/Project.py" line="6122" />
       <source>Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6195" />
+      <location filename="../Project/Project.py" line="6206" />
       <source>&amp;Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6392" />
+      <location filename="../Project/Project.py" line="6403" />
       <source>Search New Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6393" />
+      <location filename="../Project/Project.py" line="6404" />
       <source>There were no new files found to be added.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6554" />
-      <location filename="../Project/Project.py" line="6541" />
+      <location filename="../Project/Project.py" line="6565" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>Version Control System</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6542" />
+      <location filename="../Project/Project.py" line="6553" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6555" />
+      <location filename="../Project/Project.py" line="6566" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6712" />
+      <location filename="../Project/Project.py" line="6723" />
       <source>Coverage Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6766" />
-      <location filename="../Project/Project.py" line="6713" />
+      <location filename="../Project/Project.py" line="6777" />
+      <location filename="../Project/Project.py" line="6724" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6725" />
+      <location filename="../Project/Project.py" line="6736" />
       <source>Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6726" />
+      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6779" />
+      <location filename="../Project/Project.py" line="6790" />
       <source>Please select a profile file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6831" />
+      <location filename="../Project/Project.py" line="6842" />
       <source>Include module names?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6944" />
+      <location filename="../Project/Project.py" line="6955" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6999" />
+      <location filename="../Project/Project.py" line="7010" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7295" />
-      <location filename="../Project/Project.py" line="7251" />
-      <location filename="../Project/Project.py" line="7201" />
-      <location filename="../Project/Project.py" line="7190" />
-      <location filename="../Project/Project.py" line="7172" />
-      <location filename="../Project/Project.py" line="7139" />
-      <location filename="../Project/Project.py" line="7109" />
-      <location filename="../Project/Project.py" line="7081" />
-      <location filename="../Project/Project.py" line="7051" />
-      <location filename="../Project/Project.py" line="7037" />
-      <location filename="../Project/Project.py" line="7020" />
+      <location filename="../Project/Project.py" line="7321" />
+      <location filename="../Project/Project.py" line="7277" />
+      <location filename="../Project/Project.py" line="7227" />
+      <location filename="../Project/Project.py" line="7216" />
+      <location filename="../Project/Project.py" line="7198" />
+      <location filename="../Project/Project.py" line="7151" />
+      <location filename="../Project/Project.py" line="7121" />
+      <location filename="../Project/Project.py" line="7093" />
+      <location filename="../Project/Project.py" line="7063" />
+      <location filename="../Project/Project.py" line="7048" />
+      <location filename="../Project/Project.py" line="7031" />
       <source>Create Plugin Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7021" />
+      <location filename="../Project/Project.py" line="7032" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7038" />
+      <location filename="../Project/Project.py" line="7049" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7052" />
-      <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7060" />
-      <source>Creating plugin archives...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7061" />
-      <source>Abort</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="7064" />
+      <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7072" />
+      <source>Creating plugin archives...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7073" />
+      <source>Abort</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7076" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7082" />
+      <location filename="../Project/Project.py" line="7094" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7110" />
+      <location filename="../Project/Project.py" line="7122" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7140" />
+      <location filename="../Project/Project.py" line="7152" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7199" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7191" />
+      <location filename="../Project/Project.py" line="7217" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7228" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7252" />
+      <location filename="../Project/Project.py" line="7278" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7296" />
+      <location filename="../Project/Project.py" line="7322" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7388" />
+      <location filename="../Project/Project.py" line="7414" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7436" />
+      <location filename="../Project/Project.py" line="7462" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7482" />
+      <location filename="../Project/Project.py" line="7508" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7490" />
+      <location filename="../Project/Project.py" line="7516" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7495" />
+      <location filename="../Project/Project.py" line="7521" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7511" />
+      <location filename="../Project/Project.py" line="7537" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7941" />
+      <location filename="../Project/Project.py" line="7975" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7942" />
+      <location filename="../Project/Project.py" line="7976" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8023" />
+      <location filename="../Project/Project.py" line="8057" />
       <source>Open Remote Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8054" />
-      <location filename="../Project/Project.py" line="8039" />
+      <location filename="../Project/Project.py" line="8088" />
+      <location filename="../Project/Project.py" line="8073" />
       <source>Save Remote Project</source>
       <translation type="unfinished" />
     </message>
@@ -64994,50 +65009,50 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="527" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="511" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="529" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="513" />
       <source>New directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="512" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="514" />
       <source>&lt;p&gt;A file or directory named &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="528" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="530" />
       <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="625" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="596" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="577" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="627" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="598" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="579" />
       <source>New file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="578" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="580" />
       <source>Enter the path of the new file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="597" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="599" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="626" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="628" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="716" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="718" />
       <source>Delete files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="717" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="719" />
       <source>Do you really want to delete these entries from the project?</source>
       <translation type="unfinished" />
     </message>
@@ -66769,22 +66784,22 @@
   <context>
     <name>Purge</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="74" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="76" />
       <source>Purge All Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="75" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="77" />
       <source>Do really want to delete all files not tracked by Mercurial (including ignored ones)?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="80" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="82" />
       <source>Purge Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="81" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="83" />
       <source>Do really want to delete files not tracked by Mercurial?</source>
       <translation type="unfinished" />
     </message>
@@ -66892,7 +66907,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="453" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="455" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="235" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -66908,7 +66923,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="433" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="246" />
       <source>Flash MicroPython Firmware</source>
       <translation type="unfinished" />
@@ -66964,7 +66979,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="431" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="390" />
       <source>'dfu-util' Output</source>
       <translation type="unfinished" />
@@ -66975,37 +66990,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="416" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="417" />
       <source>Flash MicroPython/CircuitPython Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="419" />
       <source>MicroPython Firmware Files (*.dfu);;CircuitPython Firmware Files (*.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="454" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="456" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="484" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="488" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="490" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="496" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="498" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="500" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="502" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -69081,12 +69096,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="139" />
+      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="141" />
       <source>No current editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="140" />
+      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="142" />
       <source>Please open or create a file first.</source>
       <translation type="unfinished" />
     </message>
@@ -70825,7 +70840,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="122" />
+      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="124" />
       <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="82" />
       <source>Add Documentation</source>
       <translation type="unfinished" />
@@ -70836,7 +70851,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="123" />
+      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="125" />
       <source>The file &lt;b&gt;{0}&lt;/b&gt; could not be added.</source>
       <translation type="unfinished" />
     </message>
@@ -71094,191 +71109,191 @@
   <context>
     <name>Queues</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="226" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="228" />
       <source>New Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="277" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="279" />
       <source>Update Current Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="335" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="337" />
       <source>Pop Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="339" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="341" />
       <source>Push Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="343" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="345" />
       <source>Go to Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="437" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="369" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="356" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="441" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="371" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="358" />
       <source>Select Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="359" />
       <source>Select the target patch name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="372" />
       <source>No patches to select from.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="399" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="401" />
       <source>Finish Applied Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="423" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="427" />
       <source>Rename Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="438" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="442" />
       <source>Select the patch to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="446" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="450" />
       <source>Delete Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="488" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="482" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="475" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="492" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="486" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="479" />
       <source>Fold Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="483" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="487" />
       <source>No patches selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="493" />
       <source>No patches available to be folded.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="510" />
       <source>List Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="507" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="511" />
       <source>No patches available to list guards for.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="536" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="540" />
       <source>Define Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="537" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="541" />
       <source>No patches available to define guards for.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="568" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="548" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="552" />
       <source>Drop All Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="549" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="553" />
       <source>Select the patch to drop guards for (leave empty for the current patch):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="597" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="590" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="606" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598" />
       <source>Set Active Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="607" />
       <source>No guards available to select from.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="618" />
       <source>Deactivate Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649" />
       <source>Create New Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649" />
       <source>Rename Active Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="658" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="673" />
       <source>Error while creating a new queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="660" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="675" />
       <source>Error while renaming the active queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="693" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="708" />
       <source>Purge Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="710" />
       <source>Delete Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="697" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="712" />
       <source>Activate Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="717" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="736" />
       <source>Error while purging the queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="738" />
       <source>Error while deleting the queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="721" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="740" />
       <source>Error while setting the active queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="743" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="762" />
       <source>Available Queues</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="757" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="777" />
       <source>Initializing new queue repository</source>
       <translation type="unfinished" />
     </message>
@@ -72400,17 +72415,17 @@
   <context>
     <name>Rebase</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="83" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="86" />
       <source>Rebase Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="106" />
       <source>Rebase Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="121" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="127" />
       <source>Rebase Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
@@ -72661,7 +72676,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="421" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="423" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -72715,37 +72730,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="402" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="403" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="403" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="404" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="424" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="456" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="466" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="468" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="470" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -75668,49 +75683,49 @@
   <context>
     <name>Shelve</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="105" />
       <source>Shelve current changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="144" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="151" />
       <source>Restore shelved changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="162" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="170" />
       <source>Abort restore operation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="182" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="191" />
       <source>Continue restore operation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="201" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211" />
       <source>Select the shelves to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="220" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="222" />
       <source>Delete shelves</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="212" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="223" />
       <source>Do you really want to delete these shelves?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="238" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="249" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="242" />
       <source>Delete all shelves</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="232" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="243" />
       <source>Do you really want to delete all shelved changes?</source>
       <translation type="unfinished" />
     </message>
@@ -78516,7 +78531,7 @@
   <context>
     <name>Strip</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="64" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="68" />
       <source>Stripping changesets from repository</source>
       <translation type="unfinished" />
     </message>
@@ -78632,7 +78647,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2138" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2173" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="185" />
       <source>The svn process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -78668,337 +78683,337 @@
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="320" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="334" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="335" />
       <source>Importing project into Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="379" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="375" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="378" />
       <source>Subversion Checkout</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="450" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="436" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="376" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="452" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="381" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="442" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="379" />
       <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="402" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="402" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="406" />
       <source>Checking project out of Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="449" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="435" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="441" />
       <source>Subversion Export</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="471" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="459" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="473" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="466" />
       <source>Exporting project from Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="554" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="541" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="533" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="558" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="542" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="597" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="600" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="592" />
       <source>Commiting changes to Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="670" />
       <source>Synchronizing with the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="816" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="774" />
       <source>Adding files/directories to the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="927" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="852" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="933" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="869" />
       <source>Adding directory trees to the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="968" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="975" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="908" />
       <source>Removing files/directories from the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1032" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="953" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1042" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="973" />
       <source>Moving {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1331" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1302" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1162" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1132" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1216" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1187" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1035" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1351" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1319" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1176" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1143" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1243" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1211" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1087" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1055" />
       <source>Subversion Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1133" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1036" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1144" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1056" />
       <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1065" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1177" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1088" />
       <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1214" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1185" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1099" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1122" />
       <source>Tagging {0} in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1246" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1235" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1143" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1132" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1262" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1251" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1167" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1156" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1236" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1133" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1252" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1157" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1247" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1144" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1168" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1255" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1271" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1174" />
       <source>Reverting changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1303" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1188" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1320" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1212" />
       <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1332" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1217" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1352" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1244" />
       <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1355" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1246" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1375" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273" />
       <source>Switching to {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1456" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1313" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1481" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1344" />
       <source>Merging {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1787" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1602" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1813" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633" />
       <source>Cleaning up {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1828" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1859" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1666" />
       <source>Subversion command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1960" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1991" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1849" />
       <source>Resolving conficts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1852" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2036" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1885" />
       <source>Copying {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2084" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2067" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1923" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1902" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2117" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2100" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1956" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1935" />
       <source>Subversion Set Property</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2131" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2068" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1951" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1903" />
-      <source>You have to supply a property name. Aborting.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2147" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2130" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1968" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1950" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1939" />
-      <source>Subversion Delete Property</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1940" />
-      <source>Enter property name</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2140" />
-      <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2403" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2391" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2382" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2206" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2194" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2185" />
-      <source>Subversion Side-by-Side Difference</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2404" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2207" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2466" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2260" />
-      <source>Locking in the Subversion repository</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2508" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288" />
-      <source>Unlocking in the Subversion repository</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2558" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2314" />
-      <source>Relocating</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2584" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2333" />
-      <source>Repository Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2585" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2334" />
-      <source>Enter the repository URL.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2610" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2404" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2367" />
-      <source>Remove from changelist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2649" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2638" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2383" />
-      <source>Add to changelist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2639" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2384" />
-      <source>Enter name of the changelist:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2706" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2474" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="338" />
-      <source>Imported revision {0}.
-</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="631" />
-      <source>Committed revision {0}.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1363" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210" />
-      <source>Revision {0}.
-</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2107" />
-      <source>Property set.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2101" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1936" />
+      <source>You have to supply a property name. Aborting.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2181" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2164" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2001" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1983" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1972" />
+      <source>Subversion Delete Property</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1973" />
+      <source>Enter property name</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2175" />
+      <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2440" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2428" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2419" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2241" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2229" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220" />
+      <source>Subversion Side-by-Side Difference</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2242" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2503" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2295" />
+      <source>Locking in the Subversion repository</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2545" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2324" />
+      <source>Unlocking in the Subversion repository</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2595" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2351" />
+      <source>Relocating</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2621" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2370" />
+      <source>Repository Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2371" />
+      <source>Enter the repository URL.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2647" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2404" />
+      <source>Remove from changelist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2687" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2676" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2420" />
+      <source>Add to changelist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2677" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2421" />
+      <source>Enter name of the changelist:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2746" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2511" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="339" />
+      <source>Imported revision {0}.
+</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="635" />
+      <source>Committed revision {0}.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1384" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1226" />
+      <source>Revision {0}.
+</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2141" />
+      <source>Property set.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2200" />
       <source>Property deleted.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2448" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2485" />
       <source>Subversion Lock</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2449" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2486" />
       <source>Enter lock comment</source>
       <translation type="unfinished" />
     </message>
@@ -89291,133 +89306,133 @@
   <context>
     <name>UF2FlashDialog</name>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="722" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="732" />
       <source>&lt;h3&gt;CircuitPython Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Switch your device to 'bootloader' mode by double-pressing the reset button.&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;(If this does not happen, then try shorter or longer pauses between presses.)&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="748" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="758" />
       <source>&lt;h3&gt;Pi Pico (RP2040/RP2350) Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Enter 'bootloader' mode (board &lt;b&gt;without&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;Plug in your board while holding the BOOTSEL button.&lt;/li&gt;&lt;/ul&gt;Enter 'bootloader' mode (board &lt;b&gt;with&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;hold down RESET&lt;/li&gt;&lt;li&gt;hold down BOOTSEL&lt;/li&gt;&lt;li&gt;release RESET&lt;/li&gt;&lt;li&gt;release BOOTSEL&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/UF2FlashDialog.ui" line="0" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1248" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1256" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1258" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1266" />
       <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1257" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1267" />
       <source>Select the Boot Volume of the device:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="861" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="871" />
       <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="928" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="920" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="904" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="938" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="930" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="914" />
       <source>Manual Select</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1032" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1000" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="977" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1042" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1010" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="987" />
       <source>Reset Instructions:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="979" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="989" />
       <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the appropriate instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1003" />
-      <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/UF2FlashDialog.py" line="1013" />
+      <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1023" />
       <source>&lt;h4&gt;Potentially UF2 capable devices found&lt;/h4&gt;&lt;p&gt;Found these potentially UF2 capable devices:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1034" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1044" />
       <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1046" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1056" />
       <source>Flash Instructions:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1048" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1058" />
       <source>&lt;h4&gt;Flash method 'manual' selected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to flash a device by entering the data manually.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Change the device to 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it) and select its path.&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1073" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1083" />
       <source>Boot Volume not found:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1075" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1085" />
       <source>&lt;h4&gt;No Boot Volume detected.&lt;/h4&gt;&lt;p&gt;Please ensure that the boot volume of the device to be flashed is available. </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1081" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1091" />
       <source>This volume should be named &lt;b&gt;{0}&lt;/b&gt;. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1086" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1096" />
       <source>This volume should have one of these names.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1093" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1103" />
       <source>&lt;h4&gt;Reset Instructions&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set the board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1112" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1122" />
       <source>Multiple Boot Volumes found:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1114" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1124" />
       <source>&lt;h4&gt;Multiple Boot Volumes were found&lt;/h4&gt;&lt;p&gt;These volume paths were found.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please ensure that only one device of a type is ready for flashing. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1133" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1143" />
       <source>Flashing Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1135" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1145" />
       <source>&lt;p&gt;Flashing the selected firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1142" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1152" />
       <source>Flashing {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1144" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1154" />
       <source>&lt;p&gt;Flashing the {0} firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1249" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1259" />
       <source>No UF2 device 'boot' volumes found.</source>
       <translation type="unfinished" />
     </message>
@@ -89983,24 +89998,24 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="405" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="392" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="375" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="409" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="396" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="379" />
       <source>Save Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="377" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="381" />
       <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="393" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="397" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="406" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="410" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -90178,44 +90193,44 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="95" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="97" />
       <source>{0} (*)</source>
       <comment>list entry is modified</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="179" />
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="158" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="181" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="160" />
       <source>Delete Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="159" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="161" />
       <source>The selected entries contain some with modified data. Shall they really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="180" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="182" />
       <source>The list contains some devices with modified data. Shall they really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="198" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="200" />
       <source>Restore Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="199" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="201" />
       <source>Restoring the list of unknown devices will overwrite all changes made. Do you really want to restore the list?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="263" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="265" />
       <source>Unsaved Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="264" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="266" />
       <source>The list of devices contains some with modified data.</source>
       <translation type="unfinished" />
     </message>
@@ -90728,7 +90743,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7883" />
+      <location filename="../UI/UserInterface.py" line="7890" />
       <location filename="../UI/UserInterface.py" line="1955" />
       <location filename="../UI/UserInterface.py" line="1948" />
       <source>Load session</source>
@@ -91819,7 +91834,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6626" />
+      <location filename="../UI/UserInterface.py" line="6630" />
       <location filename="../UI/UserInterface.py" line="3172" />
       <source>Snapshot</source>
       <translation type="unfinished" />
@@ -92056,8 +92071,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7591" />
-      <location filename="../UI/UserInterface.py" line="7572" />
+      <location filename="../UI/UserInterface.py" line="7598" />
+      <location filename="../UI/UserInterface.py" line="7579" />
       <location filename="../UI/UserInterface.py" line="3402" />
       <source>Export Keyboard Shortcuts</source>
       <translation type="unfinished" />
@@ -92078,7 +92093,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7610" />
+      <location filename="../UI/UserInterface.py" line="7617" />
       <location filename="../UI/UserInterface.py" line="3421" />
       <source>Import Keyboard Shortcuts</source>
       <translation type="unfinished" />
@@ -92487,7 +92502,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6354" />
+      <location filename="../UI/UserInterface.py" line="6358" />
       <location filename="../UI/UserInterface.py" line="4194" />
       <location filename="../UI/UserInterface.py" line="4179" />
       <source>Help</source>
@@ -92659,313 +92674,313 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6491" />
-      <location filename="../UI/UserInterface.py" line="6480" />
-      <location filename="../UI/UserInterface.py" line="6432" />
-      <location filename="../UI/UserInterface.py" line="6422" />
-      <location filename="../UI/UserInterface.py" line="6245" />
-      <location filename="../UI/UserInterface.py" line="6235" />
-      <location filename="../UI/UserInterface.py" line="6177" />
-      <location filename="../UI/UserInterface.py" line="6167" />
+      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6484" />
+      <location filename="../UI/UserInterface.py" line="6436" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6239" />
+      <location filename="../UI/UserInterface.py" line="6181" />
+      <location filename="../UI/UserInterface.py" line="6171" />
       <source>Problem</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6492" />
-      <location filename="../UI/UserInterface.py" line="6481" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <location filename="../UI/UserInterface.py" line="6423" />
-      <location filename="../UI/UserInterface.py" line="6246" />
-      <location filename="../UI/UserInterface.py" line="6236" />
-      <location filename="../UI/UserInterface.py" line="6178" />
-      <location filename="../UI/UserInterface.py" line="6168" />
+      <location filename="../UI/UserInterface.py" line="6496" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6437" />
+      <location filename="../UI/UserInterface.py" line="6427" />
+      <location filename="../UI/UserInterface.py" line="6250" />
+      <location filename="../UI/UserInterface.py" line="6240" />
+      <location filename="../UI/UserInterface.py" line="6182" />
+      <location filename="../UI/UserInterface.py" line="6172" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6735" />
-      <location filename="../UI/UserInterface.py" line="6646" />
-      <location filename="../UI/UserInterface.py" line="6527" />
-      <location filename="../UI/UserInterface.py" line="6504" />
-      <location filename="../UI/UserInterface.py" line="6445" />
-      <location filename="../UI/UserInterface.py" line="6392" />
-      <location filename="../UI/UserInterface.py" line="6370" />
-      <location filename="../UI/UserInterface.py" line="6321" />
-      <location filename="../UI/UserInterface.py" line="6312" />
-      <location filename="../UI/UserInterface.py" line="6277" />
-      <location filename="../UI/UserInterface.py" line="6268" />
-      <location filename="../UI/UserInterface.py" line="6209" />
-      <location filename="../UI/UserInterface.py" line="6200" />
+      <location filename="../UI/UserInterface.py" line="6739" />
+      <location filename="../UI/UserInterface.py" line="6650" />
+      <location filename="../UI/UserInterface.py" line="6531" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6449" />
+      <location filename="../UI/UserInterface.py" line="6396" />
+      <location filename="../UI/UserInterface.py" line="6374" />
+      <location filename="../UI/UserInterface.py" line="6325" />
+      <location filename="../UI/UserInterface.py" line="6316" />
+      <location filename="../UI/UserInterface.py" line="6281" />
+      <location filename="../UI/UserInterface.py" line="6272" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6204" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6201" />
+      <location filename="../UI/UserInterface.py" line="6205" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6210" />
+      <location filename="../UI/UserInterface.py" line="6214" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6269" />
+      <location filename="../UI/UserInterface.py" line="6273" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6278" />
+      <location filename="../UI/UserInterface.py" line="6282" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6313" />
+      <location filename="../UI/UserInterface.py" line="6317" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6322" />
+      <location filename="../UI/UserInterface.py" line="6326" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6355" />
+      <location filename="../UI/UserInterface.py" line="6359" />
       <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6371" />
+      <location filename="../UI/UserInterface.py" line="6375" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6393" />
+      <location filename="../UI/UserInterface.py" line="6397" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6446" />
+      <location filename="../UI/UserInterface.py" line="6450" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6505" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6528" />
+      <location filename="../UI/UserInterface.py" line="6532" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6627" />
+      <location filename="../UI/UserInterface.py" line="6631" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6647" />
+      <location filename="../UI/UserInterface.py" line="6651" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6680" />
-      <location filename="../UI/UserInterface.py" line="6670" />
+      <location filename="../UI/UserInterface.py" line="6684" />
+      <location filename="../UI/UserInterface.py" line="6674" />
       <source>External Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6671" />
+      <location filename="../UI/UserInterface.py" line="6675" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6681" />
+      <location filename="../UI/UserInterface.py" line="6685" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6718" />
+      <location filename="../UI/UserInterface.py" line="6722" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6736" />
+      <location filename="../UI/UserInterface.py" line="6740" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6815" />
+      <location filename="../UI/UserInterface.py" line="6819" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7102" />
-      <location filename="../UI/UserInterface.py" line="7040" />
-      <location filename="../UI/UserInterface.py" line="6996" />
-      <location filename="../UI/UserInterface.py" line="6922" />
-      <location filename="../UI/UserInterface.py" line="6858" />
+      <location filename="../UI/UserInterface.py" line="7106" />
+      <location filename="../UI/UserInterface.py" line="7044" />
+      <location filename="../UI/UserInterface.py" line="7000" />
+      <location filename="../UI/UserInterface.py" line="6926" />
+      <location filename="../UI/UserInterface.py" line="6862" />
       <source>Documentation Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7103" />
-      <location filename="../UI/UserInterface.py" line="7041" />
-      <location filename="../UI/UserInterface.py" line="6997" />
-      <location filename="../UI/UserInterface.py" line="6923" />
-      <location filename="../UI/UserInterface.py" line="6859" />
+      <location filename="../UI/UserInterface.py" line="7107" />
+      <location filename="../UI/UserInterface.py" line="7045" />
+      <location filename="../UI/UserInterface.py" line="7001" />
+      <location filename="../UI/UserInterface.py" line="6927" />
+      <location filename="../UI/UserInterface.py" line="6863" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7084" />
-      <location filename="../UI/UserInterface.py" line="6966" />
+      <location filename="../UI/UserInterface.py" line="7088" />
+      <location filename="../UI/UserInterface.py" line="6970" />
       <source>Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6967" />
+      <location filename="../UI/UserInterface.py" line="6971" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7085" />
+      <location filename="../UI/UserInterface.py" line="7089" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7264" />
-      <location filename="../UI/UserInterface.py" line="7200" />
+      <location filename="../UI/UserInterface.py" line="7268" />
+      <location filename="../UI/UserInterface.py" line="7204" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7201" />
+      <location filename="../UI/UserInterface.py" line="7205" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7265" />
+      <location filename="../UI/UserInterface.py" line="7269" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7311" />
+      <location filename="../UI/UserInterface.py" line="7315" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7311" />
+      <location filename="../UI/UserInterface.py" line="7315" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7612" />
-      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7619" />
+      <location filename="../UI/UserInterface.py" line="7581" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7592" />
+      <location filename="../UI/UserInterface.py" line="7599" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7796" />
+      <location filename="../UI/UserInterface.py" line="7803" />
       <source>Load crash session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7799" />
+      <location filename="../UI/UserInterface.py" line="7806" />
       <source>Clean crash sessions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7836" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7837" />
+      <location filename="../UI/UserInterface.py" line="7844" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7860" />
+      <location filename="../UI/UserInterface.py" line="7867" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7885" />
-      <location filename="../UI/UserInterface.py" line="7862" />
+      <location filename="../UI/UserInterface.py" line="7892" />
+      <location filename="../UI/UserInterface.py" line="7869" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7954" />
+      <location filename="../UI/UserInterface.py" line="7961" />
       <source>Found Crash Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7955" />
+      <location filename="../UI/UserInterface.py" line="7962" />
       <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8028" />
+      <location filename="../UI/UserInterface.py" line="8035" />
       <source>Clean stale crash sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8029" />
+      <location filename="../UI/UserInterface.py" line="8036" />
       <source>Do you really want to delete these stale crash session files?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8405" />
+      <location filename="../UI/UserInterface.py" line="8412" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8406" />
+      <location filename="../UI/UserInterface.py" line="8413" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8594" />
+      <location filename="../UI/UserInterface.py" line="8605" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8595" />
+      <location filename="../UI/UserInterface.py" line="8606" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8640" />
+      <location filename="../UI/UserInterface.py" line="8651" />
       <source>First time usage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8641" />
+      <location filename="../UI/UserInterface.py" line="8652" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8663" />
+      <location filename="../UI/UserInterface.py" line="8674" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8831" />
+      <location filename="../UI/UserInterface.py" line="8842" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8832" />
+      <location filename="../UI/UserInterface.py" line="8843" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -93655,8 +93670,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginVcsGit.py" line="134" />
-      <location filename="../Plugins/PluginVcsGit.py" line="98" />
+      <location filename="../Plugins/PluginVcsGit.py" line="133" />
+      <location filename="../Plugins/PluginVcsGit.py" line="97" />
       <source>Git</source>
       <translation type="unfinished" />
     </message>
@@ -93870,156 +93885,156 @@
   <context>
     <name>VcsProjectHelper</name>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="76" />
+      <location filename="../VCS/ProjectHelper.py" line="77" />
       <source>New from repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="78" />
+      <location filename="../VCS/ProjectHelper.py" line="79" />
       <source>&amp;New from repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="85" />
+      <location filename="../VCS/ProjectHelper.py" line="86" />
       <source>Create a new project from the VCS repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="90" />
+      <location filename="../VCS/ProjectHelper.py" line="91" />
       <source>&lt;b&gt;New from repository&lt;/b&gt;&lt;p&gt;This creates a new local project from the VCS repository.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="101" />
+      <location filename="../VCS/ProjectHelper.py" line="102" />
       <source>Export from repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="103" />
+      <location filename="../VCS/ProjectHelper.py" line="104" />
       <source>&amp;Export from repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="112" />
+      <location filename="../VCS/ProjectHelper.py" line="113" />
       <source>Export a project from the repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="117" />
+      <location filename="../VCS/ProjectHelper.py" line="118" />
       <source>&lt;b&gt;Export from repository&lt;/b&gt;&lt;p&gt;This exports a project from the repository.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="127" />
+      <location filename="../VCS/ProjectHelper.py" line="128" />
       <source>Add to repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="129" />
+      <location filename="../VCS/ProjectHelper.py" line="130" />
       <source>&amp;Add to repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="136" />
+      <location filename="../VCS/ProjectHelper.py" line="137" />
       <source>Add the local project to the VCS repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="141" />
+      <location filename="../VCS/ProjectHelper.py" line="142" />
       <source>&lt;b&gt;Add to repository&lt;/b&gt;&lt;p&gt;This adds (imports) the local project to the VCS repository.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="192" />
-      <location filename="../VCS/ProjectHelper.py" line="190" />
+      <location filename="../VCS/ProjectHelper.py" line="193" />
+      <location filename="../VCS/ProjectHelper.py" line="191" />
       <source>VCS</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="265" />
-      <location filename="../VCS/ProjectHelper.py" line="236" />
+      <location filename="../VCS/ProjectHelper.py" line="266" />
+      <location filename="../VCS/ProjectHelper.py" line="237" />
       <source>New Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="462" />
-      <location filename="../VCS/ProjectHelper.py" line="237" />
+      <location filename="../VCS/ProjectHelper.py" line="465" />
+      <location filename="../VCS/ProjectHelper.py" line="238" />
       <source>Select version control system for the project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../VCS/ProjectHelper.py" line="497" />
+      <location filename="../VCS/ProjectHelper.py" line="267" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="287" />
+      <source>Create project directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="290" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="396" />
+      <location filename="../VCS/ProjectHelper.py" line="380" />
+      <location filename="../VCS/ProjectHelper.py" line="336" />
+      <location filename="../VCS/ProjectHelper.py" line="316" />
+      <source>New project from repository</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="319" />
+      <source>Select a project file to open.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="339" />
+      <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="384" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="399" />
+      <source>The project could not be retrieved from the repository.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../VCS/ProjectHelper.py" line="494" />
-      <location filename="../VCS/ProjectHelper.py" line="266" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="286" />
-      <source>Create project directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="289" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="393" />
-      <location filename="../VCS/ProjectHelper.py" line="377" />
-      <location filename="../VCS/ProjectHelper.py" line="335" />
-      <location filename="../VCS/ProjectHelper.py" line="315" />
-      <source>New project from repository</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="318" />
-      <source>Select a project file to open.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="338" />
-      <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="381" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="396" />
-      <source>The project could not be retrieved from the repository.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="491" />
-      <location filename="../VCS/ProjectHelper.py" line="461" />
+      <location filename="../VCS/ProjectHelper.py" line="464" />
       <source>Import Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="535" />
+      <location filename="../VCS/ProjectHelper.py" line="540" />
       <source>Update</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="669" />
-      <location filename="../VCS/ProjectHelper.py" line="536" />
+      <location filename="../VCS/ProjectHelper.py" line="674" />
+      <location filename="../VCS/ProjectHelper.py" line="541" />
       <source>The project should be reread. Do this now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="572" />
+      <location filename="../VCS/ProjectHelper.py" line="577" />
       <source>Remove project from repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="575" />
+      <location filename="../VCS/ProjectHelper.py" line="580" />
       <source>Dou you really want to remove this project from the repository (and disk)?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="668" />
+      <location filename="../VCS/ProjectHelper.py" line="673" />
       <source>Switch</source>
       <translation type="unfinished" />
     </message>
@@ -99010,54 +99025,54 @@
   <context>
     <name>VirtualenvManager</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="318" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="322" />
       <source>Add Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="319" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="323" />
       <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="356" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="362" />
       <source>Change Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="389" />
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="357" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="395" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="363" />
       <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="388" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="394" />
       <source>Rename Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="480" />
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="413" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="486" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="419" />
       <source>{0} - {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="420" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="426" />
       <source>Delete Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="421" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="427" />
       <source>Do you really want to delete these virtual environments?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="487" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="493" />
       <source>Remove Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="488" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="494" />
       <source>Do you really want to remove these virtual environments?</source>
       <translation type="unfinished" />
     </message>
@@ -99065,7 +99080,7 @@
   <context>
     <name>VirtualenvManagerDialog</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" />
+      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="449" />
       <source>Manage Virtual Environments</source>
       <translation type="unfinished" />
     </message>
@@ -99188,7 +99203,7 @@
   <context>
     <name>VirtualenvManagerWindow</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" />
+      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="489" />
       <source>Manage Virtual Environments</source>
       <translation type="unfinished" />
     </message>
@@ -104288,22 +104303,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="125" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="117" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="127" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="119" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="49" />
       <source>Connect WiFi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="173" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="167" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="175" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="169" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="50" />
       <source>Check Internet Connection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="147" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="141" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="149" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="143" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="51" />
       <source>Disconnect WiFi</source>
       <translation type="unfinished" />
@@ -104314,40 +104329,40 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="244" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="235" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="225" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="215" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="249" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="240" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="230" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="220" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="55" />
       <source>Write WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="282" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="272" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="261" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="287" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="277" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="266" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="56" />
       <source>Remove WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="495" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="486" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="500" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="491" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="58" />
       <source>Enable WebREPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="529" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="520" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="512" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="534" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="525" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="517" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="59" />
       <source>Disable WebREPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="313" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="329" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="318" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="61" />
       <source>Start WiFi Access Point</source>
       <translation type="unfinished" />
@@ -104358,14 +104373,14 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="378" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="383" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="66" />
       <source>Show Connected Clients</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="345" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="359" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="350" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="68" />
       <source>Stop WiFi Access Point</source>
       <translation type="unfinished" />
@@ -104381,186 +104396,186 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="464" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="448" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="428" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="419" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="469" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="433" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="424" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="79" />
       <source>Set Network Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="118" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="120" />
       <source>&lt;p&gt;The device was connected to &lt;b&gt;{0}&lt;/b&gt; successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="126" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="128" />
       <source>&lt;p&gt;The device could not connect to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="533" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="499" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="286" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="248" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="538" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="504" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="291" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="253" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="178" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="152" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="131" />
+      <source>unknown</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="144" />
+      <source>&lt;p&gt;The device was disconnected from the WiFi network.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="150" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="129" />
-      <source>unknown</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="142" />
-      <source>&lt;p&gt;The device was disconnected from the WiFi network.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="148" />
       <source>&lt;p&gt;The device could not be disconnected.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="161" />
-      <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="163" />
+      <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="165" />
       <source>&lt;p&gt;The internet connection is &lt;b&gt;not available&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="174" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176" />
       <source>&lt;p&gt;The internet is not available.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="236" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="216" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="241" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="221" />
       <source>&lt;p&gt;The WiFi credentials were saved on the device. The device will connect to the WiFi network at boot time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="226" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="231" />
       <source>&lt;p&gt;The WiFi credentials and a connect script were saved on the device. Use the script by simply importing it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="245" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="250" />
       <source>&lt;p&gt;The WiFi credentials could not be saved on the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="262" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="267" />
       <source>Shall the saved WiFi credentials really be removed from the connected device?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="273" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="278" />
       <source>&lt;p&gt;The WiFi credentials were removed from the device. The device will not connect to the WiFi network at boot time anymore.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="283" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="288" />
       <source>&lt;p&gt;The WiFi credentials could not be removed from the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="314" />
-      <source>The WiFi Access Point interface was started successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="319" />
+      <source>The WiFi Access Point interface was started successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324" />
       <source>&lt;p&gt;The WiFi Access Point could not be started.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="405" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="356" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="326" />
+      <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351" />
+      <source>The WiFi Access Point interface was stopped successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354" />
+      <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="384" />
+      <source>No clients are connected to the access point.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="408" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="399" />
+      <source>Deactivate WiFi Interface</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="400" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="321" />
-      <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="346" />
-      <source>The WiFi Access Point interface was stopped successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="349" />
-      <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="379" />
-      <source>No clients are connected to the access point.</source>
+      <source>The WiFi interface was deactivated successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="403" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="394" />
-      <source>Deactivate WiFi Interface</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="395" />
-      <source>The WiFi interface was deactivated successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="398" />
       <source>&lt;p&gt;The WiFi interface could not be deactivated.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="420" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="425" />
       <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;adafruit_ntp&lt;/b&gt; is not installed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="429" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="434" />
       <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;ntptime&lt;/b&gt; is not available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="449" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="454" />
       <source>The device time was synchronized successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453" />
-      <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="458" />
+      <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="463" />
       <source>&lt;p&gt;The device time could not be synchronized. Is the device connected to a WiFi network?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="487" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="492" />
       <source>&lt;p&gt;The WebREPL server of the device will be activated after a reboot.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="496" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="501" />
       <source>&lt;p&gt;The WebREPL server of the device could not be enabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="513" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="518" />
       <source>Shall the WebREPL server of the device really be disabled?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="521" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="526" />
       <source>&lt;p&gt;The WebREPL server of the device will not be enabled at boot time anymore.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="530" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="535" />
       <source>&lt;p&gt;The WebREPL server of the device could not be disabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -105120,38 +105135,38 @@
   <context>
     <name>mercurial</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1349" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1383" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1913" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1955" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1391" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1919" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1363" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1961" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1397" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1370" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1968" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1404" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1376" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1410" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1429" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -105162,35 +105177,35 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1887" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1929" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1894" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1936" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1901" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1943" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1906" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1948" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1933" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1975" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1981" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -105851,17 +105866,17 @@
   <context>
     <name>subversion</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1736" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1769" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1888" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1919" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1892" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1923" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_en.ts	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/i18n/eric7_en.ts	Fri Nov 01 18:12:30 2024 +0100
@@ -1970,47 +1970,47 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="281" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="284" />
       <source>Formatting Failure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="282" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="285" />
       <source>&lt;p&gt;Formatting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="545" />
-      <source>would reformat</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../CodeFormatting/BlackFormattingDialog.py" line="548" />
+      <source>would reformat</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="551" />
       <source>reformatted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="553" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="556" />
       <source>unchanged</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="557" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="560" />
       <source>unmodified</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="561" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="564" />
       <source>ignored</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="565" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="568" />
       <source>failed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="570" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="573" />
       <source>invalid status ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -4356,16 +4356,16 @@
   <context>
     <name>CircuitPythonUpdaterInterface</name>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="600" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="592" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="579" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="546" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="516" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="506" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="486" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="469" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="460" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="446" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="615" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="607" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="594" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="561" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="531" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="521" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="501" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="484" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="475" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="54" />
       <source>Install Modules</source>
       <translation type="unfinished" />
@@ -4401,10 +4401,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="385" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="375" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="365" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="346" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="396" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="355" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="95" />
       <source>Update Modules</source>
       <translation type="unfinished" />
@@ -4425,8 +4425,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="642" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="621" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="658" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="636" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="108" />
       <source>Uninstall Modules</source>
       <translation type="unfinished" />
@@ -4447,25 +4447,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="249" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="236" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="225" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="213" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="201" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="188" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="251" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="238" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="227" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="215" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="203" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="190" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="118" />
       <source>Add Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="284" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="269" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="287" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="271" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="119" />
       <source>Remove Bundles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="671" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="689" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="121" />
       <source>Show Local Cache Path</source>
       <translation type="unfinished" />
@@ -4486,132 +4486,132 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="189" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="191" />
       <source>Enter Bundle by 'User/Repo' Github String:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="202" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="204" />
       <source>&lt;p&gt;The bundle &lt;b&gt;{0}&lt;/b&gt; is already in the list.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="214" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="216" />
       <source>&lt;p&gt;The bundle string is invalid, expecting github URL or 'user/repository' string.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="226" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="228" />
       <source>&lt;p&gt;The bundle string is invalid. The repository doesn't exist (error code 404).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="237" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="239" />
       <source>&lt;p&gt;The bundle string is invalid. Is the repository a valid circup bundle?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="250" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="252" />
       <source>&lt;p&gt;Added bundle &lt;b&gt;{0}&lt;/b&gt; ({1}).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="270" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="272" />
       <source>Select the bundles to be removed:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="285" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="288" />
       <source>&lt;p&gt;These bundles were removed from the local bundles list.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="347" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="356" />
       <source>All modules are already up-to-date.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="366" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="377" />
       <source>&lt;p&gt;There was an error updating &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="387" />
       <source>&lt;p&gt;These modules were updated on the connected device.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="397" />
       <source>No modules could be updated.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="448" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="463" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="476" />
       <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not contain valid modules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="470" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="485" />
       <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="488" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="503" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="507" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="522" />
       <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not contain valid import statements or does not import external modules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="517" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="532" />
       <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="547" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="562" />
       <source>&lt;p&gt;Ready to install these modules?{0}{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="552" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="567" />
       <source>Dependencies:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="580" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="595" />
       <source>&lt;p&gt;Installation complete. These modules were installed successfully.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="593" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="608" />
       <source>&lt;p&gt;Installation complete. No modules were installed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="601" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="616" />
       <source>&lt;p&gt;No modules installation is required.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="622" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="637" />
       <source>Select the modules/packages to be uninstalled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="643" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="659" />
       <source>&lt;p&gt;These modules/packages were uninstalled from the connected device.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="672" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="690" />
       <source>&lt;p&gt;&lt;b&gt;circup&lt;/b&gt; stores the downloaded CircuitPython bundles in this directory.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -4619,44 +4619,44 @@
   <context>
     <name>CircupFunctions</name>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="75" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="84" />
       <source>Find Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="76" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="85" />
       <source>&lt;p&gt;There was an error: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="148" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="109" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="157" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="118" />
       <source>Download Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="110" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="119" />
       <source>&lt;p&gt;There was a problem downloading the bundle. Please try again in a moment.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="149" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="158" />
       <source>&lt;p&gt;Missing file &lt;b&gt;boot_out.txt&lt;/b&gt; on the device: wrong path or drive corrupted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="243" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="232" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="252" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="241" />
       <source>Install Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="233" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="242" />
       <source>&lt;p&gt;The compiled version of module &lt;b&gt;{0}&lt;/b&gt; cannot be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="244" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="253" />
       <source>&lt;p&gt;The module name &lt;b&gt;{0}&lt;/b&gt; is not known.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -4780,17 +4780,17 @@
   <context>
     <name>Closehead</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="52" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54" />
       <source>Revision &lt;{0}&gt; closed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="56" />
       <source>Revisions &lt;{0}&gt; closed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="61" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="63" />
       <source>Closing Heads</source>
       <translation type="unfinished" />
     </message>
@@ -6114,19 +6114,19 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1650" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1609" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1652" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1611" />
       <source>{0} - {1}</source>
       <comment>issue code, message</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2995" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2997" />
       <source>Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2996" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2998" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
@@ -7393,7 +7393,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="713" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="715" />
       <location filename="../CondaInterface/CondaPackagesWidget.py" line="181" />
       <source>Delete Environment</source>
       <translation type="unfinished" />
@@ -7440,22 +7440,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="686" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="687" />
       <source>Create Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="714" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="716" />
       <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="739" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="741" />
       <source>Edit Configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="740" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="742" />
       <source>The configuration file "{0}" does not exist or is not writable.</source>
       <translation type="unfinished" />
     </message>
@@ -8798,30 +8798,30 @@
   <context>
     <name>CycloneDX</name>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="190" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="182" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="151" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="115" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="192" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="184" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="153" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="117" />
       <source>CycloneDX - SBOM Creation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="118" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="120" />
       <source>&lt;p&gt;The configured input file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="152" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="154" />
       <source>&lt;p&gt;Some of the dependencies do not have pinned version numbers.&lt;ul&gt;{0}&lt;/ul&gt;The above listed packages will NOT be included in the generated CycloneDX SBOM file as version is a mandatory field.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="183" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="185" />
       <source>&lt;p&gt;The SBOM data was written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="191" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="193" />
       <source>&lt;p&gt;The SBOM file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9163,58 +9163,58 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1355" />
-      <location filename="../Debugger/DebugServer.py" line="1272" />
-      <location filename="../Debugger/DebugServer.py" line="1188" />
-      <location filename="../Debugger/DebugServer.py" line="1098" />
+      <location filename="../Debugger/DebugServer.py" line="1358" />
+      <location filename="../Debugger/DebugServer.py" line="1275" />
+      <location filename="../Debugger/DebugServer.py" line="1191" />
+      <location filename="../Debugger/DebugServer.py" line="1101" />
       <source>Start Debugger</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1356" />
-      <location filename="../Debugger/DebugServer.py" line="1273" />
-      <location filename="../Debugger/DebugServer.py" line="1189" />
-      <location filename="../Debugger/DebugServer.py" line="1099" />
+      <location filename="../Debugger/DebugServer.py" line="1359" />
+      <location filename="../Debugger/DebugServer.py" line="1276" />
+      <location filename="../Debugger/DebugServer.py" line="1192" />
+      <location filename="../Debugger/DebugServer.py" line="1102" />
       <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1945" />
+      <location filename="../Debugger/DebugServer.py" line="1948" />
       <source>
 Not connected
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2110" />
+      <location filename="../Debugger/DebugServer.py" line="2113" />
       <source>Passive debug connection received
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2119" />
+      <location filename="../Debugger/DebugServer.py" line="2122" />
       <source>Passive debug connection received while not in passive mode.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2125" />
+      <location filename="../Debugger/DebugServer.py" line="2128" />
       <source>Debug Client Connection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2126" />
+      <location filename="../Debugger/DebugServer.py" line="2129" />
       <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2141" />
+      <location filename="../Debugger/DebugServer.py" line="2144" />
       <source>Passive debug connection closed
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2272" />
+      <location filename="../Debugger/DebugServer.py" line="2275" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9227,7 +9227,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2374" />
+      <location filename="../Debugger/DebugUI.py" line="2380" />
       <location filename="../Debugger/DebugUI.py" line="234" />
       <source>Run Script</source>
       <translation type="unfinished" />
@@ -9248,8 +9248,8 @@
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="2386" />
       <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="2374" />
       <location filename="../Debugger/DebugUI.py" line="255" />
       <source>Run Project</source>
       <translation type="unfinished" />
@@ -9350,7 +9350,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2567" />
+      <location filename="../Debugger/DebugUI.py" line="2573" />
       <location filename="../Debugger/DebugUI.py" line="365" />
       <source>Debug Script</source>
       <translation type="unfinished" />
@@ -9371,8 +9371,8 @@
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="2579" />
       <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="2567" />
       <location filename="../Debugger/DebugUI.py" line="387" />
       <source>Debug Project</source>
       <translation type="unfinished" />
@@ -9393,7 +9393,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2889" />
+      <location filename="../Debugger/DebugUI.py" line="2895" />
       <location filename="../Debugger/DebugUI.py" line="411" />
       <location filename="../Debugger/DebugUI.py" line="409" />
       <source>Restart</source>
@@ -9832,66 +9832,66 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1775" />
+      <location filename="../Debugger/DebugUI.py" line="1779" />
       <source>Watch Expression Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1776" />
+      <location filename="../Debugger/DebugUI.py" line="1780" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1804" />
+      <location filename="../Debugger/DebugUI.py" line="1810" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1809" />
-      <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="1815" />
+      <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="1821" />
       <source>Watch expression already exists</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1980" />
-      <location filename="../Debugger/DebugUI.py" line="1971" />
+      <location filename="../Debugger/DebugUI.py" line="1986" />
+      <location filename="../Debugger/DebugUI.py" line="1977" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1973" />
+      <location filename="../Debugger/DebugUI.py" line="1979" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2381" />
-      <location filename="../Debugger/DebugUI.py" line="2183" />
-      <location filename="../Debugger/DebugUI.py" line="1981" />
+      <location filename="../Debugger/DebugUI.py" line="2387" />
+      <location filename="../Debugger/DebugUI.py" line="2189" />
+      <location filename="../Debugger/DebugUI.py" line="1987" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2182" />
-      <location filename="../Debugger/DebugUI.py" line="2173" />
+      <location filename="../Debugger/DebugUI.py" line="2188" />
+      <location filename="../Debugger/DebugUI.py" line="2179" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2175" />
+      <location filename="../Debugger/DebugUI.py" line="2181" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2574" />
+      <location filename="../Debugger/DebugUI.py" line="2580" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3246" />
+      <location filename="../Debugger/DebugUI.py" line="3252" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -10054,26 +10054,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="325" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="312" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="336" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="323" />
       <source>Add allowed host</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="349" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="313" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="360" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="324" />
       <source>Enter the IP address of an allowed host</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="363" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="326" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="374" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="337" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="362" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="348" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="373" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="359" />
       <source>Edit allowed host</source>
       <translation type="unfinished" />
     </message>
@@ -10170,12 +10170,7 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debugger Type:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Select the debugger type of the backend</source>
+      <source>Debug Server Port:</source>
       <translation type="unfinished" />
     </message>
     <message>
@@ -10191,7 +10186,27 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debug Server Port:</source>
+      <source>Debugger Type:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select the debugger type of the backend</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select to not stop the debugger at the first executable line.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>&lt;b&gt;Don't stop at first line&lt;/b&gt;&lt;p&gt;This prevents the debugger from stopping at the first executable line.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Don't stop at first line</source>
       <translation type="unfinished" />
     </message>
     <message>
@@ -10524,46 +10539,46 @@
   <context>
     <name>DebuggerInterfacePython</name>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="728" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="705" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="609" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="563" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="445" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="422" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="345" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="321" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="258" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="747" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="724" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="628" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="582" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="464" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="441" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="364" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="340" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="277" />
       <source>Start Debugger</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="564" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="259" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="583" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="278" />
       <source>&lt;p&gt;No suitable Python3 environment configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="729" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="706" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="610" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="446" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="423" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="322" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="748" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="725" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="629" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="465" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="442" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="341" />
       <source>&lt;p&gt;The debugger backend could not be started.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="346" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="365" />
       <source>&lt;p&gt;Remote debugging is configured but no command for remote login was given.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1691" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1692" />
       <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;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -11569,8 +11584,8 @@
   <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="450" />
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="420" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421" />
       <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.ui" line="0" />
       <source>.desktop Wizard</source>
       <translation type="unfinished" />
@@ -11927,8 +11942,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451" />
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="452" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="422" />
       <source>Only one of 'Only Show In' or  'Not Show In' allowed.</source>
       <translation type="unfinished" />
     </message>
@@ -15082,12 +15097,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="287" />
+      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288" />
       <source>Tab and Indent Override</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288" />
+      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="289" />
       <source>Shall the selected entries really be removed?</source>
       <translation type="unfinished" />
     </message>
@@ -15422,27 +15437,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="803" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="805" />
       <source>Delete Sub-Style</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="804" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="806" />
       <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="840" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="842" />
       <source>{0} - Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="867" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="869" />
       <source>Reset Sub-Styles to Default</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="868" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="870" />
       <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -21732,14 +21747,14 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="395" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="193" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1775" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1759" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1782" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1766" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="197" />
       <source>Erase Flash</source>
       <translation type="unfinished" />
@@ -21750,7 +21765,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1864" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1877" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="204" />
       <source>Flash Additional Firmware</source>
       <translation type="unfinished" />
@@ -21762,25 +21777,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="367" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="368" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="211" />
       <source>Restore Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="465" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="467" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="215" />
       <source>Show Chip ID</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="488" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="491" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="218" />
       <source>Show Flash ID</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="511" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="515" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="221" />
       <source>Show MAC Address</source>
       <translation type="unfinished" />
@@ -21801,139 +21816,139 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1863" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1820" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="366" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1876" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1830" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="367" />
       <source>'esptool write_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="396" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="425" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="434" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="436" />
       <source>&lt;h4&gt;{0} Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="442" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="444" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="448" />
       <source>{0} Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="466" />
       <source>'esptool chip_id' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="487" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="490" />
       <source>'esptool flash_id' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="510" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="514" />
       <source>'esptool read_mac' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="641" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="646" />
       <source>Set Country</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="642" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="647" />
       <source>Reset Country</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="965" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="970" />
       <source>Error saving credentials: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="976" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="981" />
       <source>Error saving auto-connect script: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="980" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="985" />
       <source>Error modifying 'boot.py': {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1017" />
       <source>Error deleting credentials: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1096" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1101" />
       <source>unknown ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1475" />
-      <source>Active</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1476" />
-      <source>Name</source>
-      <translation>Name</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1477" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/EspDevices.py" line="1480" />
-      <source>Address Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1481" />
-      <source>Public</source>
+      <source>Active</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/EspDevices.py" line="1481" />
+      <source>Name</source>
+      <translation>Name</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1482" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1485" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1486" />
+      <source>Public</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1486" />
       <source>Random</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1484" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1489" />
       <source>MTU</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1484" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1489" />
       <source>{0} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1760" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1767" />
       <source>Shall the flash of the selected device really be erased?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1774" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1781" />
       <source>'esptool erase_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1821" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1831" />
       <source>Flash µPy/CPy Firmware</source>
       <translation type="unfinished" />
     </message>
@@ -21941,7 +21956,7 @@
   <context>
     <name>EspFirmwareSelectionDialog</name>
     <message>
-      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="68" />
+      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="77" />
       <source>Firmware Files (*.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -24231,22 +24246,22 @@
   <context>
     <name>FindFileFiltersEditDialog</name>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="109" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="111" />
       <source>Delete Selected Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="110" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="112" />
       <source>Shall the selected filters really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="127" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="129" />
       <source>Default Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="128" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="130" />
       <source>Do you really want to clear the list of defined file filters and replace it with the list of default filters?</source>
       <translation type="unfinished" />
     </message>
@@ -24938,7 +24953,7 @@
   <context>
     <name>FormattingDiffWidget</name>
     <message>
-      <location filename="../CodeFormatting/FormattingDiffWidget.py" line="63" />
+      <location filename="../CodeFormatting/FormattingDiffWidget.py" line="65" />
       <source>There is no difference.</source>
       <translation type="unfinished" />
     </message>
@@ -25038,7 +25053,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1715" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1747" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="219" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -25064,153 +25079,153 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="308" />
       <source>Adding files to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="316" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="321" />
       <source>Initial commit to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="348" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="357" />
       <source>Cloning project from a Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="448" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="460" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="449" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="461" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="518" />
       <source>Committing changes to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="584" />
       <source>Switch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="585" />
       <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="597" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="614" />
       <source>Synchronizing with the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="664" />
       <source>Adding files/directories to the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="721" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="743" />
       <source>Removing files/directories from the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="814" />
       <source>Renaming {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="942" />
       <source>Unstage files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="968" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="957" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="996" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="985" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="958" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="986" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="969" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="997" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="975" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1003" />
       <source>Reverting changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1028" />
-      <source>Merging</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1057" />
+      <source>Merging</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1086" />
       <source>Main branch head</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1285" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1315" />
       <source>Git Command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1396" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1426" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1430" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1406" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1436" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1412" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1442" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1417" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1447" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1422" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1457" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1462" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1437" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1467" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1443" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1473" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -25220,459 +25235,459 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1553" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1554" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1574" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1621" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1604" />
       <source>Git Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1575" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1605" />
       <source>&lt;p&gt;Copying the directory &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1592" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1622" />
       <source>&lt;p&gt;Copying the file &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2845" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1717" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2920" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1749" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1788" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1775" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1764" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1822" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1809" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1798" />
       <source>Git Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1823" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1842" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1877" />
       <source>Fetching from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1879" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918" />
       <source>Pulling from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1919" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1962" />
       <source>Pushing to a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1948" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1994" />
       <source>Committing failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1974" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2021" />
       <source>Aborting uncommitted/failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2008" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2056" />
       <source>Applying patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2043" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2091" />
       <source>Check patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2046" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2094" />
       <source>Apply patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2130" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2181" />
       <source>Tagging in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2443" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2488" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2510" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2511" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2484" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2578" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2560" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2542" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2486" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2544" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2503" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2561" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2550" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2608" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2597" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2689" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2571" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2753" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2699" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2599" />
       <source>Git Bundle Files (*.bundle);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2580" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2627" />
       <source>List Bundle Heads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2687" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2751" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2697" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2660" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2775" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2746" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2816" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3025" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2861" />
+      <source>Git Bisect ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2919" />
+      <source>Process Generation Error</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2965" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2948" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2930" />
+      <source>Create Bisect Replay File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2932" />
+      <source>Git Bisect Replay Files (*.replay)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2949" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2789" />
-      <source>Git Bisect ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2844" />
-      <source>Process Generation Error</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2890" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2873" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2855" />
-      <source>Create Bisect Replay File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2857" />
-      <source>Git Bisect Replay Files (*.replay)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2874" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2891" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2966" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2911" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2940" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2913" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3015" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2988" />
       <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3013" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3299" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3121" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3378" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3200" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3181" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3260" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3182" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3261" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3323" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3402" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3384" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3417" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3497" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3442" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3468" />
-      <source>Copy Changesets (Cancel)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3549" />
+      <source>Copy Changesets (Cancel)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3630" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3763" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3844" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3673" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3845" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3802" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3751" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3674" />
+      <source>Select a stash (empty for latest stash):</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3708" />
+      <source>Restore Stash</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3721" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
-      <source>Select a stash (empty for latest stash):</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3669" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3627" />
-      <source>Restore Stash</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3683" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3720" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3801" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3790" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3710" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3735" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3774" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3855" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3775" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3856" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3785" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3866" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3807" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3888" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3889" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3895" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3876" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3958" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3899" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3985" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3921" />
-      <source>Performing Repository Housekeeping</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3963" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3965" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3970" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3976" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3982" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3987" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3993" />
-      <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3999" />
-      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011" />
+      <source>Performing Repository Housekeeping</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4054" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4056" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4061" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4067" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4073" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4078" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4084" />
+      <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4090" />
+      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4095" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4102" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4080" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4172" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4120" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4186" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4278" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4187" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4279" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4200" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4292" />
       <source>All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4204" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4296" />
       <source>Submodule Path</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4297" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4254" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4347" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4382" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4357" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4318" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4453" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4414" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4387" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4484" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4441" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4539" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -32334,101 +32349,101 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="519" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="520" />
       <source>Add Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="537" />
-      <source>Lock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538" />
-      <source>Enter a reason for the lock:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="556" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538" />
+      <source>Lock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="539" />
+      <source>Enter a reason for the lock:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="557" />
       <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="580" />
-      <source>Unlock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="581" />
+      <source>Unlock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="582" />
       <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="616" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="599" />
-      <source>Move Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600" />
-      <source>Enter the new path for the worktree:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600" />
+      <source>Move Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="601" />
+      <source>Enter the new path for the worktree:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="618" />
       <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="637" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="638" />
       <source>Remove Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="640" />
       <source>Remove Worktree Forcefully</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="645" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="646" />
       <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="672" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="673" />
       <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="727" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="703" />
-      <source>Prune Worktree Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704" />
-      <source>Do you really want to prune the information of these worktrees?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="728" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704" />
+      <source>Prune Worktree Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="705" />
+      <source>Do you really want to prune the information of these worktrees?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="729" />
       <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="765" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="754" />
-      <source>Repair Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755" />
-      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755" />
+      <source>Repair Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="756" />
+      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="767" />
       <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -32544,12 +32559,12 @@
   <context>
     <name>Gpg</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="73" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="76" />
       <source>Verify Signatures</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="124" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="128" />
       <source>Sign Revision</source>
       <translation type="unfinished" />
     </message>
@@ -35143,456 +35158,456 @@
   <context>
     <name>Hg</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="300" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="303" />
       <source>Create project repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="301" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="304" />
       <source>The project repository could not be created.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="334" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="338" />
       <source>Creating Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="353" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="359" />
       <source>Initial commit to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="405" />
       <source>Cloning project from a Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="503" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="516" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="504" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="517" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="566" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="580" />
       <source>Committing changes to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="661" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="679" />
       <source>Synchronizing with the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="692" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="713" />
       <source>Adding files/directories to the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="751" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="774" />
       <source>Removing files/directories from the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="829" />
       <source>Renaming {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="935" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="964" />
       <source>Tagging in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="981" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="970" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1011" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1000" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="971" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1001" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="982" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1012" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="988" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018" />
       <source>Reverting changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1033" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064" />
       <source>Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1072" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1103" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1095" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1065" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1096" />
       <source>Do you really want to re-merge these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1073" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1104" />
       <source>Do you really want to re-merge the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1076" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1108" />
       <source>Re-Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1098" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1131" />
       <source>Current branch tip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1280" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1314" />
       <source>Mercurial command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1457" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1492" />
       <source>Copying {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1720" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1699" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1746" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737" />
       <source>Mercurial Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1721" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1759" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2391" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2380" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1797" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2457" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2446" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1835" />
       <source>Apply changegroups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1800" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1838" />
       <source>Pulling from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1845" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1884" />
       <source>Pushing to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1985" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2027" />
       <source>Marking as 'unresolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1987" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2029" />
       <source>Marking as 'resolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2009" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2051" />
       <source>Aborting uncommitted merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2032" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2075" />
       <source>Creating branch in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2040" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2086" />
       <source>Created new branch &lt;{0}&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2095" />
       <source>Showing current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2136" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2184" />
       <source>Verifying the integrity of the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2149" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2200" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2160" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2215" />
       <source>Showing aliases for remote repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2171" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230" />
       <source>Recovering from interrupted transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2182" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2245" />
       <source>Identifying project directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2227" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2291" />
       <source>Create .hgignore file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2292" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2329" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2303" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2285" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2351" />
       <source>Create changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2287" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2353" />
       <source>Mercurial Changegroup Files (*.hg)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2304" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370" />
       <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2409" />
       <source>Preview changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2372" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2345" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2438" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2411" />
       <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2381" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2447" />
       <source>Shall the working directory be updated?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2413" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2479" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2433" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2501" />
       <source>Mercurial Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2527" />
       <source>Removing files from the Mercurial repository only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2500" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2481" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2576" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2557" />
       <source>Backing out changeset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2482" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2558" />
       <source>No revision given. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2516" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2511" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2593" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2587" />
       <source>Rollback last transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2512" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2588" />
       <source>Are you sure you want to rollback the last transaction?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2579" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2657" />
       <source>Import Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2627" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2707" />
       <source>Export Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2749" />
       <source>Change Phase</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2724" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2804" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2843" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2853" />
       <source>Copy Changesets (Stop)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2783" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2863" />
       <source>Copy Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2806" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2887" />
       <source>Create Unversioned Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2820" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2902" />
       <source>Delete All Backups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2821" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2903" />
       <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2912" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2892" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2881" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2994" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2963" />
       <source>Add Sub-repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2951" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2882" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3033" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2964" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2893" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2975" />
       <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2969" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2913" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3051" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2995" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2968" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2950" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2936" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3050" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3032" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3018" />
       <source>Remove Sub-repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2937" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3019" />
       <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3056" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3296" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3138" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3057" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3139" />
       <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3207" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3297" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3329" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3420" />
       <source>Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3437" />
       <source>Delete Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3347" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3438" />
       <source>Select the bookmark to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3449" />
       <source>Delete Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3382" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3476" />
       <source>Rename Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3421" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3518" />
       <source>Move Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3502" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3600" />
       <source>Pull Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3503" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3601" />
       <source>Select the bookmark to be pulled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3515" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3613" />
       <source>Pulling bookmark from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3641" />
       <source>Push Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3542" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3642" />
       <source>Select the bookmark to be push:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3657" />
       <source>Pushing bookmark to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
@@ -43129,22 +43144,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="644" />
       <source>Delete Host Minimum Protocol</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="643" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="645" />
       <source>&lt;p&gt;Shall the minimum protocol entry for host &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="708" />
       <source>Edit User Configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="707" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="709" />
       <source>You will loose all changes made in this dialog. Shall the data be saved first?</source>
       <translation type="unfinished" />
     </message>
@@ -43264,22 +43279,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="79" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="108" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="164" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -48917,52 +48932,52 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="300" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="303" />
       <source>Imports Sorting Failure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="301" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="304" />
       <source>&lt;p&gt;Imports sorting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="352" />
-      <source>would resort</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../CodeFormatting/IsortFormattingDialog.py" line="355" />
+      <source>would resort</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="358" />
       <source>resorted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="360" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="363" />
       <source>unchanged</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="364" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="367" />
       <source>skipped</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="368" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="371" />
       <source>failed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="373" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="376" />
       <source>error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="374" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="377" />
       <source>Unsupported 'isort' action ({0}) given.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="381" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="384" />
       <source>invalid status ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -49099,7 +49114,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="682" />
+      <location filename="../JediInterface/JediServer.py" line="683" />
       <location filename="../JediInterface/JediServer.py" line="522" />
       <source>Rename Variable</source>
       <translation type="unfinished" />
@@ -49130,27 +49145,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="690" />
+      <location filename="../JediInterface/JediServer.py" line="692" />
       <source>Refactoring</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="691" />
+      <location filename="../JediInterface/JediServer.py" line="693" />
       <source>&lt;p&gt;The refactoring could not be performed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="749" />
+      <location filename="../JediInterface/JediServer.py" line="751" />
       <source>Apply Refactoring</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="750" />
+      <location filename="../JediInterface/JediServer.py" line="752" />
       <source>&lt;p&gt;The refactoring could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="786" />
+      <location filename="../JediInterface/JediServer.py" line="788" />
       <source>The data received from the Jedi server could not be decoded. Please report this issue with the received data to the eric bugs email address.
 Error: {0}
 Data:
@@ -49159,7 +49174,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="796" />
+      <location filename="../JediInterface/JediServer.py" line="798" />
       <source>An exception happened in the Jedi client. Please report it to the eric bugs email address.
 Exception: {0}
 Value: {1}
@@ -49168,25 +49183,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="838" />
+      <location filename="../JediInterface/JediServer.py" line="840" />
       <source>The jedi and/or parso library is not installed.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="843" />
+      <location filename="../JediInterface/JediServer.py" line="845" />
       <source>'{0}' is not supported because the configured interpreter could not be started.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="851" />
+      <location filename="../JediInterface/JediServer.py" line="853" />
       <source>'{0}' is not supported because no suitable interpreter is configured.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="953" />
+      <location filename="../JediInterface/JediServer.py" line="955" />
       <source>Jedi</source>
       <translation type="unfinished" />
     </message>
@@ -49194,37 +49209,37 @@
   <context>
     <name>Largefiles</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="72" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="75" />
       <source>Convert Project - Converting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="88" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="92" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="89" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="93" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="100" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="104" />
       <source>Convert Project - Extracting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="145" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="150" />
       <source>Adding files to the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="174" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="182" />
       <source>Pulling large files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="196" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="205" />
       <source>Verifying the integrity of large files</source>
       <translation type="unfinished" />
     </message>
@@ -50537,13 +50552,13 @@
     <name>Lexers</name>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="412" />
-      <location filename="../Preferences/__init__.py" line="596" />
+      <location filename="../Preferences/__init__.py" line="597" />
       <source>Python Files (*.py *.py3)</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="505" />
-      <location filename="../Preferences/__init__.py" line="599" />
+      <location filename="../Preferences/__init__.py" line="600" />
       <source>Python3 Files (*.py)</source>
       <translation type="unfinished" />
     </message>
@@ -52372,18 +52387,18 @@
   <context>
     <name>MicroPythonDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="356" />
+      <location filename="../MicroPython/Devices/__init__.py" line="369" />
       <source>Generic MicroPython Board</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="403" />
+      <location filename="../MicroPython/Devices/__init__.py" line="416" />
       <source>RP2040/RP2350 based</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="566" />
-      <location filename="../MicroPython/Devices/__init__.py" line="555" />
+      <location filename="../MicroPython/Devices/__init__.py" line="579" />
+      <location filename="../MicroPython/Devices/__init__.py" line="568" />
       <source>Unknown Device</source>
       <translation type="unfinished" />
     </message>
@@ -53786,343 +53801,343 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="737" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="724" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="740" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="725" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="728" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="735" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1193" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1185" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="735" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1196" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1188" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="738" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="796" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="787" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="799" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
       <source>Run Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="779" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
       <source>There is no editor open. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="788" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="797" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="800" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="836" />
       <source>Start Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="834" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="837" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="849" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="852" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="866" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="869" />
       <source>Unsaved Chart Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="867" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="870" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="915" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="918" />
       <source>Start File Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="916" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="919" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="939" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1012" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1015" />
       <source>Downloads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1059" />
-      <source>Show Version</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1062" />
-      <source>Show Implementation</source>
+      <source>Show Version</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
+      <source>Show Implementation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Board Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1268" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1271" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1073" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1073" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Show Device Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
-      <source>Show Local Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <source>Show Local Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1082" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1085" />
       <source>Show Builtin Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1094" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1086" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1689" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1097" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1089" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1723" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1720" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1090" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1725" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1093" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1497" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1501" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1103" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1523" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1514" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1104" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1527" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1518" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1107" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1125" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1128" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1132" />
-      <source>Show Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1135" />
+      <source>Show Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Convert To UF2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1136" />
-      <source>Flash UF2 Device</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1139" />
-      <source>Manage Unknown Devices</source>
+      <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
-      <source>Ignored Serial Devices</source>
+      <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
-      <source>Configure</source>
+      <source>Ignored Serial Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
+      <source>Configure</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Quit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1157" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1160" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1168" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1164" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1171" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1167" />
       <source>Device Version Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1172" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1202" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1215" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1206" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1218" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1209" />
       <source>Device Implementation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1207" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1210" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1216" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1219" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1272" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1299" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1302" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1315" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1318" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1327" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
       <source>Local Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1369" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1352" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1372" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1355" />
       <source>Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1353" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1356" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1370" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1373" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1394" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1397" />
       <source>Error handling device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1395" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1398" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1437" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1440" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1463" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1466" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1473" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1476" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1483" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1486" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1515" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1519" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1607" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1611" />
       <source>Add Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1608" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1657" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1709" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1714" />
       <source>Package '{0}' was installed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1724" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1729" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -56004,237 +56019,237 @@
   <context>
     <name>MultiProject</name>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="338" />
-      <location filename="../MultiProject/MultiProject.py" line="324" />
+      <location filename="../MultiProject/MultiProject.py" line="341" />
+      <location filename="../MultiProject/MultiProject.py" line="327" />
       <source>Copy Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="325" />
+      <location filename="../MultiProject/MultiProject.py" line="328" />
       <source>Enter directory for the new project (must not exist already):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="339" />
+      <location filename="../MultiProject/MultiProject.py" line="342" />
       <source>&lt;p&gt;The source project &lt;b&gt;{0}&lt;/b&gt; could not be copied to its destination &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="349" />
+      <location filename="../MultiProject/MultiProject.py" line="352" />
       <source>{0} - Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="499" />
+      <location filename="../MultiProject/MultiProject.py" line="502" />
       <source>Open Multi Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="556" />
-      <location filename="../MultiProject/MultiProject.py" line="546" />
-      <location filename="../MultiProject/MultiProject.py" line="501" />
+      <location filename="../MultiProject/MultiProject.py" line="559" />
+      <location filename="../MultiProject/MultiProject.py" line="549" />
+      <location filename="../MultiProject/MultiProject.py" line="504" />
       <source>Multi Project Files (*.emj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="554" />
+      <location filename="../MultiProject/MultiProject.py" line="557" />
       <source>Save Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="570" />
+      <location filename="../MultiProject/MultiProject.py" line="573" />
       <source>Save File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="571" />
+      <location filename="../MultiProject/MultiProject.py" line="574" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="598" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
       <source>Close Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="599" />
+      <location filename="../MultiProject/MultiProject.py" line="602" />
       <source>The current multiproject has unsaved changes.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="653" />
+      <location filename="../MultiProject/MultiProject.py" line="656" />
       <source>New multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="655" />
+      <location filename="../MultiProject/MultiProject.py" line="658" />
       <source>&amp;New...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="661" />
+      <location filename="../MultiProject/MultiProject.py" line="664" />
       <source>Generate a new multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="663" />
+      <location filename="../MultiProject/MultiProject.py" line="666" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="673" />
+      <location filename="../MultiProject/MultiProject.py" line="676" />
       <source>Open multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="675" />
+      <location filename="../MultiProject/MultiProject.py" line="678" />
       <source>&amp;Open...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="681" />
+      <location filename="../MultiProject/MultiProject.py" line="684" />
       <source>Open an existing multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="683" />
+      <location filename="../MultiProject/MultiProject.py" line="686" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="689" />
+      <location filename="../MultiProject/MultiProject.py" line="692" />
       <source>Close multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="691" />
+      <location filename="../MultiProject/MultiProject.py" line="694" />
       <source>&amp;Close</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="697" />
+      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>Close the current multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="699" />
+      <location filename="../MultiProject/MultiProject.py" line="702" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="705" />
+      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>Save multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="707" />
+      <location filename="../MultiProject/MultiProject.py" line="710" />
       <source>&amp;Save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="713" />
+      <location filename="../MultiProject/MultiProject.py" line="716" />
       <source>Save the current multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="715" />
+      <location filename="../MultiProject/MultiProject.py" line="718" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="721" />
+      <location filename="../MultiProject/MultiProject.py" line="724" />
       <source>Save multiproject as</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="723" />
+      <location filename="../MultiProject/MultiProject.py" line="726" />
       <source>Save &amp;as...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="730" />
-      <source>Save the current multiproject to a new file</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="733" />
+      <source>Save the current multiproject to a new file</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="742" />
+      <location filename="../MultiProject/MultiProject.py" line="745" />
       <source>Add project to multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
+      <location filename="../MultiProject/MultiProject.py" line="747" />
       <source>Add &amp;project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="751" />
-      <source>Add a project to the current multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="754" />
+      <source>Add a project to the current multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="757" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <location filename="../MultiProject/MultiProject.py" line="767" />
       <source>Multiproject properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="766" />
+      <location filename="../MultiProject/MultiProject.py" line="769" />
       <source>&amp;Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="772" />
+      <location filename="../MultiProject/MultiProject.py" line="775" />
       <source>Show the multiproject properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="774" />
+      <location filename="../MultiProject/MultiProject.py" line="777" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="786" />
-      <location filename="../MultiProject/MultiProject.py" line="784" />
+      <location filename="../MultiProject/MultiProject.py" line="789" />
+      <location filename="../MultiProject/MultiProject.py" line="787" />
       <source>Clear Out</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="793" />
-      <source>Remove all projects marked as removed</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="796" />
+      <source>Remove all projects marked as removed</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="799" />
       <source>&lt;b&gt;Clear Out...&lt;/b&gt;&lt;p&gt;This removes all projects marked as removed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="818" />
+      <location filename="../MultiProject/MultiProject.py" line="821" />
       <source>&amp;Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
+      <location filename="../MultiProject/MultiProject.py" line="822" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="862" />
-      <location filename="../MultiProject/MultiProject.py" line="860" />
+      <location filename="../MultiProject/MultiProject.py" line="865" />
+      <location filename="../MultiProject/MultiProject.py" line="863" />
       <source>Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="918" />
+      <location filename="../MultiProject/MultiProject.py" line="921" />
       <source>&amp;Clear</source>
       <translation type="unfinished" />
     </message>
@@ -59226,108 +59241,108 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="562" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="583" />
+      <location filename="../PipInterface/Pip.py" line="585" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="618" />
-      <location filename="../PipInterface/Pip.py" line="608" />
+      <location filename="../PipInterface/Pip.py" line="620" />
+      <location filename="../PipInterface/Pip.py" line="610" />
       <source>Install 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="739" />
-      <location filename="../PipInterface/Pip.py" line="609" />
+      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="611" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="619" />
+      <location filename="../PipInterface/Pip.py" line="621" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="638" />
+      <location filename="../PipInterface/Pip.py" line="641" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="766" />
-      <location filename="../PipInterface/Pip.py" line="695" />
-      <location filename="../PipInterface/Pip.py" line="667" />
-      <location filename="../PipInterface/Pip.py" line="658" />
+      <location filename="../PipInterface/Pip.py" line="775" />
+      <location filename="../PipInterface/Pip.py" line="701" />
+      <location filename="../PipInterface/Pip.py" line="671" />
+      <location filename="../PipInterface/Pip.py" line="662" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="767" />
-      <location filename="../PipInterface/Pip.py" line="696" />
-      <location filename="../PipInterface/Pip.py" line="659" />
+      <location filename="../PipInterface/Pip.py" line="776" />
+      <location filename="../PipInterface/Pip.py" line="702" />
+      <location filename="../PipInterface/Pip.py" line="663" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="712" />
+      <location filename="../PipInterface/Pip.py" line="719" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="738" />
+      <location filename="../PipInterface/Pip.py" line="758" />
+      <location filename="../PipInterface/Pip.py" line="747" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="750" />
+      <location filename="../PipInterface/Pip.py" line="759" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
+      <location filename="../PipInterface/Pip.py" line="786" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1185" />
+      <location filename="../PipInterface/Pip.py" line="1195" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1211" />
-      <location filename="../PipInterface/Pip.py" line="1202" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
+      <location filename="../PipInterface/Pip.py" line="1212" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1203" />
+      <location filename="../PipInterface/Pip.py" line="1213" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1235" />
-      <location filename="../PipInterface/Pip.py" line="1228" />
+      <location filename="../PipInterface/Pip.py" line="1245" />
+      <location filename="../PipInterface/Pip.py" line="1238" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1239" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1260" />
-      <location filename="../PipInterface/Pip.py" line="1252" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
+      <location filename="../PipInterface/Pip.py" line="1262" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1263" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -61910,18 +61925,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1904" />
+      <location filename="../Preferences/__init__.py" line="1905" />
       <source>Export Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1933" />
-      <location filename="../Preferences/__init__.py" line="1906" />
+      <location filename="../Preferences/__init__.py" line="1934" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1931" />
+      <location filename="../Preferences/__init__.py" line="1932" />
       <source>Import Preferences</source>
       <translation type="unfinished" />
     </message>
@@ -61942,7 +61957,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="509" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="520" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -62569,430 +62584,430 @@
   <context>
     <name>Project</name>
     <message>
-      <location filename="../Project/Project.py" line="187" />
+      <location filename="../Project/Project.py" line="188" />
       <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="250" />
-      <source>Add File Category</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="251" />
+      <source>Add File Category</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="252" />
       <source>&lt;p&gt;The file category &lt;b&gt;{0}&lt;/b&gt; has already been added. This attempt will be ignored.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="336" />
-      <source>PyQt5 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="337" />
-      <source>PyQt5 Console</source>
+      <source>PyQt5 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="338" />
-      <source>PyQt6 GUI</source>
+      <source>PyQt5 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="339" />
-      <source>PyQt6 Console</source>
+      <source>PyQt6 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="340" />
-      <source>Eric7 Plugin</source>
+      <source>PyQt6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="341" />
-      <source>Console</source>
+      <source>Eric7 Plugin</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="342" />
+      <source>Console</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="343" />
       <source>Other</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="361" />
-      <source>PySide2 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="362" />
+      <source>PySide2 GUI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="363" />
       <source>PySide2 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="366" />
-      <source>PySide6 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="367" />
+      <source>PySide6 GUI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="465" />
-      <location filename="../Project/Project.py" line="453" />
-      <location filename="../Project/Project.py" line="442" />
-      <source>Registering Project Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="443" />
-      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="454" />
-      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="466" />
+      <location filename="../Project/Project.py" line="454" />
+      <location filename="../Project/Project.py" line="443" />
+      <source>Registering Project Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="444" />
+      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="455" />
+      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="467" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="771" />
+      <location filename="../Project/Project.py" line="772" />
       <source>All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1332" />
+      <location filename="../Project/Project.py" line="1333" />
       <source>Read Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1578" />
-      <location filename="../Project/Project.py" line="1552" />
-      <location filename="../Project/Project.py" line="1516" />
-      <location filename="../Project/Project.py" line="1434" />
+      <location filename="../Project/Project.py" line="1579" />
+      <location filename="../Project/Project.py" line="1553" />
+      <location filename="../Project/Project.py" line="1517" />
+      <location filename="../Project/Project.py" line="1435" />
+      <location filename="../Project/Project.py" line="1396" />
+      <location filename="../Project/Project.py" line="1371" />
+      <location filename="../Project/Project.py" line="1334" />
+      <source>Please save the project first.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="1370" />
+      <source>Save Project Session</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="1412" />
       <location filename="../Project/Project.py" line="1395" />
-      <location filename="../Project/Project.py" line="1370" />
-      <location filename="../Project/Project.py" line="1333" />
-      <source>Please save the project first.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="1369" />
-      <source>Save Project Session</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="1411" />
-      <location filename="../Project/Project.py" line="1394" />
       <source>Delete Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1401" />
+      <location filename="../Project/Project.py" line="1402" />
       <source>Delete Remote Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1420" />
+      <location filename="../Project/Project.py" line="1421" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1433" />
+      <location filename="../Project/Project.py" line="1434" />
       <source>Read Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1515" />
+      <location filename="../Project/Project.py" line="1516" />
       <source>Read Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1551" />
+      <location filename="../Project/Project.py" line="1552" />
       <source>Save Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1594" />
-      <location filename="../Project/Project.py" line="1577" />
+      <location filename="../Project/Project.py" line="1595" />
+      <location filename="../Project/Project.py" line="1578" />
       <source>Delete Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1584" />
+      <location filename="../Project/Project.py" line="1585" />
       <source>Delete Remote Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1603" />
+      <location filename="../Project/Project.py" line="1604" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1774" />
+      <location filename="../Project/Project.py" line="1777" />
       <source>Add Language</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1775" />
+      <location filename="../Project/Project.py" line="1778" />
       <source>You have to specify a translation pattern first.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1916" />
+      <location filename="../Project/Project.py" line="1919" />
       <source>Delete Translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1943" />
-      <location filename="../Project/Project.py" line="1917" />
+      <location filename="../Project/Project.py" line="1946" />
+      <location filename="../Project/Project.py" line="1920" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1942" />
+      <location filename="../Project/Project.py" line="1945" />
       <source>Delete translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2093" />
-      <location filename="../Project/Project.py" line="2076" />
+      <location filename="../Project/Project.py" line="2098" />
+      <location filename="../Project/Project.py" line="2081" />
       <source>Add File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2195" />
-      <location filename="../Project/Project.py" line="2077" />
+      <location filename="../Project/Project.py" line="2200" />
+      <location filename="../Project/Project.py" line="2082" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2094" />
+      <location filename="../Project/Project.py" line="2099" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2106" />
+      <location filename="../Project/Project.py" line="2111" />
       <source>Add file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2289" />
-      <location filename="../Project/Project.py" line="2107" />
+      <location filename="../Project/Project.py" line="2296" />
+      <location filename="../Project/Project.py" line="2112" />
       <source>The target directory must not be empty.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2194" />
-      <location filename="../Project/Project.py" line="2167" />
-      <location filename="../Project/Project.py" line="2147" />
+      <location filename="../Project/Project.py" line="2199" />
+      <location filename="../Project/Project.py" line="2172" />
+      <location filename="../Project/Project.py" line="2152" />
       <source>Add Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2148" />
+      <location filename="../Project/Project.py" line="2153" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2168" />
+      <location filename="../Project/Project.py" line="2173" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2300" />
-      <location filename="../Project/Project.py" line="2288" />
+      <location filename="../Project/Project.py" line="2307" />
+      <location filename="../Project/Project.py" line="2295" />
       <source>Add directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2301" />
+      <location filename="../Project/Project.py" line="2308" />
       <source>The source directory must not be empty.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2415" />
-      <location filename="../Project/Project.py" line="2397" />
+      <location filename="../Project/Project.py" line="2422" />
+      <location filename="../Project/Project.py" line="2404" />
+      <location filename="../Project/Project.py" line="2388" />
       <location filename="../Project/Project.py" line="2381" />
-      <location filename="../Project/Project.py" line="2374" />
       <source>Rename File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8055" />
-      <location filename="../Project/Project.py" line="3898" />
-      <location filename="../Project/Project.py" line="2398" />
+      <location filename="../Project/Project.py" line="8089" />
+      <location filename="../Project/Project.py" line="3909" />
+      <location filename="../Project/Project.py" line="2405" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2416" />
+      <location filename="../Project/Project.py" line="2423" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2683" />
+      <location filename="../Project/Project.py" line="2690" />
       <source>Delete File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2684" />
+      <location filename="../Project/Project.py" line="2691" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2712" />
+      <location filename="../Project/Project.py" line="2719" />
       <source>Delete Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2713" />
+      <location filename="../Project/Project.py" line="2720" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2846" />
+      <location filename="../Project/Project.py" line="2853" />
       <source>Create project directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2847" />
+      <location filename="../Project/Project.py" line="2854" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3671" />
-      <location filename="../Project/Project.py" line="2947" />
+      <location filename="../Project/Project.py" line="3682" />
+      <location filename="../Project/Project.py" line="2954" />
       <source>Create project management directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3672" />
-      <location filename="../Project/Project.py" line="2948" />
+      <location filename="../Project/Project.py" line="3683" />
+      <location filename="../Project/Project.py" line="2955" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2988" />
+      <location filename="../Project/Project.py" line="2995" />
       <source>Create main script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2989" />
+      <location filename="../Project/Project.py" line="2996" />
       <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3454" />
-      <location filename="../Project/Project.py" line="3013" />
+      <location filename="../Project/Project.py" line="3463" />
+      <location filename="../Project/Project.py" line="3020" />
       <source>Create Makefile</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3455" />
-      <location filename="../Project/Project.py" line="3014" />
+      <location filename="../Project/Project.py" line="3464" />
+      <location filename="../Project/Project.py" line="3021" />
       <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3701" />
-      <location filename="../Project/Project.py" line="3164" />
-      <location filename="../Project/Project.py" line="3135" />
-      <location filename="../Project/Project.py" line="3103" />
-      <location filename="../Project/Project.py" line="3087" />
-      <location filename="../Project/Project.py" line="3062" />
-      <location filename="../Project/Project.py" line="3024" />
+      <location filename="../Project/Project.py" line="3712" />
+      <location filename="../Project/Project.py" line="3173" />
+      <location filename="../Project/Project.py" line="3144" />
+      <location filename="../Project/Project.py" line="3112" />
+      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="3069" />
+      <location filename="../Project/Project.py" line="3031" />
       <source>New Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3025" />
+      <location filename="../Project/Project.py" line="3032" />
       <source>Add existing files to the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3702" />
-      <location filename="../Project/Project.py" line="3063" />
+      <location filename="../Project/Project.py" line="3713" />
+      <location filename="../Project/Project.py" line="3070" />
       <source>Select Version Control System</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3165" />
-      <location filename="../Project/Project.py" line="3088" />
+      <location filename="../Project/Project.py" line="3174" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Would you like to edit the VCS command options?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3104" />
+      <location filename="../Project/Project.py" line="3113" />
       <source>Shall the project file be added to the repository?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3141" />
-      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3150" />
+      <location filename="../Project/Project.py" line="3139" />
       <source>None</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3145" />
       <source>Select version control system for the project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3347" />
+      <location filename="../Project/Project.py" line="3356" />
       <source>Translation Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3348" />
+      <location filename="../Project/Project.py" line="3357" />
       <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3650" />
+      <location filename="../Project/Project.py" line="3661" />
       <source>Open Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8041" />
-      <location filename="../Project/Project.py" line="8035" />
-      <location filename="../Project/Project.py" line="8025" />
-      <location filename="../Project/Project.py" line="3883" />
-      <location filename="../Project/Project.py" line="3873" />
-      <location filename="../Project/Project.py" line="3652" />
+      <location filename="../Project/Project.py" line="8075" />
+      <location filename="../Project/Project.py" line="8069" />
+      <location filename="../Project/Project.py" line="8059" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3884" />
+      <location filename="../Project/Project.py" line="3663" />
       <source>Project Files (*.epj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3897" />
-      <location filename="../Project/Project.py" line="3881" />
+      <location filename="../Project/Project.py" line="3908" />
+      <location filename="../Project/Project.py" line="3892" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3936" />
+      <location filename="../Project/Project.py" line="3947" />
       <source>Close Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3937" />
+      <location filename="../Project/Project.py" line="3948" />
       <source>The current project has unsaved changes.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4137" />
-      <location filename="../Project/Project.py" line="4101" />
+      <location filename="../Project/Project.py" line="4148" />
+      <location filename="../Project/Project.py" line="4112" />
       <source>Syntax Errors Detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4138" />
-      <location filename="../Project/Project.py" line="4102" />
+      <location filename="../Project/Project.py" line="4149" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>The project contains one file with syntax errors.</numerusform>
@@ -63000,1268 +63015,1268 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4796" />
+      <location filename="../Project/Project.py" line="4807" />
       <source>New project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4798" />
+      <location filename="../Project/Project.py" line="4809" />
       <source>&amp;New...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4804" />
+      <location filename="../Project/Project.py" line="4815" />
       <source>Generate a new project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4806" />
+      <location filename="../Project/Project.py" line="4817" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4816" />
+      <location filename="../Project/Project.py" line="4827" />
       <source>Open project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4818" />
+      <location filename="../Project/Project.py" line="4829" />
       <source>&amp;Open...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4824" />
+      <location filename="../Project/Project.py" line="4835" />
       <source>Open an existing project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4826" />
+      <location filename="../Project/Project.py" line="4837" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4832" />
+      <location filename="../Project/Project.py" line="4843" />
       <source>Open remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4834" />
+      <location filename="../Project/Project.py" line="4845" />
       <source>Open (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4840" />
-      <source>Open an existing remote project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4842" />
-      <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4851" />
-      <source>Reload project</source>
+      <source>Open an existing remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4853" />
+      <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4862" />
+      <source>Reload project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4864" />
       <source>Re&amp;load</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4859" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>Reload the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4861" />
+      <location filename="../Project/Project.py" line="4872" />
       <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4867" />
+      <location filename="../Project/Project.py" line="4878" />
       <source>Close project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4869" />
+      <location filename="../Project/Project.py" line="4880" />
       <source>&amp;Close</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4875" />
+      <location filename="../Project/Project.py" line="4886" />
       <source>Close the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4877" />
+      <location filename="../Project/Project.py" line="4888" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4883" />
+      <location filename="../Project/Project.py" line="4894" />
       <source>Save project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5180" />
-      <location filename="../Project/Project.py" line="4885" />
+      <location filename="../Project/Project.py" line="5191" />
+      <location filename="../Project/Project.py" line="4896" />
       <source>&amp;Save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4891" />
+      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4893" />
+      <location filename="../Project/Project.py" line="4904" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4899" />
+      <location filename="../Project/Project.py" line="4910" />
       <source>Save project as</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4901" />
+      <location filename="../Project/Project.py" line="4912" />
       <source>Save &amp;as...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4907" />
-      <source>Save the current project to a new file</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4909" />
-      <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4918" />
-      <source>Save project as (Remote)</source>
+      <source>Save the current project to a new file</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4920" />
+      <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4929" />
+      <source>Save project as (Remote)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4931" />
       <source>Save as (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4927" />
+      <location filename="../Project/Project.py" line="4938" />
       <source>Save the current project to a new remote file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4930" />
+      <location filename="../Project/Project.py" line="4941" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4946" />
+      <location filename="../Project/Project.py" line="4957" />
       <source>Add files to project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4948" />
+      <location filename="../Project/Project.py" line="4959" />
       <source>Add &amp;files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4954" />
+      <location filename="../Project/Project.py" line="4965" />
       <source>Add files to the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4956" />
-      <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4967" />
+      <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4978" />
       <source>Add directory to project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4969" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Add directory...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4976" />
+      <location filename="../Project/Project.py" line="4987" />
       <source>Add a directory to the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4979" />
+      <location filename="../Project/Project.py" line="4990" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4989" />
+      <location filename="../Project/Project.py" line="5000" />
       <source>Add translation to project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4991" />
+      <location filename="../Project/Project.py" line="5002" />
       <source>Add &amp;translation...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4998" />
+      <location filename="../Project/Project.py" line="5009" />
       <source>Add a translation to the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5001" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5011" />
-      <source>Search new files</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5012" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5022" />
+      <source>Search new files</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5018" />
+      <location filename="../Project/Project.py" line="5029" />
       <source>Search new files in the project directory.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5020" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5030" />
-      <source>Search Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5031" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5041" />
+      <source>Search Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5042" />
       <source>Search Project File...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5032" />
+      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5037" />
-      <source>Search for a file in the project list of files.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5039" />
-      <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5048" />
-      <source>Project properties</source>
+      <source>Search for a file in the project list of files.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5050" />
+      <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5059" />
+      <source>Project properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5061" />
       <source>&amp;Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5056" />
-      <source>Show the project properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5058" />
-      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5067" />
-      <source>User project properties</source>
+      <source>Show the project properties</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5069" />
+      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5078" />
+      <source>User project properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5080" />
       <source>&amp;User Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5076" />
+      <location filename="../Project/Project.py" line="5087" />
       <source>Show the user specific project properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5079" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5089" />
-      <source>Filetype Associations</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5090" />
-      <source>Filetype Associations...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5097" />
-      <source>Show the project file type associations</source>
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5100" />
+      <source>Filetype Associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5101" />
+      <source>Filetype Associations...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5108" />
+      <source>Show the project file type associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5111" />
       <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5113" />
-      <source>Lexer Associations</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5114" />
-      <source>Lexer Associations...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5121" />
-      <source>Show the project lexer associations (overriding defaults)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5124" />
+      <source>Lexer Associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5125" />
+      <source>Lexer Associations...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5132" />
+      <source>Show the project lexer associations (overriding defaults)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5135" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5142" />
+      <location filename="../Project/Project.py" line="5153" />
       <source>Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5143" />
+      <location filename="../Project/Project.py" line="5154" />
       <source>Debugger &amp;Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5149" />
+      <location filename="../Project/Project.py" line="5160" />
       <source>Show the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5161" />
-      <source>Load</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5162" />
+      <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Load</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
       <source>&amp;Load</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5168" />
-      <source>Load the debugger properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5170" />
-      <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5179" />
+      <source>Load the debugger properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5181" />
+      <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5190" />
       <source>Save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5186" />
-      <source>Save the debugger properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5188" />
-      <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5197" />
+      <source>Save the debugger properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5199" />
+      <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5208" />
       <source>Delete</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5198" />
+      <location filename="../Project/Project.py" line="5209" />
       <source>&amp;Delete</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5204" />
+      <location filename="../Project/Project.py" line="5215" />
       <source>Delete the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5206" />
-      <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5216" />
-      <source>Reset</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5217" />
+      <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5227" />
+      <source>Reset</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5228" />
       <source>&amp;Reset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5223" />
+      <location filename="../Project/Project.py" line="5234" />
       <source>Reset the debugger properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5225" />
+      <location filename="../Project/Project.py" line="5236" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5241" />
-      <location filename="../Project/Project.py" line="5240" />
+      <location filename="../Project/Project.py" line="5252" />
+      <location filename="../Project/Project.py" line="5251" />
       <source>Load session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5247" />
+      <location filename="../Project/Project.py" line="5258" />
       <source>Load the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5249" />
+      <location filename="../Project/Project.py" line="5260" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5265" />
-      <location filename="../Project/Project.py" line="5264" />
+      <location filename="../Project/Project.py" line="5276" />
+      <location filename="../Project/Project.py" line="5275" />
       <source>Save session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5271" />
+      <location filename="../Project/Project.py" line="5282" />
       <source>Save the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5273" />
+      <location filename="../Project/Project.py" line="5284" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5289" />
-      <location filename="../Project/Project.py" line="5288" />
+      <location filename="../Project/Project.py" line="5300" />
+      <location filename="../Project/Project.py" line="5299" />
       <source>Delete session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5295" />
+      <location filename="../Project/Project.py" line="5306" />
       <source>Delete the projects session file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5297" />
+      <location filename="../Project/Project.py" line="5308" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5312" />
-      <source>Code Metrics</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5313" />
-      <source>&amp;Code Metrics...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5320" />
-      <source>Show some code metrics for the project.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5323" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5333" />
-      <source>Python Code Coverage</source>
+      <source>Code Metrics</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5324" />
+      <source>&amp;Code Metrics...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5331" />
+      <source>Show some code metrics for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5334" />
-      <source>Code Co&amp;verage...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5341" />
-      <source>Show code coverage information for the project.</source>
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5344" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6778" />
-      <location filename="../Project/Project.py" line="6765" />
-      <location filename="../Project/Project.py" line="5354" />
-      <source>Profile Data</source>
+      <source>Python Code Coverage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5345" />
+      <source>Code Co&amp;verage...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5352" />
+      <source>Show code coverage information for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5355" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6789" />
+      <location filename="../Project/Project.py" line="6776" />
+      <location filename="../Project/Project.py" line="5365" />
+      <source>Profile Data</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5362" />
+      <location filename="../Project/Project.py" line="5373" />
       <source>Show profiling data for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5365" />
+      <location filename="../Project/Project.py" line="5376" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6830" />
-      <location filename="../Project/Project.py" line="5380" />
+      <location filename="../Project/Project.py" line="6841" />
+      <location filename="../Project/Project.py" line="5391" />
       <source>Application Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5381" />
+      <location filename="../Project/Project.py" line="5392" />
       <source>&amp;Application Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5388" />
+      <location filename="../Project/Project.py" line="5399" />
       <source>Show a diagram of the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="5402" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5400" />
+      <location filename="../Project/Project.py" line="5411" />
       <source>Load Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5401" />
+      <location filename="../Project/Project.py" line="5412" />
       <source>&amp;Load Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5407" />
+      <location filename="../Project/Project.py" line="5418" />
       <source>Load a diagram from file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5409" />
+      <location filename="../Project/Project.py" line="5420" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6998" />
-      <location filename="../Project/Project.py" line="6943" />
-      <location filename="../Project/Project.py" line="5424" />
+      <location filename="../Project/Project.py" line="7009" />
+      <location filename="../Project/Project.py" line="6954" />
+      <location filename="../Project/Project.py" line="5435" />
       <source>Create Package List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5426" />
+      <location filename="../Project/Project.py" line="5437" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5433" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5436" />
+      <location filename="../Project/Project.py" line="5447" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7068" />
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="7080" />
+      <location filename="../Project/Project.py" line="5458" />
       <source>Create Plugin Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5449" />
+      <location filename="../Project/Project.py" line="5460" />
       <source>Create Plugin &amp;Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5455" />
+      <location filename="../Project/Project.py" line="5466" />
       <source>Create eric plugin archive files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5457" />
+      <location filename="../Project/Project.py" line="5468" />
       <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5469" />
+      <location filename="../Project/Project.py" line="5480" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5471" />
+      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5478" />
+      <location filename="../Project/Project.py" line="5489" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5481" />
+      <location filename="../Project/Project.py" line="5492" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7510" />
-      <location filename="../Project/Project.py" line="7481" />
-      <location filename="../Project/Project.py" line="7435" />
-      <location filename="../Project/Project.py" line="7387" />
-      <location filename="../Project/Project.py" line="5500" />
+      <location filename="../Project/Project.py" line="7536" />
+      <location filename="../Project/Project.py" line="7507" />
+      <location filename="../Project/Project.py" line="7461" />
+      <location filename="../Project/Project.py" line="7413" />
+      <location filename="../Project/Project.py" line="5511" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5501" />
+      <location filename="../Project/Project.py" line="5512" />
       <source>&amp;Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5507" />
+      <location filename="../Project/Project.py" line="5518" />
       <source>Perform a 'make' run.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5509" />
-      <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7487" />
-      <location filename="../Project/Project.py" line="5519" />
-      <source>Test for Changes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5520" />
+      <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7513" />
+      <location filename="../Project/Project.py" line="5530" />
+      <source>Test for Changes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5531" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5527" />
+      <location filename="../Project/Project.py" line="5538" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="5541" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5548" />
-      <source>Create SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5549" />
-      <source>Create &amp;SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5556" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5559" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <source>Create SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5560" />
+      <source>Create &amp;SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5567" />
+      <source>Create a SBOM file of the project dependencies.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5570" />
-      <source>Clear Byte Code Caches</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5571" />
-      <source>Clear Byte Code &amp;Caches</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5578" />
-      <source>Clear the byte code caches of the project.</source>
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5581" />
+      <source>Clear Byte Code Caches</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5582" />
+      <source>Clear Byte Code &amp;Caches</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5589" />
+      <source>Clear the byte code caches of the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5592" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5597" />
+      <location filename="../Project/Project.py" line="5608" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5598" />
+      <location filename="../Project/Project.py" line="5609" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5604" />
+      <location filename="../Project/Project.py" line="5615" />
       <source>Show some information about 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5606" />
+      <location filename="../Project/Project.py" line="5617" />
       <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5618" />
-      <source>Format Code</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5619" />
-      <source>&amp;Format Code</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5626" />
-      <source>Format the project sources with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5629" />
+      <source>Format Code</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5630" />
+      <source>&amp;Format Code</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5637" />
+      <source>Format the project sources with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5640" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5641" />
+      <location filename="../Project/Project.py" line="5652" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5642" />
+      <location filename="../Project/Project.py" line="5653" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5649" />
+      <location filename="../Project/Project.py" line="5660" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5654" />
+      <location filename="../Project/Project.py" line="5665" />
       <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5667" />
+      <location filename="../Project/Project.py" line="5678" />
       <source>Code Formatting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5668" />
+      <location filename="../Project/Project.py" line="5679" />
       <source>Code Formatting &amp;Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5686" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5681" />
+      <location filename="../Project/Project.py" line="5692" />
       <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5846" />
-      <location filename="../Project/Project.py" line="5796" />
-      <location filename="../Project/Project.py" line="5795" />
-      <location filename="../Project/Project.py" line="5695" />
-      <location filename="../Project/Project.py" line="5694" />
+      <location filename="../Project/Project.py" line="5857" />
+      <location filename="../Project/Project.py" line="5807" />
+      <location filename="../Project/Project.py" line="5806" />
+      <location filename="../Project/Project.py" line="5706" />
+      <location filename="../Project/Project.py" line="5705" />
       <source>Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5702" />
+      <location filename="../Project/Project.py" line="5713" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5707" />
+      <location filename="../Project/Project.py" line="5718" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5723" />
+      <location filename="../Project/Project.py" line="5734" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5724" />
+      <location filename="../Project/Project.py" line="5735" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5730" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5732" />
+      <location filename="../Project/Project.py" line="5743" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5745" />
-      <location filename="../Project/Project.py" line="5744" />
+      <location filename="../Project/Project.py" line="5756" />
+      <location filename="../Project/Project.py" line="5755" />
       <source>Sort Imports</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5752" />
+      <location filename="../Project/Project.py" line="5763" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5755" />
+      <location filename="../Project/Project.py" line="5766" />
       <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5769" />
-      <location filename="../Project/Project.py" line="5768" />
+      <location filename="../Project/Project.py" line="5780" />
+      <location filename="../Project/Project.py" line="5779" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5776" />
+      <location filename="../Project/Project.py" line="5787" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5782" />
+      <location filename="../Project/Project.py" line="5793" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5803" />
+      <location filename="../Project/Project.py" line="5814" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5809" />
+      <location filename="../Project/Project.py" line="5820" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5825" />
-      <source>Install Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5826" />
-      <source>&amp;Install Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5833" />
-      <source>Install the project into the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5836" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <source>Install Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5837" />
+      <source>&amp;Install Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5844" />
+      <source>Install the project into the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5847" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5854" />
+      <location filename="../Project/Project.py" line="5865" />
       <source>Configure the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5857" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5867" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5868" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5878" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5874" />
+      <location filename="../Project/Project.py" line="5885" />
       <source>Upgrade the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5876" />
+      <location filename="../Project/Project.py" line="5887" />
       <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5888" />
+      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5889" />
+      <location filename="../Project/Project.py" line="5900" />
       <source>&amp;Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5895" />
+      <location filename="../Project/Project.py" line="5906" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5897" />
+      <location filename="../Project/Project.py" line="5908" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5929" />
+      <location filename="../Project/Project.py" line="5940" />
       <source>&amp;Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5930" />
-      <source>Open &amp;Recent Projects</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5932" />
-      <source>Session</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5933" />
-      <source>Debugger</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5934" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5936" />
-      <source>Project-T&amp;ools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5937" />
-      <source>&amp;Version Control</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5941" />
-      <source>Chec&amp;k</source>
+      <source>Open &amp;Recent Projects</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Code &amp;Formatting</source>
+      <source>Session</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5944" />
+      <source>Debugger</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Sho&amp;w</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5946" />
-      <source>&amp;Diagrams</source>
+      <source>Embedded Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Pac&amp;kagers</source>
+      <source>Project-T&amp;ools</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
+      <source>&amp;Version Control</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5952" />
+      <source>Chec&amp;k</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5954" />
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5956" />
+      <source>Sho&amp;w</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5957" />
+      <source>&amp;Diagrams</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5958" />
+      <source>Pac&amp;kagers</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5959" />
       <source>Source &amp;Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5950" />
+      <location filename="../Project/Project.py" line="5961" />
       <source>Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5951" />
+      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6113" />
-      <location filename="../Project/Project.py" line="6111" />
+      <location filename="../Project/Project.py" line="6124" />
+      <location filename="../Project/Project.py" line="6122" />
       <source>Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6195" />
+      <location filename="../Project/Project.py" line="6206" />
       <source>&amp;Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6392" />
+      <location filename="../Project/Project.py" line="6403" />
       <source>Search New Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6393" />
+      <location filename="../Project/Project.py" line="6404" />
       <source>There were no new files found to be added.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6554" />
-      <location filename="../Project/Project.py" line="6541" />
+      <location filename="../Project/Project.py" line="6565" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>Version Control System</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6542" />
+      <location filename="../Project/Project.py" line="6553" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6555" />
+      <location filename="../Project/Project.py" line="6566" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6712" />
+      <location filename="../Project/Project.py" line="6723" />
       <source>Coverage Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6766" />
-      <location filename="../Project/Project.py" line="6713" />
+      <location filename="../Project/Project.py" line="6777" />
+      <location filename="../Project/Project.py" line="6724" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6725" />
+      <location filename="../Project/Project.py" line="6736" />
       <source>Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6726" />
+      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6779" />
+      <location filename="../Project/Project.py" line="6790" />
       <source>Please select a profile file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6831" />
+      <location filename="../Project/Project.py" line="6842" />
       <source>Include module names?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6944" />
+      <location filename="../Project/Project.py" line="6955" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6999" />
+      <location filename="../Project/Project.py" line="7010" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7295" />
-      <location filename="../Project/Project.py" line="7251" />
-      <location filename="../Project/Project.py" line="7201" />
-      <location filename="../Project/Project.py" line="7190" />
-      <location filename="../Project/Project.py" line="7172" />
-      <location filename="../Project/Project.py" line="7139" />
-      <location filename="../Project/Project.py" line="7109" />
-      <location filename="../Project/Project.py" line="7081" />
-      <location filename="../Project/Project.py" line="7051" />
-      <location filename="../Project/Project.py" line="7037" />
-      <location filename="../Project/Project.py" line="7020" />
+      <location filename="../Project/Project.py" line="7321" />
+      <location filename="../Project/Project.py" line="7277" />
+      <location filename="../Project/Project.py" line="7227" />
+      <location filename="../Project/Project.py" line="7216" />
+      <location filename="../Project/Project.py" line="7198" />
+      <location filename="../Project/Project.py" line="7151" />
+      <location filename="../Project/Project.py" line="7121" />
+      <location filename="../Project/Project.py" line="7093" />
+      <location filename="../Project/Project.py" line="7063" />
+      <location filename="../Project/Project.py" line="7048" />
+      <location filename="../Project/Project.py" line="7031" />
       <source>Create Plugin Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7021" />
+      <location filename="../Project/Project.py" line="7032" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7038" />
+      <location filename="../Project/Project.py" line="7049" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7052" />
-      <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7060" />
-      <source>Creating plugin archives...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7061" />
-      <source>Abort</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="7064" />
+      <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7072" />
+      <source>Creating plugin archives...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7073" />
+      <source>Abort</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7076" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7082" />
+      <location filename="../Project/Project.py" line="7094" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7110" />
+      <location filename="../Project/Project.py" line="7122" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7140" />
+      <location filename="../Project/Project.py" line="7152" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7199" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7191" />
+      <location filename="../Project/Project.py" line="7217" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7228" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7252" />
+      <location filename="../Project/Project.py" line="7278" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7296" />
+      <location filename="../Project/Project.py" line="7322" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7388" />
+      <location filename="../Project/Project.py" line="7414" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7436" />
+      <location filename="../Project/Project.py" line="7462" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7482" />
+      <location filename="../Project/Project.py" line="7508" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7490" />
+      <location filename="../Project/Project.py" line="7516" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7495" />
+      <location filename="../Project/Project.py" line="7521" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7511" />
+      <location filename="../Project/Project.py" line="7537" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7941" />
+      <location filename="../Project/Project.py" line="7975" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7942" />
+      <location filename="../Project/Project.py" line="7976" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8023" />
+      <location filename="../Project/Project.py" line="8057" />
       <source>Open Remote Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8054" />
-      <location filename="../Project/Project.py" line="8039" />
+      <location filename="../Project/Project.py" line="8088" />
+      <location filename="../Project/Project.py" line="8073" />
       <source>Save Remote Project</source>
       <translation type="unfinished" />
     </message>
@@ -65048,50 +65063,50 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="527" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="511" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="529" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="513" />
       <source>New directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="512" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="514" />
       <source>&lt;p&gt;A file or directory named &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="528" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="530" />
       <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="625" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="596" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="577" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="627" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="598" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="579" />
       <source>New file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="578" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="580" />
       <source>Enter the path of the new file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="597" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="599" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="626" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="628" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="716" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="718" />
       <source>Delete files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="717" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="719" />
       <source>Do you really want to delete these entries from the project?</source>
       <translation type="unfinished" />
     </message>
@@ -66823,22 +66838,22 @@
   <context>
     <name>Purge</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="74" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="76" />
       <source>Purge All Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="75" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="77" />
       <source>Do really want to delete all files not tracked by Mercurial (including ignored ones)?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="80" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="82" />
       <source>Purge Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="81" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="83" />
       <source>Do really want to delete files not tracked by Mercurial?</source>
       <translation type="unfinished" />
     </message>
@@ -66946,7 +66961,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="453" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="455" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="235" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -66962,7 +66977,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="433" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="246" />
       <source>Flash MicroPython Firmware</source>
       <translation type="unfinished" />
@@ -67018,7 +67033,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="431" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="390" />
       <source>'dfu-util' Output</source>
       <translation type="unfinished" />
@@ -67029,37 +67044,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="416" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="417" />
       <source>Flash MicroPython/CircuitPython Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="419" />
       <source>MicroPython Firmware Files (*.dfu);;CircuitPython Firmware Files (*.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="454" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="456" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="484" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="488" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="490" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="496" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="498" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="500" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="502" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -69136,12 +69151,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="139" />
+      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="141" />
       <source>No current editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="140" />
+      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="142" />
       <source>Please open or create a file first.</source>
       <translation type="unfinished" />
     </message>
@@ -70880,7 +70895,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="122" />
+      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="124" />
       <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="82" />
       <source>Add Documentation</source>
       <translation type="unfinished" />
@@ -70891,7 +70906,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="123" />
+      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="125" />
       <source>The file &lt;b&gt;{0}&lt;/b&gt; could not be added.</source>
       <translation type="unfinished" />
     </message>
@@ -71149,191 +71164,191 @@
   <context>
     <name>Queues</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="226" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="228" />
       <source>New Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="277" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="279" />
       <source>Update Current Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="335" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="337" />
       <source>Pop Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="339" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="341" />
       <source>Push Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="343" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="345" />
       <source>Go to Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="437" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="369" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="356" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="441" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="371" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="358" />
       <source>Select Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="359" />
       <source>Select the target patch name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="372" />
       <source>No patches to select from.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="399" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="401" />
       <source>Finish Applied Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="423" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="427" />
       <source>Rename Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="438" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="442" />
       <source>Select the patch to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="446" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="450" />
       <source>Delete Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="488" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="482" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="475" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="492" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="486" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="479" />
       <source>Fold Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="483" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="487" />
       <source>No patches selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="493" />
       <source>No patches available to be folded.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="510" />
       <source>List Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="507" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="511" />
       <source>No patches available to list guards for.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="536" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="540" />
       <source>Define Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="537" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="541" />
       <source>No patches available to define guards for.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="568" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="548" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="552" />
       <source>Drop All Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="549" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="553" />
       <source>Select the patch to drop guards for (leave empty for the current patch):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="597" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="590" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="606" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598" />
       <source>Set Active Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="607" />
       <source>No guards available to select from.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="618" />
       <source>Deactivate Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649" />
       <source>Create New Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649" />
       <source>Rename Active Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="658" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="673" />
       <source>Error while creating a new queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="660" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="675" />
       <source>Error while renaming the active queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="693" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="708" />
       <source>Purge Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="710" />
       <source>Delete Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="697" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="712" />
       <source>Activate Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="717" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="736" />
       <source>Error while purging the queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="738" />
       <source>Error while deleting the queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="721" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="740" />
       <source>Error while setting the active queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="743" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="762" />
       <source>Available Queues</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="757" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="777" />
       <source>Initializing new queue repository</source>
       <translation type="unfinished" />
     </message>
@@ -72455,17 +72470,17 @@
   <context>
     <name>Rebase</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="83" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="86" />
       <source>Rebase Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="106" />
       <source>Rebase Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="121" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="127" />
       <source>Rebase Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
@@ -72716,7 +72731,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="421" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="423" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -72770,37 +72785,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="402" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="403" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="403" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="404" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="424" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="456" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="466" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="468" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="470" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -75723,49 +75738,49 @@
   <context>
     <name>Shelve</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="105" />
       <source>Shelve current changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="144" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="151" />
       <source>Restore shelved changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="162" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="170" />
       <source>Abort restore operation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="182" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="191" />
       <source>Continue restore operation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="201" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211" />
       <source>Select the shelves to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="220" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="222" />
       <source>Delete shelves</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="212" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="223" />
       <source>Do you really want to delete these shelves?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="238" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="249" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="242" />
       <source>Delete all shelves</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="232" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="243" />
       <source>Do you really want to delete all shelved changes?</source>
       <translation type="unfinished" />
     </message>
@@ -78572,7 +78587,7 @@
   <context>
     <name>Strip</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="64" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="68" />
       <source>Stripping changesets from repository</source>
       <translation type="unfinished" />
     </message>
@@ -78688,7 +78703,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2138" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2173" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="185" />
       <source>The svn process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -78724,337 +78739,337 @@
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="320" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="334" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="335" />
       <source>Importing project into Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="379" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="375" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="378" />
       <source>Subversion Checkout</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="450" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="436" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="376" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="452" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="381" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="442" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="379" />
       <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="402" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="402" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="406" />
       <source>Checking project out of Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="449" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="435" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="441" />
       <source>Subversion Export</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="471" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="459" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="473" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="466" />
       <source>Exporting project from Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="554" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="541" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="533" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="558" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="542" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="597" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="600" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="592" />
       <source>Commiting changes to Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="670" />
       <source>Synchronizing with the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="816" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="774" />
       <source>Adding files/directories to the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="927" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="852" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="933" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="869" />
       <source>Adding directory trees to the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="968" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="975" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="908" />
       <source>Removing files/directories from the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1032" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="953" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1042" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="973" />
       <source>Moving {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1331" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1302" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1162" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1132" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1216" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1187" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1035" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1351" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1319" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1176" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1143" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1243" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1211" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1087" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1055" />
       <source>Subversion Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1133" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1036" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1144" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1056" />
       <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1065" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1177" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1088" />
       <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1214" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1185" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1099" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1122" />
       <source>Tagging {0} in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1246" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1235" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1143" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1132" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1262" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1251" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1167" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1156" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1236" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1133" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1252" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1157" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1247" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1144" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1168" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1255" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1271" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1174" />
       <source>Reverting changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1303" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1188" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1320" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1212" />
       <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1332" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1217" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1352" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1244" />
       <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1355" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1246" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1375" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273" />
       <source>Switching to {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1456" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1313" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1481" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1344" />
       <source>Merging {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1787" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1602" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1813" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633" />
       <source>Cleaning up {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1828" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1859" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1666" />
       <source>Subversion command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1960" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1991" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1849" />
       <source>Resolving conficts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1852" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2036" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1885" />
       <source>Copying {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2084" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2067" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1923" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1902" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2117" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2100" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1956" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1935" />
       <source>Subversion Set Property</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2131" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2068" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1951" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1903" />
-      <source>You have to supply a property name. Aborting.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2147" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2130" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1968" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1950" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1939" />
-      <source>Subversion Delete Property</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1940" />
-      <source>Enter property name</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2140" />
-      <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2403" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2391" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2382" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2206" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2194" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2185" />
-      <source>Subversion Side-by-Side Difference</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2404" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2207" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2466" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2260" />
-      <source>Locking in the Subversion repository</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2508" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288" />
-      <source>Unlocking in the Subversion repository</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2558" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2314" />
-      <source>Relocating</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2584" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2333" />
-      <source>Repository Browser</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2585" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2334" />
-      <source>Enter the repository URL.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2610" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2404" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2367" />
-      <source>Remove from changelist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2649" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2638" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2383" />
-      <source>Add to changelist</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2639" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2384" />
-      <source>Enter name of the changelist:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2706" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2474" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="338" />
-      <source>Imported revision {0}.
-</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="631" />
-      <source>Committed revision {0}.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1363" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210" />
-      <source>Revision {0}.
-</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2107" />
-      <source>Property set.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2101" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1936" />
+      <source>You have to supply a property name. Aborting.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2181" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2164" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2001" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1983" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1972" />
+      <source>Subversion Delete Property</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1973" />
+      <source>Enter property name</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2175" />
+      <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2440" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2428" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2419" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2241" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2229" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220" />
+      <source>Subversion Side-by-Side Difference</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2242" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2503" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2295" />
+      <source>Locking in the Subversion repository</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2545" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2324" />
+      <source>Unlocking in the Subversion repository</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2595" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2351" />
+      <source>Relocating</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2621" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2370" />
+      <source>Repository Browser</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2371" />
+      <source>Enter the repository URL.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2647" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2404" />
+      <source>Remove from changelist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2687" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2676" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2420" />
+      <source>Add to changelist</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2677" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2421" />
+      <source>Enter name of the changelist:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2746" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2511" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="339" />
+      <source>Imported revision {0}.
+</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="635" />
+      <source>Committed revision {0}.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1384" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1226" />
+      <source>Revision {0}.
+</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2141" />
+      <source>Property set.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2200" />
       <source>Property deleted.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2448" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2485" />
       <source>Subversion Lock</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2449" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2486" />
       <source>Enter lock comment</source>
       <translation type="unfinished" />
     </message>
@@ -89352,133 +89367,133 @@
   <context>
     <name>UF2FlashDialog</name>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="722" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="732" />
       <source>&lt;h3&gt;CircuitPython Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Switch your device to 'bootloader' mode by double-pressing the reset button.&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;(If this does not happen, then try shorter or longer pauses between presses.)&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="748" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="758" />
       <source>&lt;h3&gt;Pi Pico (RP2040/RP2350) Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Enter 'bootloader' mode (board &lt;b&gt;without&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;Plug in your board while holding the BOOTSEL button.&lt;/li&gt;&lt;/ul&gt;Enter 'bootloader' mode (board &lt;b&gt;with&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;hold down RESET&lt;/li&gt;&lt;li&gt;hold down BOOTSEL&lt;/li&gt;&lt;li&gt;release RESET&lt;/li&gt;&lt;li&gt;release BOOTSEL&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/UF2FlashDialog.ui" line="0" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1248" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1256" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1258" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1266" />
       <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1257" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1267" />
       <source>Select the Boot Volume of the device:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="861" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="871" />
       <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="928" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="920" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="904" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="938" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="930" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="914" />
       <source>Manual Select</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1032" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1000" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="977" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1042" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1010" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="987" />
       <source>Reset Instructions:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="979" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="989" />
       <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the appropriate instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1003" />
-      <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/UF2FlashDialog.py" line="1013" />
+      <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1023" />
       <source>&lt;h4&gt;Potentially UF2 capable devices found&lt;/h4&gt;&lt;p&gt;Found these potentially UF2 capable devices:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1034" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1044" />
       <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1046" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1056" />
       <source>Flash Instructions:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1048" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1058" />
       <source>&lt;h4&gt;Flash method 'manual' selected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to flash a device by entering the data manually.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Change the device to 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it) and select its path.&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1073" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1083" />
       <source>Boot Volume not found:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1075" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1085" />
       <source>&lt;h4&gt;No Boot Volume detected.&lt;/h4&gt;&lt;p&gt;Please ensure that the boot volume of the device to be flashed is available. </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1081" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1091" />
       <source>This volume should be named &lt;b&gt;{0}&lt;/b&gt;. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1086" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1096" />
       <source>This volume should have one of these names.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1093" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1103" />
       <source>&lt;h4&gt;Reset Instructions&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set the board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1112" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1122" />
       <source>Multiple Boot Volumes found:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1114" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1124" />
       <source>&lt;h4&gt;Multiple Boot Volumes were found&lt;/h4&gt;&lt;p&gt;These volume paths were found.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please ensure that only one device of a type is ready for flashing. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1133" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1143" />
       <source>Flashing Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1135" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1145" />
       <source>&lt;p&gt;Flashing the selected firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1142" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1152" />
       <source>Flashing {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1144" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1154" />
       <source>&lt;p&gt;Flashing the {0} firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1249" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1259" />
       <source>No UF2 device 'boot' volumes found.</source>
       <translation type="unfinished" />
     </message>
@@ -90044,24 +90059,24 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="405" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="392" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="375" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="409" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="396" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="379" />
       <source>Save Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="377" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="381" />
       <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="393" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="397" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="406" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="410" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -90239,44 +90254,44 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="95" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="97" />
       <source>{0} (*)</source>
       <comment>list entry is modified</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="179" />
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="158" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="181" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="160" />
       <source>Delete Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="159" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="161" />
       <source>The selected entries contain some with modified data. Shall they really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="180" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="182" />
       <source>The list contains some devices with modified data. Shall they really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="198" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="200" />
       <source>Restore Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="199" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="201" />
       <source>Restoring the list of unknown devices will overwrite all changes made. Do you really want to restore the list?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="263" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="265" />
       <source>Unsaved Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="264" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="266" />
       <source>The list of devices contains some with modified data.</source>
       <translation type="unfinished" />
     </message>
@@ -90789,7 +90804,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7883" />
+      <location filename="../UI/UserInterface.py" line="7890" />
       <location filename="../UI/UserInterface.py" line="1955" />
       <location filename="../UI/UserInterface.py" line="1948" />
       <source>Load session</source>
@@ -91880,7 +91895,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6626" />
+      <location filename="../UI/UserInterface.py" line="6630" />
       <location filename="../UI/UserInterface.py" line="3172" />
       <source>Snapshot</source>
       <translation type="unfinished" />
@@ -92117,8 +92132,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7591" />
-      <location filename="../UI/UserInterface.py" line="7572" />
+      <location filename="../UI/UserInterface.py" line="7598" />
+      <location filename="../UI/UserInterface.py" line="7579" />
       <location filename="../UI/UserInterface.py" line="3402" />
       <source>Export Keyboard Shortcuts</source>
       <translation type="unfinished" />
@@ -92139,7 +92154,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7610" />
+      <location filename="../UI/UserInterface.py" line="7617" />
       <location filename="../UI/UserInterface.py" line="3421" />
       <source>Import Keyboard Shortcuts</source>
       <translation type="unfinished" />
@@ -92548,7 +92563,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6354" />
+      <location filename="../UI/UserInterface.py" line="6358" />
       <location filename="../UI/UserInterface.py" line="4194" />
       <location filename="../UI/UserInterface.py" line="4179" />
       <source>Help</source>
@@ -92720,313 +92735,313 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6491" />
-      <location filename="../UI/UserInterface.py" line="6480" />
-      <location filename="../UI/UserInterface.py" line="6432" />
-      <location filename="../UI/UserInterface.py" line="6422" />
-      <location filename="../UI/UserInterface.py" line="6245" />
-      <location filename="../UI/UserInterface.py" line="6235" />
-      <location filename="../UI/UserInterface.py" line="6177" />
-      <location filename="../UI/UserInterface.py" line="6167" />
+      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6484" />
+      <location filename="../UI/UserInterface.py" line="6436" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6239" />
+      <location filename="../UI/UserInterface.py" line="6181" />
+      <location filename="../UI/UserInterface.py" line="6171" />
       <source>Problem</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6492" />
-      <location filename="../UI/UserInterface.py" line="6481" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <location filename="../UI/UserInterface.py" line="6423" />
-      <location filename="../UI/UserInterface.py" line="6246" />
-      <location filename="../UI/UserInterface.py" line="6236" />
-      <location filename="../UI/UserInterface.py" line="6178" />
-      <location filename="../UI/UserInterface.py" line="6168" />
+      <location filename="../UI/UserInterface.py" line="6496" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6437" />
+      <location filename="../UI/UserInterface.py" line="6427" />
+      <location filename="../UI/UserInterface.py" line="6250" />
+      <location filename="../UI/UserInterface.py" line="6240" />
+      <location filename="../UI/UserInterface.py" line="6182" />
+      <location filename="../UI/UserInterface.py" line="6172" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6735" />
-      <location filename="../UI/UserInterface.py" line="6646" />
-      <location filename="../UI/UserInterface.py" line="6527" />
-      <location filename="../UI/UserInterface.py" line="6504" />
-      <location filename="../UI/UserInterface.py" line="6445" />
-      <location filename="../UI/UserInterface.py" line="6392" />
-      <location filename="../UI/UserInterface.py" line="6370" />
-      <location filename="../UI/UserInterface.py" line="6321" />
-      <location filename="../UI/UserInterface.py" line="6312" />
-      <location filename="../UI/UserInterface.py" line="6277" />
-      <location filename="../UI/UserInterface.py" line="6268" />
-      <location filename="../UI/UserInterface.py" line="6209" />
-      <location filename="../UI/UserInterface.py" line="6200" />
+      <location filename="../UI/UserInterface.py" line="6739" />
+      <location filename="../UI/UserInterface.py" line="6650" />
+      <location filename="../UI/UserInterface.py" line="6531" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6449" />
+      <location filename="../UI/UserInterface.py" line="6396" />
+      <location filename="../UI/UserInterface.py" line="6374" />
+      <location filename="../UI/UserInterface.py" line="6325" />
+      <location filename="../UI/UserInterface.py" line="6316" />
+      <location filename="../UI/UserInterface.py" line="6281" />
+      <location filename="../UI/UserInterface.py" line="6272" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6204" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6201" />
+      <location filename="../UI/UserInterface.py" line="6205" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6210" />
+      <location filename="../UI/UserInterface.py" line="6214" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6269" />
+      <location filename="../UI/UserInterface.py" line="6273" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6278" />
+      <location filename="../UI/UserInterface.py" line="6282" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6313" />
+      <location filename="../UI/UserInterface.py" line="6317" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6322" />
+      <location filename="../UI/UserInterface.py" line="6326" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6355" />
+      <location filename="../UI/UserInterface.py" line="6359" />
       <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6371" />
+      <location filename="../UI/UserInterface.py" line="6375" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6393" />
+      <location filename="../UI/UserInterface.py" line="6397" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6446" />
+      <location filename="../UI/UserInterface.py" line="6450" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6505" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6528" />
+      <location filename="../UI/UserInterface.py" line="6532" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6627" />
+      <location filename="../UI/UserInterface.py" line="6631" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6647" />
+      <location filename="../UI/UserInterface.py" line="6651" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6680" />
-      <location filename="../UI/UserInterface.py" line="6670" />
+      <location filename="../UI/UserInterface.py" line="6684" />
+      <location filename="../UI/UserInterface.py" line="6674" />
       <source>External Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6671" />
+      <location filename="../UI/UserInterface.py" line="6675" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6681" />
+      <location filename="../UI/UserInterface.py" line="6685" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6718" />
+      <location filename="../UI/UserInterface.py" line="6722" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6736" />
+      <location filename="../UI/UserInterface.py" line="6740" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6815" />
+      <location filename="../UI/UserInterface.py" line="6819" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7102" />
-      <location filename="../UI/UserInterface.py" line="7040" />
-      <location filename="../UI/UserInterface.py" line="6996" />
-      <location filename="../UI/UserInterface.py" line="6922" />
-      <location filename="../UI/UserInterface.py" line="6858" />
+      <location filename="../UI/UserInterface.py" line="7106" />
+      <location filename="../UI/UserInterface.py" line="7044" />
+      <location filename="../UI/UserInterface.py" line="7000" />
+      <location filename="../UI/UserInterface.py" line="6926" />
+      <location filename="../UI/UserInterface.py" line="6862" />
       <source>Documentation Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7103" />
-      <location filename="../UI/UserInterface.py" line="7041" />
-      <location filename="../UI/UserInterface.py" line="6997" />
-      <location filename="../UI/UserInterface.py" line="6923" />
-      <location filename="../UI/UserInterface.py" line="6859" />
+      <location filename="../UI/UserInterface.py" line="7107" />
+      <location filename="../UI/UserInterface.py" line="7045" />
+      <location filename="../UI/UserInterface.py" line="7001" />
+      <location filename="../UI/UserInterface.py" line="6927" />
+      <location filename="../UI/UserInterface.py" line="6863" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7084" />
-      <location filename="../UI/UserInterface.py" line="6966" />
+      <location filename="../UI/UserInterface.py" line="7088" />
+      <location filename="../UI/UserInterface.py" line="6970" />
       <source>Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6967" />
+      <location filename="../UI/UserInterface.py" line="6971" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7085" />
+      <location filename="../UI/UserInterface.py" line="7089" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7264" />
-      <location filename="../UI/UserInterface.py" line="7200" />
+      <location filename="../UI/UserInterface.py" line="7268" />
+      <location filename="../UI/UserInterface.py" line="7204" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7201" />
+      <location filename="../UI/UserInterface.py" line="7205" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7265" />
+      <location filename="../UI/UserInterface.py" line="7269" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7311" />
+      <location filename="../UI/UserInterface.py" line="7315" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7311" />
+      <location filename="../UI/UserInterface.py" line="7315" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7612" />
-      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7619" />
+      <location filename="../UI/UserInterface.py" line="7581" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7592" />
+      <location filename="../UI/UserInterface.py" line="7599" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7796" />
+      <location filename="../UI/UserInterface.py" line="7803" />
       <source>Load crash session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7799" />
+      <location filename="../UI/UserInterface.py" line="7806" />
       <source>Clean crash sessions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7836" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7837" />
+      <location filename="../UI/UserInterface.py" line="7844" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7860" />
+      <location filename="../UI/UserInterface.py" line="7867" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7885" />
-      <location filename="../UI/UserInterface.py" line="7862" />
+      <location filename="../UI/UserInterface.py" line="7892" />
+      <location filename="../UI/UserInterface.py" line="7869" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7954" />
+      <location filename="../UI/UserInterface.py" line="7961" />
       <source>Found Crash Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7955" />
+      <location filename="../UI/UserInterface.py" line="7962" />
       <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8028" />
+      <location filename="../UI/UserInterface.py" line="8035" />
       <source>Clean stale crash sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8029" />
+      <location filename="../UI/UserInterface.py" line="8036" />
       <source>Do you really want to delete these stale crash session files?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8405" />
+      <location filename="../UI/UserInterface.py" line="8412" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8406" />
+      <location filename="../UI/UserInterface.py" line="8413" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8594" />
+      <location filename="../UI/UserInterface.py" line="8605" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8595" />
+      <location filename="../UI/UserInterface.py" line="8606" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8640" />
+      <location filename="../UI/UserInterface.py" line="8651" />
       <source>First time usage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8641" />
+      <location filename="../UI/UserInterface.py" line="8652" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8663" />
+      <location filename="../UI/UserInterface.py" line="8674" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8831" />
+      <location filename="../UI/UserInterface.py" line="8842" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8832" />
+      <location filename="../UI/UserInterface.py" line="8843" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -93716,8 +93731,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginVcsGit.py" line="134" />
-      <location filename="../Plugins/PluginVcsGit.py" line="98" />
+      <location filename="../Plugins/PluginVcsGit.py" line="133" />
+      <location filename="../Plugins/PluginVcsGit.py" line="97" />
       <source>Git</source>
       <translation type="unfinished" />
     </message>
@@ -93931,156 +93946,156 @@
   <context>
     <name>VcsProjectHelper</name>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="76" />
+      <location filename="../VCS/ProjectHelper.py" line="77" />
       <source>New from repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="78" />
+      <location filename="../VCS/ProjectHelper.py" line="79" />
       <source>&amp;New from repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="85" />
+      <location filename="../VCS/ProjectHelper.py" line="86" />
       <source>Create a new project from the VCS repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="90" />
+      <location filename="../VCS/ProjectHelper.py" line="91" />
       <source>&lt;b&gt;New from repository&lt;/b&gt;&lt;p&gt;This creates a new local project from the VCS repository.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="101" />
+      <location filename="../VCS/ProjectHelper.py" line="102" />
       <source>Export from repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="103" />
+      <location filename="../VCS/ProjectHelper.py" line="104" />
       <source>&amp;Export from repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="112" />
+      <location filename="../VCS/ProjectHelper.py" line="113" />
       <source>Export a project from the repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="117" />
+      <location filename="../VCS/ProjectHelper.py" line="118" />
       <source>&lt;b&gt;Export from repository&lt;/b&gt;&lt;p&gt;This exports a project from the repository.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="127" />
+      <location filename="../VCS/ProjectHelper.py" line="128" />
       <source>Add to repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="129" />
+      <location filename="../VCS/ProjectHelper.py" line="130" />
       <source>&amp;Add to repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="136" />
+      <location filename="../VCS/ProjectHelper.py" line="137" />
       <source>Add the local project to the VCS repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="141" />
+      <location filename="../VCS/ProjectHelper.py" line="142" />
       <source>&lt;b&gt;Add to repository&lt;/b&gt;&lt;p&gt;This adds (imports) the local project to the VCS repository.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="192" />
-      <location filename="../VCS/ProjectHelper.py" line="190" />
+      <location filename="../VCS/ProjectHelper.py" line="193" />
+      <location filename="../VCS/ProjectHelper.py" line="191" />
       <source>VCS</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="265" />
-      <location filename="../VCS/ProjectHelper.py" line="236" />
+      <location filename="../VCS/ProjectHelper.py" line="266" />
+      <location filename="../VCS/ProjectHelper.py" line="237" />
       <source>New Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="462" />
-      <location filename="../VCS/ProjectHelper.py" line="237" />
+      <location filename="../VCS/ProjectHelper.py" line="465" />
+      <location filename="../VCS/ProjectHelper.py" line="238" />
       <source>Select version control system for the project</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../VCS/ProjectHelper.py" line="497" />
+      <location filename="../VCS/ProjectHelper.py" line="267" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="287" />
+      <source>Create project directory</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="290" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="396" />
+      <location filename="../VCS/ProjectHelper.py" line="380" />
+      <location filename="../VCS/ProjectHelper.py" line="336" />
+      <location filename="../VCS/ProjectHelper.py" line="316" />
+      <source>New project from repository</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="319" />
+      <source>Select a project file to open.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="339" />
+      <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="384" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="399" />
+      <source>The project could not be retrieved from the repository.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../VCS/ProjectHelper.py" line="494" />
-      <location filename="../VCS/ProjectHelper.py" line="266" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="286" />
-      <source>Create project directory</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="289" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="393" />
-      <location filename="../VCS/ProjectHelper.py" line="377" />
-      <location filename="../VCS/ProjectHelper.py" line="335" />
-      <location filename="../VCS/ProjectHelper.py" line="315" />
-      <source>New project from repository</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="318" />
-      <source>Select a project file to open.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="338" />
-      <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="381" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="396" />
-      <source>The project could not be retrieved from the repository.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="491" />
-      <location filename="../VCS/ProjectHelper.py" line="461" />
+      <location filename="../VCS/ProjectHelper.py" line="464" />
       <source>Import Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="535" />
+      <location filename="../VCS/ProjectHelper.py" line="540" />
       <source>Update</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="669" />
-      <location filename="../VCS/ProjectHelper.py" line="536" />
+      <location filename="../VCS/ProjectHelper.py" line="674" />
+      <location filename="../VCS/ProjectHelper.py" line="541" />
       <source>The project should be reread. Do this now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="572" />
+      <location filename="../VCS/ProjectHelper.py" line="577" />
       <source>Remove project from repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="575" />
+      <location filename="../VCS/ProjectHelper.py" line="580" />
       <source>Dou you really want to remove this project from the repository (and disk)?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="668" />
+      <location filename="../VCS/ProjectHelper.py" line="673" />
       <source>Switch</source>
       <translation type="unfinished" />
     </message>
@@ -99071,54 +99086,54 @@
   <context>
     <name>VirtualenvManager</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="318" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="322" />
       <source>Add Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="319" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="323" />
       <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="356" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="362" />
       <source>Change Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="389" />
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="357" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="395" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="363" />
       <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="388" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="394" />
       <source>Rename Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="480" />
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="413" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="486" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="419" />
       <source>{0} - {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="420" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="426" />
       <source>Delete Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="421" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="427" />
       <source>Do you really want to delete these virtual environments?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="487" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="493" />
       <source>Remove Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="488" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="494" />
       <source>Do you really want to remove these virtual environments?</source>
       <translation type="unfinished" />
     </message>
@@ -99126,7 +99141,7 @@
   <context>
     <name>VirtualenvManagerDialog</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" />
+      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="449" />
       <source>Manage Virtual Environments</source>
       <translation type="unfinished" />
     </message>
@@ -99249,7 +99264,7 @@
   <context>
     <name>VirtualenvManagerWindow</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" />
+      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="489" />
       <source>Manage Virtual Environments</source>
       <translation type="unfinished" />
     </message>
@@ -104353,22 +104368,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="125" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="117" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="127" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="119" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="49" />
       <source>Connect WiFi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="173" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="167" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="175" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="169" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="50" />
       <source>Check Internet Connection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="147" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="141" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="149" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="143" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="51" />
       <source>Disconnect WiFi</source>
       <translation type="unfinished" />
@@ -104379,40 +104394,40 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="244" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="235" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="225" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="215" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="249" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="240" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="230" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="220" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="55" />
       <source>Write WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="282" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="272" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="261" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="287" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="277" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="266" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="56" />
       <source>Remove WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="495" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="486" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="500" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="491" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="58" />
       <source>Enable WebREPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="529" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="520" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="512" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="534" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="525" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="517" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="59" />
       <source>Disable WebREPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="313" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="329" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="318" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="61" />
       <source>Start WiFi Access Point</source>
       <translation type="unfinished" />
@@ -104423,14 +104438,14 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="378" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="383" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="66" />
       <source>Show Connected Clients</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="345" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="359" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="350" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="68" />
       <source>Stop WiFi Access Point</source>
       <translation type="unfinished" />
@@ -104446,186 +104461,186 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="464" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="448" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="428" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="419" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="469" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="433" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="424" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="79" />
       <source>Set Network Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="118" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="120" />
       <source>&lt;p&gt;The device was connected to &lt;b&gt;{0}&lt;/b&gt; successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="126" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="128" />
       <source>&lt;p&gt;The device could not connect to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="533" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="499" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="286" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="248" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="538" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="504" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="291" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="253" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="178" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="152" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="131" />
+      <source>unknown</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="144" />
+      <source>&lt;p&gt;The device was disconnected from the WiFi network.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="150" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="129" />
-      <source>unknown</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="142" />
-      <source>&lt;p&gt;The device was disconnected from the WiFi network.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="148" />
       <source>&lt;p&gt;The device could not be disconnected.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="161" />
-      <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="163" />
+      <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="165" />
       <source>&lt;p&gt;The internet connection is &lt;b&gt;not available&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="174" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176" />
       <source>&lt;p&gt;The internet is not available.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="236" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="216" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="241" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="221" />
       <source>&lt;p&gt;The WiFi credentials were saved on the device. The device will connect to the WiFi network at boot time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="226" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="231" />
       <source>&lt;p&gt;The WiFi credentials and a connect script were saved on the device. Use the script by simply importing it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="245" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="250" />
       <source>&lt;p&gt;The WiFi credentials could not be saved on the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="262" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="267" />
       <source>Shall the saved WiFi credentials really be removed from the connected device?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="273" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="278" />
       <source>&lt;p&gt;The WiFi credentials were removed from the device. The device will not connect to the WiFi network at boot time anymore.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="283" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="288" />
       <source>&lt;p&gt;The WiFi credentials could not be removed from the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="314" />
-      <source>The WiFi Access Point interface was started successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="319" />
+      <source>The WiFi Access Point interface was started successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324" />
       <source>&lt;p&gt;The WiFi Access Point could not be started.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="405" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="356" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="326" />
+      <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351" />
+      <source>The WiFi Access Point interface was stopped successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354" />
+      <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="384" />
+      <source>No clients are connected to the access point.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="408" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="399" />
+      <source>Deactivate WiFi Interface</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="400" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="321" />
-      <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="346" />
-      <source>The WiFi Access Point interface was stopped successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="349" />
-      <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="379" />
-      <source>No clients are connected to the access point.</source>
+      <source>The WiFi interface was deactivated successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="403" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="394" />
-      <source>Deactivate WiFi Interface</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="395" />
-      <source>The WiFi interface was deactivated successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="398" />
       <source>&lt;p&gt;The WiFi interface could not be deactivated.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="420" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="425" />
       <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;adafruit_ntp&lt;/b&gt; is not installed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="429" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="434" />
       <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;ntptime&lt;/b&gt; is not available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="449" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="454" />
       <source>The device time was synchronized successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453" />
-      <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="458" />
+      <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="463" />
       <source>&lt;p&gt;The device time could not be synchronized. Is the device connected to a WiFi network?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="487" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="492" />
       <source>&lt;p&gt;The WebREPL server of the device will be activated after a reboot.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="496" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="501" />
       <source>&lt;p&gt;The WebREPL server of the device could not be enabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="513" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="518" />
       <source>Shall the WebREPL server of the device really be disabled?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="521" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="526" />
       <source>&lt;p&gt;The WebREPL server of the device will not be enabled at boot time anymore.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="530" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="535" />
       <source>&lt;p&gt;The WebREPL server of the device could not be disabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -105186,38 +105201,38 @@
   <context>
     <name>mercurial</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1349" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1383" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1913" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1955" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1391" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1919" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1363" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1961" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1397" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1370" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1968" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1404" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1376" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1410" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1429" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -105228,35 +105243,35 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1887" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1929" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1894" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1936" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1901" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1943" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1906" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1948" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1933" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1975" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1981" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -105917,17 +105932,17 @@
   <context>
     <name>subversion</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1736" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1769" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1888" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1919" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1892" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1923" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_es.ts	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/i18n/eric7_es.ts	Fri Nov 01 18:12:30 2024 +0100
@@ -9211,23 +9211,23 @@
       <translation>&lt;p&gt;Se ha intentado una conexión desde el host desconocido &lt;b&gt;{0}&lt;/b&gt;. ¿Aceptar esta conexión?.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1355" />
-      <location filename="../Debugger/DebugServer.py" line="1272" />
-      <location filename="../Debugger/DebugServer.py" line="1188" />
-      <location filename="../Debugger/DebugServer.py" line="1098" />
+      <location filename="../Debugger/DebugServer.py" line="1358" />
+      <location filename="../Debugger/DebugServer.py" line="1275" />
+      <location filename="../Debugger/DebugServer.py" line="1191" />
+      <location filename="../Debugger/DebugServer.py" line="1101" />
       <source>Start Debugger</source>
       <translation>Iniciar Depurador</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1356" />
-      <location filename="../Debugger/DebugServer.py" line="1273" />
-      <location filename="../Debugger/DebugServer.py" line="1189" />
-      <location filename="../Debugger/DebugServer.py" line="1099" />
+      <location filename="../Debugger/DebugServer.py" line="1359" />
+      <location filename="../Debugger/DebugServer.py" line="1276" />
+      <location filename="../Debugger/DebugServer.py" line="1192" />
+      <location filename="../Debugger/DebugServer.py" line="1102" />
       <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Este tipo de depurador, &lt;b&gt;{0}&lt;/b&gt;, no está soportado o no está configurado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1945" />
+      <location filename="../Debugger/DebugServer.py" line="1948" />
       <source>
 Not connected
 </source>
@@ -9236,38 +9236,38 @@
 </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2110" />
+      <location filename="../Debugger/DebugServer.py" line="2113" />
       <source>Passive debug connection received
 </source>
       <translation>Recibida conexión pasiva de depuración
 </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2119" />
+      <location filename="../Debugger/DebugServer.py" line="2122" />
       <source>Passive debug connection received while not in passive mode.
 </source>
       <translation>Conexión pasiva de depuración recibida no estando en modo pasivo.
 </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2125" />
+      <location filename="../Debugger/DebugServer.py" line="2128" />
       <source>Debug Client Connection</source>
       <translation>Conexión Cliente de Depuración</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2126" />
+      <location filename="../Debugger/DebugServer.py" line="2129" />
       <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source>
       <translation>Conexión pasiva de depuración recibida no estando en modo pasivo. Habilitar este modo en la página de configuración General Depuración. La conexión se rechazará.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2141" />
+      <location filename="../Debugger/DebugServer.py" line="2144" />
       <source>Passive debug connection closed
 </source>
       <translation>Cerrada conexión pasiva de depuración
 </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2272" />
+      <location filename="../Debugger/DebugServer.py" line="2275" />
       <source>&lt;project&gt;</source>
       <translation>&lt;project&gt;</translation>
     </message>
@@ -10107,26 +10107,26 @@
       <translation>Interfaz Seleccionada</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="325" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="312" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="336" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="323" />
       <source>Add allowed host</source>
       <translation>Añadir host permitido</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="349" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="313" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="360" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="324" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Introduzca la dirección IP de un host permitido</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="363" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="326" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="374" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="337" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;La dirección introducida &lt;b&gt;{0}&lt;/b&gt; no es una dirección IP v4 o IP v6 válida. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="362" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="348" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="373" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="359" />
       <source>Edit allowed host</source>
       <translation>Editar host permitido</translation>
     </message>
@@ -10223,13 +10223,8 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debugger Type:</source>
-      <translation>Tipo de depurador:</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Select the debugger type of the backend</source>
-      <translation>Seleccione el tipo de depurador en el extremo</translation>
+      <source>Debug Server Port:</source>
+      <translation>Puerto del Servidor de Depuración:</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
@@ -10245,8 +10240,28 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debug Server Port:</source>
-      <translation>Puerto del Servidor de Depuración:</translation>
+      <source>Debugger Type:</source>
+      <translation>Tipo de depurador:</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select the debugger type of the backend</source>
+      <translation>Seleccione el tipo de depurador en el extremo</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select to not stop the debugger at the first executable line.</source>
+      <translation type="unfinished">Seleccionar para no parar el depurador en la primera línea ejecutable.</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>&lt;b&gt;Don't stop at first line&lt;/b&gt;&lt;p&gt;This prevents the debugger from stopping at the first executable line.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;No detener el la primera línea&lt;/b&gt;&lt;p&gt;Hace que el depurador no se detenga en la primera línea ejecutable.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Don't stop at first line</source>
+      <translation type="unfinished">No detener en la primera línea</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
@@ -10618,12 +10633,12 @@
       <translation>&lt;p&gt;La depuración remota está configurada pero no se ha proporcionado comando para login remoto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1679" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1691" />
       <source>Debug Protocol Error</source>
       <translation>Error de Protocolo de Depuración</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1680" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1692" />
       <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;{1}&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;{1}&lt;/p&gt;</translation>
     </message>
@@ -22060,7 +22075,7 @@
   <context>
     <name>EspFirmwareSelectionDialog</name>
     <message>
-      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="68" />
+      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="77" />
       <source>Firmware Files (*.bin);;All Files (*)</source>
       <translation>Archivos de Firmware (*.bin);;Todos los Archivos (*)</translation>
     </message>
@@ -50744,13 +50759,13 @@
     <name>Lexers</name>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="412" />
-      <location filename="../Preferences/__init__.py" line="596" />
+      <location filename="../Preferences/__init__.py" line="597" />
       <source>Python Files (*.py *.py3)</source>
       <translation>Archivos Python (*.py *.py3)</translation>
     </message>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="505" />
-      <location filename="../Preferences/__init__.py" line="599" />
+      <location filename="../Preferences/__init__.py" line="600" />
       <source>Python3 Files (*.py)</source>
       <translation>Archivos Python (*.py3)</translation>
     </message>
@@ -62138,18 +62153,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1904" />
+      <location filename="../Preferences/__init__.py" line="1905" />
       <source>Export Preferences</source>
       <translation>Exportar Preferencias</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1933" />
-      <location filename="../Preferences/__init__.py" line="1906" />
+      <location filename="../Preferences/__init__.py" line="1934" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>Archivo de Propiedades (*.ini);;Todos los archivos (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1931" />
+      <location filename="../Preferences/__init__.py" line="1932" />
       <source>Import Preferences</source>
       <translation>Importar Preferencias</translation>
     </message>
@@ -62170,7 +62185,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="509" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="520" />
       <source>Variable Name</source>
       <translation>Nombre de Variable</translation>
     </message>
@@ -62798,430 +62813,430 @@
   <context>
     <name>Project</name>
     <message>
-      <location filename="../Project/Project.py" line="187" />
+      <location filename="../Project/Project.py" line="188" />
       <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source>
       <translation>Archivos Python3 (*.py *.py3);;Archivos de GUI Python3 (*.pyw *.pyw3);;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="250" />
-      <source>Add File Category</source>
-      <translation>Añadir Categoría de Archivo</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="251" />
+      <source>Add File Category</source>
+      <translation>Añadir Categoría de Archivo</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="252" />
       <source>&lt;p&gt;The file category &lt;b&gt;{0}&lt;/b&gt; has already been added. This attempt will be ignored.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La categoría de archivo &lt;b&gt;{0}&lt;/b&gt; ya está añadida. Este intento se omitirá.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="336" />
-      <source>PyQt5 GUI</source>
-      <translation>GUI PyQt5</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="337" />
-      <source>PyQt5 Console</source>
-      <translation>Consola PyQt5</translation>
+      <source>PyQt5 GUI</source>
+      <translation>GUI PyQt5</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="338" />
-      <source>PyQt6 GUI</source>
-      <translation>GUI PyQt6</translation>
+      <source>PyQt5 Console</source>
+      <translation>Consola PyQt5</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="339" />
-      <source>PyQt6 Console</source>
-      <translation>Consola PyQt6</translation>
+      <source>PyQt6 GUI</source>
+      <translation>GUI PyQt6</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="340" />
-      <source>Eric7 Plugin</source>
-      <translation>Eric7 Plugin</translation>
+      <source>PyQt6 Console</source>
+      <translation>Consola PyQt6</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="341" />
-      <source>Console</source>
-      <translation>Consola</translation>
+      <source>Eric7 Plugin</source>
+      <translation>Eric7 Plugin</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="342" />
+      <source>Console</source>
+      <translation>Consola</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="343" />
       <source>Other</source>
       <translation>Otro</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="361" />
-      <source>PySide2 GUI</source>
-      <translation>GUI de PySide2</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="362" />
+      <source>PySide2 GUI</source>
+      <translation>GUI de PySide2</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="363" />
       <source>PySide2 Console</source>
       <translation>Consola PySide2</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="366" />
-      <source>PySide6 GUI</source>
-      <translation>GUI de PySide6</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="367" />
+      <source>PySide6 GUI</source>
+      <translation>GUI de PySide6</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation>Consola PySide6</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="465" />
-      <location filename="../Project/Project.py" line="453" />
-      <location filename="../Project/Project.py" line="442" />
-      <source>Registering Project Type</source>
-      <translation>Registrando Tipo de Proyecto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="443" />
-      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El Lenguaje de Programación &lt;b&gt;{0}&lt;/b&gt; no está soportado (tipo de proyecto: {1}).&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="454" />
-      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El tipo de Proyecto &lt;b&gt;{0}&lt;/b&gt; ya está registrado con el Lenguaje de Programación &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="466" />
+      <location filename="../Project/Project.py" line="454" />
+      <location filename="../Project/Project.py" line="443" />
+      <source>Registering Project Type</source>
+      <translation>Registrando Tipo de Proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="444" />
+      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El Lenguaje de Programación &lt;b&gt;{0}&lt;/b&gt; no está soportado (tipo de proyecto: {1}).&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="455" />
+      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El tipo de Proyecto &lt;b&gt;{0}&lt;/b&gt; ya está registrado con el Lenguaje de Programación &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="467" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El Tipo de Proyecto &lt;b&gt;{0}&lt;/b&gt; ya está registrado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="771" />
+      <location filename="../Project/Project.py" line="772" />
       <source>All Files (*)</source>
       <translation>Todos los archivos (*)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1332" />
+      <location filename="../Project/Project.py" line="1333" />
       <source>Read Project Session</source>
       <translation>Leer Sesion de Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1578" />
-      <location filename="../Project/Project.py" line="1552" />
-      <location filename="../Project/Project.py" line="1516" />
-      <location filename="../Project/Project.py" line="1434" />
-      <location filename="../Project/Project.py" line="1395" />
-      <location filename="../Project/Project.py" line="1370" />
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1579" />
+      <location filename="../Project/Project.py" line="1553" />
+      <location filename="../Project/Project.py" line="1517" />
+      <location filename="../Project/Project.py" line="1435" />
+      <location filename="../Project/Project.py" line="1396" />
+      <location filename="../Project/Project.py" line="1371" />
+      <location filename="../Project/Project.py" line="1334" />
       <source>Please save the project first.</source>
       <translation>Por favor guarde primero el proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1369" />
+      <location filename="../Project/Project.py" line="1370" />
       <source>Save Project Session</source>
       <translation>Guardar Sesion de Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1411" />
-      <location filename="../Project/Project.py" line="1394" />
+      <location filename="../Project/Project.py" line="1412" />
+      <location filename="../Project/Project.py" line="1395" />
       <source>Delete Project Session</source>
       <translation>Borrar Sesión de Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1401" />
+      <location filename="../Project/Project.py" line="1402" />
       <source>Delete Remote Project Session</source>
       <translation>Borrar Sesión de Proyecto Remoto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1420" />
+      <location filename="../Project/Project.py" line="1421" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de sesión de proyecto &lt;b&gt;{0}&lt;/b&gt; no ha podido borrarse.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1433" />
+      <location filename="../Project/Project.py" line="1434" />
       <source>Read Tasks</source>
       <translation>Leer Tareas</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1515" />
+      <location filename="../Project/Project.py" line="1516" />
       <source>Read Debugger Properties</source>
       <translation>Leer Propiedades del Depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1551" />
+      <location filename="../Project/Project.py" line="1552" />
       <source>Save Debugger Properties</source>
       <translation>Guardar Propiedades del Depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1594" />
-      <location filename="../Project/Project.py" line="1577" />
+      <location filename="../Project/Project.py" line="1595" />
+      <location filename="../Project/Project.py" line="1578" />
       <source>Delete Debugger Properties</source>
       <translation>Borrar Propiedades del Depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1584" />
+      <location filename="../Project/Project.py" line="1585" />
       <source>Delete Remote Debugger Properties</source>
       <translation>Borrar Propiedades del Depurador Remoto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1603" />
+      <location filename="../Project/Project.py" line="1604" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de propiedades del depurador del proyecto  &lt;b&gt;{0}&lt;/b&gt; no pudo ser borrado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1776" />
-      <source>Add Language</source>
-      <translation>Añadir lenguaje</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="1777" />
+      <source>Add Language</source>
+      <translation>Añadir lenguaje</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="1778" />
       <source>You have to specify a translation pattern first.</source>
       <translation>Debe especificar primero un patrón de traducción.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1918" />
+      <location filename="../Project/Project.py" line="1919" />
       <source>Delete Translation</source>
       <translation>Borrar Traducción</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="1946" />
+      <location filename="../Project/Project.py" line="1920" />
+      <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El archivo de traducción seleccionado &lt;b&gt;{0}&lt;/b&gt; no se ha podido borrar.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="1945" />
-      <location filename="../Project/Project.py" line="1919" />
-      <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El archivo de traducción seleccionado &lt;b&gt;{0}&lt;/b&gt; no se ha podido borrar.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="1944" />
       <source>Delete translation</source>
       <translation>Borrar traducción</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2097" />
-      <location filename="../Project/Project.py" line="2080" />
-      <source>Add File</source>
-      <translation>Añadir archivo</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2199" />
-      <location filename="../Project/Project.py" line="2081" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe.&lt;/p&gt;&lt;p&gt;¿Desea sobreescribirlo?&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2098" />
+      <location filename="../Project/Project.py" line="2081" />
+      <source>Add File</source>
+      <translation>Añadir archivo</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2200" />
+      <location filename="../Project/Project.py" line="2082" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe.&lt;/p&gt;&lt;p&gt;¿Desea sobreescribirlo?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2099" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo seleccionado &lt;b&gt;{0}&lt;/b&gt; no ha podido se añadido a &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Razón: {2}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2110" />
+      <location filename="../Project/Project.py" line="2111" />
       <source>Add file</source>
       <translation>Agregar archivo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2295" />
-      <location filename="../Project/Project.py" line="2111" />
+      <location filename="../Project/Project.py" line="2296" />
+      <location filename="../Project/Project.py" line="2112" />
       <source>The target directory must not be empty.</source>
       <translation>El directorio de destino no puede estar vacío.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2198" />
-      <location filename="../Project/Project.py" line="2171" />
-      <location filename="../Project/Project.py" line="2151" />
+      <location filename="../Project/Project.py" line="2199" />
+      <location filename="../Project/Project.py" line="2172" />
+      <location filename="../Project/Project.py" line="2152" />
       <source>Add Directory</source>
       <translation>Añadir Directorio</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2152" />
+      <location filename="../Project/Project.py" line="2153" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El directorio de origen no contiene archivos que pertenezcan a la categoría seleccionada.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2172" />
+      <location filename="../Project/Project.py" line="2173" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El directorio de destino &lt;b&gt;{0}&lt;/b&gt; no ha podido ser creado.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2306" />
-      <location filename="../Project/Project.py" line="2294" />
-      <source>Add directory</source>
-      <translation>Añadir directorio</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2307" />
+      <location filename="../Project/Project.py" line="2295" />
+      <source>Add directory</source>
+      <translation>Añadir directorio</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2308" />
       <source>The source directory must not be empty.</source>
       <translation>El directorio de origen no puede estar vacío.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2421" />
-      <location filename="../Project/Project.py" line="2403" />
-      <location filename="../Project/Project.py" line="2387" />
-      <location filename="../Project/Project.py" line="2380" />
-      <source>Rename File</source>
-      <translation>Renombrar Archivo</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="8074" />
-      <location filename="../Project/Project.py" line="3908" />
-      <location filename="../Project/Project.py" line="2404" />
-      <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.&lt;/p&gt;&lt;p&gt;¿Desea sobreescribirlo?&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2422" />
+      <location filename="../Project/Project.py" line="2404" />
+      <location filename="../Project/Project.py" line="2388" />
+      <location filename="../Project/Project.py" line="2381" />
+      <source>Rename File</source>
+      <translation>Renombrar Archivo</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="8089" />
+      <location filename="../Project/Project.py" line="3909" />
+      <location filename="../Project/Project.py" line="2405" />
+      <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.&lt;/p&gt;&lt;p&gt;¿Desea sobreescribirlo?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2423" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no puede ser renombrado.&lt;br /&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2689" />
-      <source>Delete File</source>
-      <translation>Borrar Archivo</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2690" />
+      <source>Delete File</source>
+      <translation>Borrar Archivo</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2691" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo seleccionado &lt;b&gt;{0}&lt;/b&gt; no se ha podido borrar.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2718" />
-      <source>Delete Directory</source>
-      <translation>Borrar Directorio</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2719" />
+      <source>Delete Directory</source>
+      <translation>Borrar Directorio</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2720" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El directorio seleccionado &lt;b&gt;{0}&lt;/b&gt; no se ha podido borrar.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2852" />
-      <source>Create project directory</source>
-      <translation>Crear directorio de proyecto</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2853" />
+      <source>Create project directory</source>
+      <translation>Crear directorio de proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2854" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El directorio de proyecto &lt;b&gt;{0}&lt;/b&gt; no pudo ser creado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3681" />
-      <location filename="../Project/Project.py" line="2953" />
-      <source>Create project management directory</source>
-      <translation>Crear directorio de gestión del proyecto</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3682" />
       <location filename="../Project/Project.py" line="2954" />
+      <source>Create project management directory</source>
+      <translation>Crear directorio de gestión del proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3683" />
+      <location filename="../Project/Project.py" line="2955" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El directorio del proyecto &lt;b&gt;{0}&lt;/b&gt; no se puede escribir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2994" />
-      <source>Create main script</source>
-      <translation>Crear script principal</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2995" />
+      <source>Create main script</source>
+      <translation>Crear script principal</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2996" />
       <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El script principal &lt;b&gt;{0}&lt;/b&gt; no se ha podido crear.&lt;br/&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3462" />
-      <location filename="../Project/Project.py" line="3019" />
-      <source>Create Makefile</source>
-      <translation>Crear Makefile</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3463" />
       <location filename="../Project/Project.py" line="3020" />
+      <source>Create Makefile</source>
+      <translation>Crear Makefile</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3464" />
+      <location filename="../Project/Project.py" line="3021" />
       <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El makefile &lt;b&gt;{0}&lt;/b&gt; no se ha podido crear.&lt;br/&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3711" />
-      <location filename="../Project/Project.py" line="3172" />
-      <location filename="../Project/Project.py" line="3143" />
-      <location filename="../Project/Project.py" line="3111" />
-      <location filename="../Project/Project.py" line="3093" />
-      <location filename="../Project/Project.py" line="3068" />
-      <location filename="../Project/Project.py" line="3030" />
-      <source>New Project</source>
-      <translation>Proyecto nuevo</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3031" />
-      <source>Add existing files to the project?</source>
-      <translation>¿Agregar archivos existentes al proyecto?</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3712" />
+      <location filename="../Project/Project.py" line="3173" />
+      <location filename="../Project/Project.py" line="3144" />
+      <location filename="../Project/Project.py" line="3112" />
+      <location filename="../Project/Project.py" line="3094" />
       <location filename="../Project/Project.py" line="3069" />
+      <location filename="../Project/Project.py" line="3031" />
+      <source>New Project</source>
+      <translation>Proyecto nuevo</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3032" />
+      <source>Add existing files to the project?</source>
+      <translation>¿Agregar archivos existentes al proyecto?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3713" />
+      <location filename="../Project/Project.py" line="3070" />
       <source>Select Version Control System</source>
       <translation>Seleccion el Sistema de control de versiones (VCS)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3173" />
-      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="3174" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Would you like to edit the VCS command options?</source>
       <translation>¿Le gustaría editar las opciones de comando para VCS?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3112" />
+      <location filename="../Project/Project.py" line="3113" />
       <source>Shall the project file be added to the repository?</source>
       <translation>¿Debe añadirse el archivo de proyecto al repositorio?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3149" />
-      <location filename="../Project/Project.py" line="3138" />
+      <location filename="../Project/Project.py" line="3150" />
+      <location filename="../Project/Project.py" line="3139" />
       <source>None</source>
       <translation>Ninguno</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3144" />
+      <location filename="../Project/Project.py" line="3145" />
       <source>Select version control system for the project</source>
       <translation>Seleccione el sistema de control de versiones para el proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3355" />
-      <source>Translation Pattern</source>
-      <translation>Patrón de Traducción</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3356" />
+      <source>Translation Pattern</source>
+      <translation>Patrón de Traducción</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3357" />
       <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
       <translation>Introduzca el patrón de ruta para los archivos de traducción (use '%language%' in lugar del código de idioma):</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3660" />
+      <location filename="../Project/Project.py" line="3661" />
       <source>Open Project</source>
       <translation>Abrir proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8060" />
-      <location filename="../Project/Project.py" line="8054" />
-      <location filename="../Project/Project.py" line="8044" />
-      <location filename="../Project/Project.py" line="3893" />
-      <location filename="../Project/Project.py" line="3883" />
-      <location filename="../Project/Project.py" line="3662" />
+      <location filename="../Project/Project.py" line="8075" />
+      <location filename="../Project/Project.py" line="8069" />
+      <location filename="../Project/Project.py" line="8059" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3884" />
+      <location filename="../Project/Project.py" line="3663" />
       <source>Project Files (*.epj)</source>
       <translation>Archivos de proyecto (*.epj)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3907" />
-      <location filename="../Project/Project.py" line="3891" />
+      <location filename="../Project/Project.py" line="3908" />
+      <location filename="../Project/Project.py" line="3892" />
       <source>Save Project</source>
       <translation>Guardar Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3946" />
-      <source>Close Project</source>
-      <translation>Cerrar Proyecto</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3947" />
+      <source>Close Project</source>
+      <translation>Cerrar Proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3948" />
       <source>The current project has unsaved changes.</source>
       <translation>El proyecto actual tiene cambios sin guardar.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4147" />
-      <location filename="../Project/Project.py" line="4111" />
+      <location filename="../Project/Project.py" line="4148" />
+      <location filename="../Project/Project.py" line="4112" />
       <source>Syntax Errors Detected</source>
       <translation>Detectados Errores Sintácticos</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4148" />
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4149" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>El archivo contiene %n archivo(s) con errores de sintaxis.</numerusform>
@@ -63229,1268 +63244,1268 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4806" />
+      <location filename="../Project/Project.py" line="4807" />
       <source>New project</source>
       <translation>Proyecto nuevo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4808" />
+      <location filename="../Project/Project.py" line="4809" />
       <source>&amp;New...</source>
       <translation>&amp;Nuevo...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4814" />
+      <location filename="../Project/Project.py" line="4815" />
       <source>Generate a new project</source>
       <translation>Generar un nuevo proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4816" />
+      <location filename="../Project/Project.py" line="4817" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nuevo...&lt;/b&gt;&lt;p&gt;Abre un diálogo para introducir la información para un nuevo proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4826" />
+      <location filename="../Project/Project.py" line="4827" />
       <source>Open project</source>
       <translation>Abrir proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4828" />
+      <location filename="../Project/Project.py" line="4829" />
       <source>&amp;Open...</source>
       <translation>&amp;Abrir...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4834" />
+      <location filename="../Project/Project.py" line="4835" />
       <source>Open an existing project</source>
       <translation>Abrir un proyecto existente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4836" />
+      <location filename="../Project/Project.py" line="4837" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Abrir...&lt;/b&gt;&lt;p&gt;Abre un proyecto existente..&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4842" />
+      <location filename="../Project/Project.py" line="4843" />
       <source>Open remote project</source>
       <translation>Abrir proyecto remoto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4844" />
+      <location filename="../Project/Project.py" line="4845" />
       <source>Open (Remote)...</source>
       <translation>Abrir (Remoto)...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4850" />
+      <location filename="../Project/Project.py" line="4851" />
       <source>Open an existing remote project</source>
       <translation>Abrir un proyecto remoto existente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4852" />
+      <location filename="../Project/Project.py" line="4853" />
       <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Abrir (Remoto)...&lt;/b&gt;&lt;p&gt;Esto abre un proyecto remoto existente..&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4861" />
+      <location filename="../Project/Project.py" line="4862" />
       <source>Reload project</source>
       <translation>Recargar proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4863" />
+      <location filename="../Project/Project.py" line="4864" />
       <source>Re&amp;load</source>
       <translation>Re&amp;cargar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4869" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>Reload the current project</source>
       <translation>Regargar el proyecto actual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4871" />
+      <location filename="../Project/Project.py" line="4872" />
       <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Recargar&lt;/b&gt;&lt;p&gt;Esto recarga el proyecto actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4877" />
+      <location filename="../Project/Project.py" line="4878" />
       <source>Close project</source>
       <translation>Cerrar proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4879" />
+      <location filename="../Project/Project.py" line="4880" />
       <source>&amp;Close</source>
       <translation>&amp;Cerrar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4885" />
+      <location filename="../Project/Project.py" line="4886" />
       <source>Close the current project</source>
       <translation>Cierra el proyecto actual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4887" />
+      <location filename="../Project/Project.py" line="4888" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cerrar&lt;/b&gt;&lt;p&gt;Cierra el proyecto actualt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4893" />
+      <location filename="../Project/Project.py" line="4894" />
       <source>Save project</source>
       <translation>Guardar proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5190" />
-      <location filename="../Project/Project.py" line="4895" />
+      <location filename="../Project/Project.py" line="5191" />
+      <location filename="../Project/Project.py" line="4896" />
       <source>&amp;Save</source>
       <translation>&amp;Guardar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4901" />
+      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation>Guarda el proyecto actual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4903" />
+      <location filename="../Project/Project.py" line="4904" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Guardar&lt;/b&gt;&lt;p&gt;Guarda el proyecto actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4909" />
+      <location filename="../Project/Project.py" line="4910" />
       <source>Save project as</source>
       <translation>Guardar proyecto como</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4911" />
+      <location filename="../Project/Project.py" line="4912" />
       <source>Save &amp;as...</source>
       <translation>Guardar co&amp;mo...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4917" />
+      <location filename="../Project/Project.py" line="4918" />
       <source>Save the current project to a new file</source>
       <translation>Guardar el proyecto actual en un nuevo archivo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4919" />
+      <location filename="../Project/Project.py" line="4920" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Guardar como&lt;/b&gt;&lt;p&gt;Guarda el proyecto en otro archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4928" />
+      <location filename="../Project/Project.py" line="4929" />
       <source>Save project as (Remote)</source>
       <translation>Guardar proyecto como (Remoto)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4930" />
+      <location filename="../Project/Project.py" line="4931" />
       <source>Save as (Remote)...</source>
       <translation>Guardar como (Remoto)...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4937" />
+      <location filename="../Project/Project.py" line="4938" />
       <source>Save the current project to a new remote file</source>
       <translation>Guardar el proyecto actual a un nuevo archivo remoto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4940" />
+      <location filename="../Project/Project.py" line="4941" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Guardar como (Remoto)&lt;/b&gt;&lt;p&gt;Esto guarda el proyecto actual en un nuevo archivo remoto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4956" />
+      <location filename="../Project/Project.py" line="4957" />
       <source>Add files to project</source>
       <translation>Agregar archivos al proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4958" />
+      <location filename="../Project/Project.py" line="4959" />
       <source>Add &amp;files...</source>
       <translation>&amp;Agregar archivos...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4964" />
+      <location filename="../Project/Project.py" line="4965" />
       <source>Add files to the current project</source>
       <translation>Añadir archivos al proyecto actual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4966" />
+      <location filename="../Project/Project.py" line="4967" />
       <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Añadir archivos...&lt;/b&gt;&lt;p&gt;Abre un diálogo para añadir archivos al proyecto actual. El lugar donde se van a añadir es determinado por la extensión del nombre de archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4977" />
+      <location filename="../Project/Project.py" line="4978" />
       <source>Add directory to project</source>
       <translation>Agregar directorio al proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4979" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Add directory...</source>
       <translation>Agregar directorio...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4986" />
+      <location filename="../Project/Project.py" line="4987" />
       <source>Add a directory to the current project</source>
       <translation>Agregar directorio al proyecto actual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4989" />
+      <location filename="../Project/Project.py" line="4990" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Añadir directorio...&lt;/b&gt;&lt;p&gt;Abre un diálogo para añadir un directorio al proyecto actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4999" />
+      <location filename="../Project/Project.py" line="5000" />
       <source>Add translation to project</source>
       <translation>Añadir traducción al proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5001" />
+      <location filename="../Project/Project.py" line="5002" />
       <source>Add &amp;translation...</source>
       <translation>Añadir &amp;Traducción...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5008" />
+      <location filename="../Project/Project.py" line="5009" />
       <source>Add a translation to the current project</source>
       <translation>Añadir una traducción al proyecto actual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5011" />
+      <location filename="../Project/Project.py" line="5012" />
       <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Añadir traducción...&lt;/b&gt;&lt;p&gt;Abre un diálogo para añadir una traducción al proyecto actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5021" />
-      <source>Search new files</source>
-      <translation>Buscar archivos nuevos</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5022" />
+      <source>Search new files</source>
+      <translation>Buscar archivos nuevos</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation>Bus&amp;car archivos nuevos...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5028" />
+      <location filename="../Project/Project.py" line="5029" />
       <source>Search new files in the project directory.</source>
       <translation>Bucar nuevos archivos en el directorio de proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5030" />
+      <location filename="../Project/Project.py" line="5031" />
       <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Buscar nuevos archivos...&lt;/b&gt;&lt;p&gt;Busca nuevos archivos (fuentes, forms, ...) en el directorio del proyecto y en los subdirectorios registrados.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5040" />
-      <source>Search Project File</source>
-      <translation>Buscar Archivo en Proyecto</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5041" />
-      <source>Search Project File...</source>
-      <translation>Buscar Archivo en Proyecto...</translation>
+      <source>Search Project File</source>
+      <translation>Buscar Archivo en Proyecto</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5042" />
+      <source>Search Project File...</source>
+      <translation>Buscar Archivo en Proyecto...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation>Alt+Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5047" />
+      <location filename="../Project/Project.py" line="5048" />
       <source>Search for a file in the project list of files.</source>
       <translation>Bucar un archivo en el listado de archivos del proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5049" />
+      <location filename="../Project/Project.py" line="5050" />
       <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Buscar Archivo en el Proyecto&lt;/b&gt;&lt;p&gt;Busca un archivo en el listado de archivos del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5058" />
+      <location filename="../Project/Project.py" line="5059" />
       <source>Project properties</source>
       <translation>Propiedades del proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5060" />
+      <location filename="../Project/Project.py" line="5061" />
       <source>&amp;Properties...</source>
       <translation>&amp;Propiedades...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5066" />
+      <location filename="../Project/Project.py" line="5067" />
       <source>Show the project properties</source>
       <translation>Ver las propiedades del proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5068" />
+      <location filename="../Project/Project.py" line="5069" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Propiedades...&lt;/b&gt;&lt;p&gt;Muestra un diálogo para editar las propiedades del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5077" />
+      <location filename="../Project/Project.py" line="5078" />
       <source>User project properties</source>
       <translation>Propiedades del usuario del proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5079" />
+      <location filename="../Project/Project.py" line="5080" />
       <source>&amp;User Properties...</source>
       <translation>Propiedades del &amp;Usuario...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5086" />
+      <location filename="../Project/Project.py" line="5087" />
       <source>Show the user specific project properties</source>
       <translation>Muestra propiedades del proyecto específicas del usuario</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5089" />
+      <location filename="../Project/Project.py" line="5090" />
       <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Propiedades del Usuario...&lt;/b&gt;&lt;p&gt;Abre un diálogo par editar las propiedades del proyecto específicas del usuario.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5099" />
-      <source>Filetype Associations</source>
-      <translation>Asociación de tipos de archivo</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5100" />
+      <source>Filetype Associations</source>
+      <translation>Asociación de tipos de archivo</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5101" />
       <source>Filetype Associations...</source>
       <translation>Asociación de tipos de archivo...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5107" />
+      <location filename="../Project/Project.py" line="5108" />
       <source>Show the project file type associations</source>
       <translation>Mostrar asociaciones de tipo de archivo del proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5110" />
+      <location filename="../Project/Project.py" line="5111" />
       <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Asociaciones de tipos de archivo...&lt;/b&gt;&lt;p&gt;Muestra un diálogo para editar asociaciones de tipos de archivo del proyecto. Estas asociaciones determinan el tipo (fuentes, formulario, interfaces, protocolos u otros) con un patrón de nombre de archivo. Se usan al añadir archivos al proyecto y al realizar una búsqueda de nuevos archivos.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5123" />
-      <source>Lexer Associations</source>
-      <translation>Asociaciones de Analizador Léxico</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5124" />
+      <source>Lexer Associations</source>
+      <translation>Asociaciones de Analizador Léxico</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5125" />
       <source>Lexer Associations...</source>
       <translation>Asociaciones de Analizador Léxico...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5131" />
+      <location filename="../Project/Project.py" line="5132" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation>Ver las asociaciones de analizador léxico del proyecto (sobreescribiendo valores por defecto)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5134" />
+      <location filename="../Project/Project.py" line="5135" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Asociaciones de Analizador Léxico ...&lt;/b&gt;&lt;p&gt;Muestra un diálogo para editar las asociaciones de analizador léxico del proyecto. Estas asociaciones sobreescriben las asociaciones de analizador léxico globales. Los analizadores léxicos se utilizan para resaltar el texto en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5152" />
-      <source>Debugger Properties</source>
-      <translation>Propiedades del depurador</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5153" />
+      <source>Debugger Properties</source>
+      <translation>Propiedades del depurador</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5154" />
       <source>Debugger &amp;Properties...</source>
       <translation>&amp;Propiedades del depurador...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5159" />
+      <location filename="../Project/Project.py" line="5160" />
       <source>Show the debugger properties</source>
       <translation>Muestra las propiedades del depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5161" />
+      <location filename="../Project/Project.py" line="5162" />
       <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Propiedades del Depurador...&lt;/b&gt;&lt;p&gt;Abre un diálogo par editar las propiedades del depurador específicas del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5171" />
-      <source>Load</source>
-      <translation>Cargar</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5172" />
+      <source>Load</source>
+      <translation>Cargar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
       <source>&amp;Load</source>
       <translation>&amp;Cargar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5178" />
+      <location filename="../Project/Project.py" line="5179" />
       <source>Load the debugger properties</source>
       <translation>Cargar las propiedades del depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5180" />
+      <location filename="../Project/Project.py" line="5181" />
       <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cargar Propiedades del Depurador&lt;/b&gt;&lt;p&gt;Carga las opciones de configuración del depurador específicas del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5189" />
+      <location filename="../Project/Project.py" line="5190" />
       <source>Save</source>
       <translation>Guardar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5196" />
+      <location filename="../Project/Project.py" line="5197" />
       <source>Save the debugger properties</source>
       <translation>Guardar propiedades del depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5198" />
+      <location filename="../Project/Project.py" line="5199" />
       <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Guardar Propiedades del Depurador&lt;/b&gt;&lt;p&gt;Guarda las opciones de configuración del depurador específicas del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5207" />
-      <source>Delete</source>
-      <translation>Borrar</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5208" />
+      <source>Delete</source>
+      <translation>Borrar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5209" />
       <source>&amp;Delete</source>
       <translation>&amp;Borrar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5214" />
+      <location filename="../Project/Project.py" line="5215" />
       <source>Delete the debugger properties</source>
       <translation>Borrar las propiedades del depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5216" />
+      <location filename="../Project/Project.py" line="5217" />
       <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Borrar Propiedades del Depurador&lt;/b&gt;&lt;p&gt;Borra el archivo que contiene las opciones de configuración del depurador específicas del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5226" />
-      <source>Reset</source>
-      <translation>Reiniciar</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5227" />
+      <source>Reset</source>
+      <translation>Reiniciar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5228" />
       <source>&amp;Reset</source>
       <translation>&amp;Reiniciar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5233" />
+      <location filename="../Project/Project.py" line="5234" />
       <source>Reset the debugger properties</source>
       <translation>Restablecer las propiedades del depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5235" />
+      <location filename="../Project/Project.py" line="5236" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Restablecer Propiedades del Depurador&lt;/b&gt;&lt;p&gt;Restablece las opciones de configuración del depurador específicas del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5252" />
       <location filename="../Project/Project.py" line="5251" />
-      <location filename="../Project/Project.py" line="5250" />
       <source>Load session</source>
       <translation>Cargar sesión</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5257" />
+      <location filename="../Project/Project.py" line="5258" />
       <source>Load the projects session file.</source>
       <translation>Cargar archivo de sesión de proyectos.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5259" />
+      <location filename="../Project/Project.py" line="5260" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cargar sesión&lt;/b&gt;&lt;p&gt;Carga el archivo de sesión de proyecto. La sesión consiste en los datos siguientes.&lt;br&gt;- todos los archivos de fuentes abiertos&lt;br&gt;- todos los puntos de interrupción&lt;br&gt;- todos los argumentos de línea de comandos&lt;br&gt;- el directorio de trabajo&lt;br&gt;- el flag de reporte de excepciones&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5276" />
       <location filename="../Project/Project.py" line="5275" />
-      <location filename="../Project/Project.py" line="5274" />
       <source>Save session</source>
       <translation>Guardar sesión</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5281" />
+      <location filename="../Project/Project.py" line="5282" />
       <source>Save the projects session file.</source>
       <translation>Guardar archivos de sessión de proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5283" />
+      <location filename="../Project/Project.py" line="5284" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Guardar sesión&lt;/b&gt;&lt;p&gt;Guarda el archivo de sesión de proyecto. La sesión consiste en los datos siguientes.&lt;br&gt;- todos los archivos de fuentes abiertos&lt;br&gt;- todos los puntos de interrupción&lt;br&gt;- todos los argumentos de línea de comandos&lt;br&gt;- el directorio de trabajo&lt;br&gt;- el flag de reporte de excepciones&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5300" />
       <location filename="../Project/Project.py" line="5299" />
-      <location filename="../Project/Project.py" line="5298" />
       <source>Delete session</source>
       <translation>Borrar sesión</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5305" />
+      <location filename="../Project/Project.py" line="5306" />
       <source>Delete the projects session file.</source>
       <translation>Borrar el archivo de sesión de proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5307" />
+      <location filename="../Project/Project.py" line="5308" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation>&lt;b&gt;Borrar sesión&lt;/b&gt;&lt;p&gt;Borra el archivo de sesión del proyecto&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5322" />
-      <source>Code Metrics</source>
-      <translation>Métricas de código</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5323" />
+      <source>Code Metrics</source>
+      <translation>Métricas de código</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5324" />
       <source>&amp;Code Metrics...</source>
       <translation>Métricas de &amp;código...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5330" />
+      <location filename="../Project/Project.py" line="5331" />
       <source>Show some code metrics for the project.</source>
       <translation>Muestra algunas métricas del código para este proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5333" />
+      <location filename="../Project/Project.py" line="5334" />
       <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Métricas de Código...&lt;/b&gt;&lt;p&gt;Muestra algunas métricas de código para todos los archivos Python en el proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5343" />
-      <source>Python Code Coverage</source>
-      <translation>Cobertura de Código Python</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5344" />
+      <source>Python Code Coverage</source>
+      <translation>Cobertura de Código Python</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5345" />
       <source>Code Co&amp;verage...</source>
       <translation>Co&amp;bertura de código...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5351" />
+      <location filename="../Project/Project.py" line="5352" />
       <source>Show code coverage information for the project.</source>
       <translation>Muestra información de cobertura de código para el proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5354" />
+      <location filename="../Project/Project.py" line="5355" />
       <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cobertura de Código...&lt;/b&gt;&lt;p&gt;Muestra la información de cobertura de código para todos los archivos Python en el proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6788" />
-      <location filename="../Project/Project.py" line="6775" />
-      <location filename="../Project/Project.py" line="5364" />
+      <location filename="../Project/Project.py" line="6789" />
+      <location filename="../Project/Project.py" line="6776" />
+      <location filename="../Project/Project.py" line="5365" />
       <source>Profile Data</source>
       <translation>Datos de perfil</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5365" />
+      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation>Datos de &amp;pefil...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5372" />
+      <location filename="../Project/Project.py" line="5373" />
       <source>Show profiling data for the project.</source>
       <translation>Mostrar datos de profiling para el proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5375" />
+      <location filename="../Project/Project.py" line="5376" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Datos de Profiling...&lt;/b&gt;&lt;p&gt;Muestra datos de profiling para el proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6840" />
-      <location filename="../Project/Project.py" line="5390" />
+      <location filename="../Project/Project.py" line="6841" />
+      <location filename="../Project/Project.py" line="5391" />
       <source>Application Diagram</source>
       <translation>Diagrama de Aplicación</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="5392" />
       <source>&amp;Application Diagram...</source>
       <translation>Diagrama de &amp;Aplicación...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5398" />
+      <location filename="../Project/Project.py" line="5399" />
       <source>Show a diagram of the project.</source>
       <translation>Mostrar diagrama del proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5401" />
+      <location filename="../Project/Project.py" line="5402" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diagrama de Aplicación...&lt;/b&gt;&lt;p&gt;Muestra un diagrama del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5410" />
-      <source>Load Diagram</source>
-      <translation>Cargar Diagrama</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5411" />
+      <source>Load Diagram</source>
+      <translation>Cargar Diagrama</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5412" />
       <source>&amp;Load Diagram...</source>
       <translation>&amp;Cargar Diagrama...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5417" />
+      <location filename="../Project/Project.py" line="5418" />
       <source>Load a diagram from file.</source>
       <translation>CArgar diagrama desde archivo.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5419" />
+      <location filename="../Project/Project.py" line="5420" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cargar Diagrama...&lt;/b&gt;&lt;p&gt;Carga un diagrama desde un archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7008" />
-      <location filename="../Project/Project.py" line="6953" />
-      <location filename="../Project/Project.py" line="5434" />
+      <location filename="../Project/Project.py" line="7009" />
+      <location filename="../Project/Project.py" line="6954" />
+      <location filename="../Project/Project.py" line="5435" />
       <source>Create Package List</source>
       <translation>Crear Lista del Paquete</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5436" />
+      <location filename="../Project/Project.py" line="5437" />
       <source>Create &amp;Package List</source>
       <translation>Crear &amp;Package List</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5443" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation>Crear un archivo inicial PKGLIST para un plugin para eric.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5446" />
+      <location filename="../Project/Project.py" line="5447" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Crear Package List&lt;/b&gt;&lt;p&gt;Crea una lista inicial de archivos para incluir en un archivo de plugin para eric. Esta lista se crea a partir del archivo de proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7079" />
-      <location filename="../Project/Project.py" line="5457" />
+      <location filename="../Project/Project.py" line="7080" />
+      <location filename="../Project/Project.py" line="5458" />
       <source>Create Plugin Archives</source>
       <translation>Crear Archivos de Plugin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5459" />
+      <location filename="../Project/Project.py" line="5460" />
       <source>Create Plugin &amp;Archives</source>
       <translation>Crear &amp;Archivos de Plugin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5465" />
+      <location filename="../Project/Project.py" line="5466" />
       <source>Create eric plugin archive files.</source>
       <translation>Crear ficheros para archivo de plugin de eric.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5467" />
+      <location filename="../Project/Project.py" line="5468" />
       <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Crear Archivo de Plugin&lt;/b&gt;&lt;p&gt;Crea ficheros para archivo de plugin de eric utilizando el listado de ficheros proporcionados en un archivo PKGLIST*. El nombre de archivo se crea a partir del nombre del script principal si no se desinga uno en el archivo de lista de package.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5479" />
+      <location filename="../Project/Project.py" line="5480" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation>Crear Archivos de Plugin (Snapshot)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5481" />
+      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation>Crear Archivos de Plugin (&amp;Snapshot)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5488" />
+      <location filename="../Project/Project.py" line="5489" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation>Crear ficheros para archivo de plugin de eric (snapshot releases).</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5491" />
+      <location filename="../Project/Project.py" line="5492" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Crear Archivos de Plugin (Snapshot)&lt;/b&gt;&lt;p&gt;Crea ficheros para archivo de plugin de eric usando el listado de ficheros dado en un archivo PKGLIST*. El nombre del archivo se construye a partir del nombre del script principal si no se designa uno en el archivo de package list. La entrada de versión del script principal se modifica para reflejar una snapshot release.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7521" />
-      <location filename="../Project/Project.py" line="7492" />
-      <location filename="../Project/Project.py" line="7446" />
-      <location filename="../Project/Project.py" line="7398" />
-      <location filename="../Project/Project.py" line="5510" />
+      <location filename="../Project/Project.py" line="7536" />
+      <location filename="../Project/Project.py" line="7507" />
+      <location filename="../Project/Project.py" line="7461" />
+      <location filename="../Project/Project.py" line="7413" />
+      <location filename="../Project/Project.py" line="5511" />
       <source>Execute Make</source>
       <translation>Ejecutar Make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5511" />
+      <location filename="../Project/Project.py" line="5512" />
       <source>&amp;Execute Make</source>
       <translation>&amp;Ejecutar Make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5517" />
+      <location filename="../Project/Project.py" line="5518" />
       <source>Perform a 'make' run.</source>
       <translation>Ejecutar un 'make'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5519" />
+      <location filename="../Project/Project.py" line="5520" />
       <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ejecutar Make&lt;/b&gt;&lt;p&gt;Ejecuta un 'make' para reconstruir el target configurado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7498" />
-      <location filename="../Project/Project.py" line="5529" />
+      <location filename="../Project/Project.py" line="7513" />
+      <location filename="../Project/Project.py" line="5530" />
       <source>Test for Changes</source>
       <translation>Comprobar Cambios</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="5531" />
       <source>&amp;Test for Changes</source>
       <translation>&amp;Comprobar Cambios</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5537" />
+      <location filename="../Project/Project.py" line="5538" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation>Preguntar a 'make' si es necesario reconstruir.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5540" />
+      <location filename="../Project/Project.py" line="5541" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Comprobar Cambios&lt;/b&gt;&lt;p&gt;Pregunta a 'make si es necesario reconstruir el target configurado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5558" />
-      <source>Create SBOM File</source>
-      <translation>Crear Archivo SBOM</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5559" />
+      <source>Create SBOM File</source>
+      <translation>Crear Archivo SBOM</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5560" />
       <source>Create &amp;SBOM File</source>
       <translation>Crear Archivo &amp;SBOM</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5566" />
+      <location filename="../Project/Project.py" line="5567" />
       <source>Create a SBOM file of the project dependencies.</source>
       <translation>Crear un archivo SBOM de dependencias del proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5569" />
+      <location filename="../Project/Project.py" line="5570" />
       <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Crear Archivo SBOM&lt;/b&gt;&lt;p&gt;Esto permite la creación de un archivo SBOM de las dependencias del proyecto. Puede basarse en varias fuentes de input y se guardará como un archivo CycloneDX SBOM.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5580" />
-      <source>Clear Byte Code Caches</source>
-      <translation>Limpiar Cachés de Byte Code</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5581" />
+      <source>Clear Byte Code Caches</source>
+      <translation>Limpiar Cachés de Byte Code</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5582" />
       <source>Clear Byte Code &amp;Caches</source>
       <translation>Limpiar &amp;Cachés de Byte Code</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5588" />
+      <location filename="../Project/Project.py" line="5589" />
       <source>Clear the byte code caches of the project.</source>
       <translation>Limpiar las cachés de byte code del proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5591" />
+      <location filename="../Project/Project.py" line="5592" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Limpiar Cachés de Byte Code&lt;/b&gt;&lt;p&gt;Esto borra todos los directorios que contienen archivos de caché de byte code cache.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5607" />
-      <source>About Black</source>
-      <translation>Acerca de Black</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5608" />
+      <source>About Black</source>
+      <translation>Acerca de Black</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5609" />
       <source>&amp;Black</source>
       <translation>&amp;Black</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5614" />
+      <location filename="../Project/Project.py" line="5615" />
       <source>Show some information about 'Black'.</source>
       <translation>Mostrar información acerca de 'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5616" />
+      <location filename="../Project/Project.py" line="5617" />
       <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;Esto muestra información acerca de la herramienta 'Black' instalada.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5628" />
-      <source>Format Code</source>
-      <translation>Formatear Código</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5629" />
+      <source>Format Code</source>
+      <translation>Formatear Código</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5630" />
       <source>&amp;Format Code</source>
       <translation>&amp;Formatear Código</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5636" />
+      <location filename="../Project/Project.py" line="5637" />
       <source>Format the project sources with 'Black'.</source>
       <translation>Formatear las fuentes del proyecto con 'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5639" />
+      <location filename="../Project/Project.py" line="5640" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Formatear Código&lt;/b&gt;&lt;p&gt;Muestra un díalogo para introducir parámetros para ejecutar el formato y reformatea las fuentes del proyecto usando 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5651" />
-      <source>Check Code Formatting</source>
-      <translation>Comprobar Formato de Código</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5652" />
+      <source>Check Code Formatting</source>
+      <translation>Comprobar Formato de Código</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5653" />
       <source>&amp;Check Code Formatting</source>
       <translation>&amp;Comprobar Formato de Código</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5659" />
+      <location filename="../Project/Project.py" line="5660" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation>Comprobar si se necesita reformatear las fuentes del proyecto con 'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5664" />
+      <location filename="../Project/Project.py" line="5665" />
       <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Comprobar Formato de Código&lt;/b&gt;&lt;p&gt;Muestra un diálogo para introducir parámetros de comprobación de formato y lleva a cabo una comprobación, si las fuentes del proyecto necesitan ser reformateadas utilizando 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5677" />
-      <source>Code Formatting Diff</source>
-      <translation>Diff de Formato de Código</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5678" />
+      <source>Code Formatting Diff</source>
+      <translation>Diff de Formato de Código</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5679" />
       <source>Code Formatting &amp;Diff</source>
       <translation>&amp;Diff de Formato de Código</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5685" />
+      <location filename="../Project/Project.py" line="5686" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation>Generar un diff unificado de reformateo potencial de fuentes del proyecto con 'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5691" />
+      <location filename="../Project/Project.py" line="5692" />
       <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diff de Formato de Código&lt;/b&gt;&lt;p&gt;Muestra un diálogo para introducir parámetros de diff de formato y genera un diff unificado de reformateo de fuentes del proyecto utilizando 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5856" />
+      <location filename="../Project/Project.py" line="5857" />
+      <location filename="../Project/Project.py" line="5807" />
       <location filename="../Project/Project.py" line="5806" />
-      <location filename="../Project/Project.py" line="5805" />
+      <location filename="../Project/Project.py" line="5706" />
       <location filename="../Project/Project.py" line="5705" />
-      <location filename="../Project/Project.py" line="5704" />
       <source>Configure</source>
       <translation>Configurar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5712" />
+      <location filename="../Project/Project.py" line="5713" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation>Introducir los parámetros para el formateo de las fuentes del proyecto con 'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5717" />
+      <location filename="../Project/Project.py" line="5718" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Configurar&lt;/b&gt;&lt;p&gt;Muestra un diálogo para introducir los parámetros de formateo de las fuentes del proyecto con 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5733" />
-      <source>About isort</source>
-      <translation>Acerca de isort</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5734" />
+      <source>About isort</source>
+      <translation>Acerca de isort</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5735" />
       <source>&amp;isort</source>
       <translation>&amp;isort</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5740" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Show some information about 'isort'.</source>
       <translation>Mostrar información acerca de 'isort'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5742" />
+      <location filename="../Project/Project.py" line="5743" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;Esto mustra información acerade la herramienta instalada 'isort'.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5756" />
       <location filename="../Project/Project.py" line="5755" />
-      <location filename="../Project/Project.py" line="5754" />
       <source>Sort Imports</source>
       <translation>Ordenar Imports</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5762" />
+      <location filename="../Project/Project.py" line="5763" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation>Ordenar las declaraciones import de las fuentes del proyecto con 'isort'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5765" />
+      <location filename="../Project/Project.py" line="5766" />
       <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ordenar Imports&lt;/b&gt;&lt;p&gt;Esto muestra un diálogo para introducir parámetros para ejecutar la ordenación de imports y ordena las declaraciones import del proyecto utilizando 'isort'.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5780" />
       <location filename="../Project/Project.py" line="5779" />
-      <location filename="../Project/Project.py" line="5778" />
       <source>Imports Sorting Diff</source>
       <translation>Diff de Ordenacion de Imports</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5786" />
+      <location filename="../Project/Project.py" line="5787" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation>Generar un diff unificado de reordenación potencial de imports con 'isort' de las fuentes del proyecto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5792" />
+      <location filename="../Project/Project.py" line="5793" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diff de Ordenación de Imports&lt;/b&gt;&lt;p&gt;Esto muestra un diálogo para introducir los parámetros para ejecutar un diff de ordenación de imports y genera un diff unificado de cambios potenciales en las fuentes del proyecto utilizando 'isort'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5813" />
+      <location filename="../Project/Project.py" line="5814" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation>Introducir los parámetros para reordenar las declaraciones import en las fuentes del proyecto con 'isort'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5819" />
+      <location filename="../Project/Project.py" line="5820" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Configurar&lt;/b&gt;&lt;p&gt;Esto muestra un diálogo para introducir los parámetros para reordenar las declaraciones import de las fuetnes del proyecto con 'isort'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5835" />
-      <source>Install Project</source>
-      <translation>Instalar Proyecto</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5836" />
+      <source>Install Project</source>
+      <translation>Instalar Proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5837" />
       <source>&amp;Install Project</source>
       <translation>&amp;Instalar Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5843" />
+      <location filename="../Project/Project.py" line="5844" />
       <source>Install the project into the embedded environment.</source>
       <translation>Instalar el proyecto en el entorno embebido.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5846" />
+      <location filename="../Project/Project.py" line="5847" />
       <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
       <translation>&lt;b&gt;Instalar Proyecto&lt;/b&gt;&lt;p&gt;Esto instala el proyecto en el entorno virtual embebido en modo de edición (es decir, en modo de desarrollo).&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5857" />
+      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation>&amp;Configurar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5864" />
+      <location filename="../Project/Project.py" line="5865" />
       <source>Configure the embedded environment.</source>
       <translation>Configurar el entorno embebido.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5867" />
+      <location filename="../Project/Project.py" line="5868" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Configurar&lt;/b&gt;&lt;p&gt;Esto abre un diálogo para configurar el entorno virtual embebido del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5877" />
-      <source>Upgrade</source>
-      <translation>Actualizar</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5878" />
+      <source>Upgrade</source>
+      <translation>Actualizar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation>Act&amp;ualizar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5884" />
+      <location filename="../Project/Project.py" line="5885" />
       <source>Upgrade the embedded environment.</source>
       <translation>Actualizar el entorno embebido.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5886" />
+      <location filename="../Project/Project.py" line="5887" />
       <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Actualizar&lt;/b&gt;&lt;p&gt;Esto abre un dialogo para introducir los parametros para la actualizacion del entorno embebido del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5898" />
-      <source>Recreate</source>
-      <translation>Recrear</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5899" />
+      <source>Recreate</source>
+      <translation>Recrear</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5900" />
       <source>&amp;Recreate</source>
       <translation>&amp;Recrear</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5905" />
+      <location filename="../Project/Project.py" line="5906" />
       <source>Recreate the embedded environment.</source>
       <translation>Recrear el entorno embebido.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5907" />
+      <location filename="../Project/Project.py" line="5908" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Recrear&lt;/b&gt;&lt;p&gt;Esto abre un dialogo para introducir los parametros para recrear el entorno virtual embebido del proyecto. Se limpia previamente el entorno existente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5939" />
-      <source>&amp;Project</source>
-      <translation>&amp;Proyecto</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5940" />
+      <source>&amp;Project</source>
+      <translation>&amp;Proyecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5941" />
       <source>Open &amp;Recent Projects</source>
       <translation>Abrir Proyectos &amp;Recientes</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5942" />
-      <source>Session</source>
-      <translation>Sesión</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Debugger</source>
-      <translation>Depurador</translation>
+      <source>Session</source>
+      <translation>Sesión</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5944" />
+      <source>Debugger</source>
+      <translation>Depurador</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5945" />
       <source>Embedded Environment</source>
       <translation>Entorno Embebido</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5946" />
-      <source>Project-T&amp;ools</source>
-      <translation>Herramientas de Pr&amp;ojecto</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5947" />
+      <source>Project-T&amp;ools</source>
+      <translation>Herramientas de Pr&amp;ojecto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5948" />
       <source>&amp;Version Control</source>
       <translation>Control de &amp;Versiones</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5951" />
+      <location filename="../Project/Project.py" line="5952" />
       <source>Chec&amp;k</source>
       <translation>Veri&amp;ficar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5953" />
+      <location filename="../Project/Project.py" line="5954" />
       <source>Code &amp;Formatting</source>
       <translation>&amp;Formato de Código</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5955" />
-      <source>Sho&amp;w</source>
-      <translation>V&amp;er</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5956" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Diagramas</translation>
+      <source>Sho&amp;w</source>
+      <translation>V&amp;er</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5957" />
-      <source>Pac&amp;kagers</source>
-      <translation>Empa&amp;quetadores</translation>
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Diagramas</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5958" />
+      <source>Pac&amp;kagers</source>
+      <translation>Empa&amp;quetadores</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5959" />
       <source>Source &amp;Documentation</source>
       <translation>Origen de &amp;Documentación</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5960" />
-      <source>Make</source>
-      <translation>Make</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5961" />
+      <source>Make</source>
+      <translation>Make</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation>Otras Herramientas</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6123" />
-      <location filename="../Project/Project.py" line="6121" />
+      <location filename="../Project/Project.py" line="6124" />
+      <location filename="../Project/Project.py" line="6122" />
       <source>Project</source>
       <translation>Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6205" />
+      <location filename="../Project/Project.py" line="6206" />
       <source>&amp;Clear</source>
       <translation>&amp;Borrar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6402" />
-      <source>Search New Files</source>
-      <translation>Buscar nuevos archivos</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="6403" />
+      <source>Search New Files</source>
+      <translation>Buscar nuevos archivos</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6404" />
       <source>There were no new files found to be added.</source>
       <translation>No se han encontrado nuevos archivos para ser añadidos.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6564" />
-      <location filename="../Project/Project.py" line="6551" />
-      <source>Version Control System</source>
-      <translation>Sistema de control de versiones</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6552" />
-      <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El VCS seleccionado &lt;b&gt;{0}&lt;/b&gt; no ha sido encontrado.&lt;br&gt;Revirtiendo sobreescritura.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="6565" />
+      <location filename="../Project/Project.py" line="6552" />
+      <source>Version Control System</source>
+      <translation>Sistema de control de versiones</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6553" />
+      <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El VCS seleccionado &lt;b&gt;{0}&lt;/b&gt; no ha sido encontrado.&lt;br&gt;Revirtiendo sobreescritura.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6566" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El VCS seleccionado &lt;b&gt;{0}&lt;/b&gt; no ha sido encontrado.&lt;br&gt;Deshabilitando control de versiones.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6722" />
+      <location filename="../Project/Project.py" line="6723" />
       <source>Coverage Data</source>
       <translation>Datos de Cobertura</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6776" />
-      <location filename="../Project/Project.py" line="6723" />
+      <location filename="../Project/Project.py" line="6777" />
+      <location filename="../Project/Project.py" line="6724" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>No hay script principal definido para el proyecto actual. Abortando</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6735" />
-      <source>Code Coverage</source>
-      <translation>Cobertura de codigo</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="6736" />
+      <source>Code Coverage</source>
+      <translation>Cobertura de codigo</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation>Por favor seleccione un archivo de cobertura</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6789" />
+      <location filename="../Project/Project.py" line="6790" />
       <source>Please select a profile file</source>
       <translation>Por favor seleccione un archivo de profiling</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6841" />
+      <location filename="../Project/Project.py" line="6842" />
       <source>Include module names?</source>
       <translation>¿Incluir nombres de módulos?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6954" />
+      <location filename="../Project/Project.py" line="6955" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;PKGLIST&lt;/b&gt; ya existe.&lt;/p&gt;&lt;p&gt;¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7009" />
+      <location filename="../Project/Project.py" line="7010" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;PKGLIST&lt;/b&gt; no puede ser creado.&lt;/p&gt;&lt;p&gt;Causa: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7306" />
-      <location filename="../Project/Project.py" line="7262" />
-      <location filename="../Project/Project.py" line="7212" />
-      <location filename="../Project/Project.py" line="7201" />
-      <location filename="../Project/Project.py" line="7183" />
-      <location filename="../Project/Project.py" line="7150" />
-      <location filename="../Project/Project.py" line="7120" />
-      <location filename="../Project/Project.py" line="7092" />
-      <location filename="../Project/Project.py" line="7062" />
-      <location filename="../Project/Project.py" line="7047" />
-      <location filename="../Project/Project.py" line="7030" />
+      <location filename="../Project/Project.py" line="7321" />
+      <location filename="../Project/Project.py" line="7277" />
+      <location filename="../Project/Project.py" line="7227" />
+      <location filename="../Project/Project.py" line="7216" />
+      <location filename="../Project/Project.py" line="7198" />
+      <location filename="../Project/Project.py" line="7151" />
+      <location filename="../Project/Project.py" line="7121" />
+      <location filename="../Project/Project.py" line="7093" />
+      <location filename="../Project/Project.py" line="7063" />
+      <location filename="../Project/Project.py" line="7048" />
+      <location filename="../Project/Project.py" line="7031" />
       <source>Create Plugin Archive</source>
       <translation>Crear Archivo de Plugin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7031" />
+      <location filename="../Project/Project.py" line="7032" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation>No hay script principal definido para el proyecto actual. Abortando...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7048" />
+      <location filename="../Project/Project.py" line="7049" />
       <source>Select package lists:</source>
       <translation>Seleccionar package lists:</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7063" />
+      <location filename="../Project/Project.py" line="7064" />
       <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;No hay archivo de package list (PKGLIST*) disponible o seleccionado. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7071" />
-      <source>Creating plugin archives...</source>
-      <translation>Creando archivos de plugin...</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="7072" />
+      <source>Creating plugin archives...</source>
+      <translation>Creando archivos de plugin...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7073" />
       <source>Abort</source>
       <translation>Abortar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7075" />
+      <location filename="../Project/Project.py" line="7076" />
       <source>%v/%m Archives</source>
       <translation>%v/%m Archivos</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7093" />
+      <location filename="../Project/Project.py" line="7094" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo&lt;b&gt;{0}&lt;/b&gt; no puede ser leído.&lt;/p&gt;&lt;p&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7121" />
+      <location filename="../Project/Project.py" line="7122" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; todavía no está listo.&lt;/p&gt;&lt;p&gt;Por favor, revíselo y borre la línea '; initial_list' del encabezado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7151" />
+      <location filename="../Project/Project.py" line="7152" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de plugin de eric &lt;b&gt;{0}&lt;/b&gt; no ha podido ser creado.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7184" />
+      <location filename="../Project/Project.py" line="7199" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El fichero&lt;b&gt;{0}&lt;/b&gt; no ha podido ser almacenado en el archivo. Va a ser ignorado.&lt;/p&gt;&lt;p&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7217" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Los ficheros para archivo de plugin de eric se han creado con errores.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7213" />
+      <location filename="../Project/Project.py" line="7228" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Los ficheros para archivo de plugin de eric se han creado correctamente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7263" />
+      <location filename="../Project/Project.py" line="7278" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de plugin&lt;b&gt;{0}&lt;/b&gt; no puede ser leido.&lt;/p&gt;&lt;p&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7307" />
+      <location filename="../Project/Project.py" line="7322" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de plugin&lt;b&gt;{0}&lt;/b&gt; no puede ser leido.&lt;/p&gt;&lt;p&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7399" />
+      <location filename="../Project/Project.py" line="7414" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation>'Make' no está soportado para proyectos remotos. Abortando...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7447" />
+      <location filename="../Project/Project.py" line="7462" />
       <source>The make process did not start.</source>
       <translation>El proceso make no ha comenzado.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7493" />
+      <location filename="../Project/Project.py" line="7508" />
       <source>The make process crashed.</source>
       <translation>El proceso make ha fallado.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7501" />
+      <location filename="../Project/Project.py" line="7516" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Hay cambios que requieren que el target make configurado &lt;b&gt;{0}&lt;/b&gt; se reconstruya.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7506" />
+      <location filename="../Project/Project.py" line="7521" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Hay cambios que requieren que el target make por defecto se reconstruya.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7522" />
+      <location filename="../Project/Project.py" line="7537" />
       <source>The makefile contains errors.</source>
       <translation>El makefile contiene errores.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7960" />
+      <location filename="../Project/Project.py" line="7975" />
       <source>Interpreter Missing</source>
       <translation>No se encuentra el Intérprete</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7961" />
+      <location filename="../Project/Project.py" line="7976" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation>El intérprete configurado para el entorno embebido ya no existe. ¿Actualizar el entorno?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8042" />
+      <location filename="../Project/Project.py" line="8057" />
       <source>Open Remote Project</source>
       <translation>Abrir Proyecto Remoto</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="8088" />
       <location filename="../Project/Project.py" line="8073" />
-      <location filename="../Project/Project.py" line="8058" />
       <source>Save Remote Project</source>
       <translation>Guardar Proyecto Remoto</translation>
     </message>
@@ -93490,37 +93505,37 @@
       <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="8601" />
+      <location filename="../UI/UserInterface.py" line="8605" />
       <source>Upgrade available</source>
       <translation>Actualización disponible</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8602" />
+      <location filename="../UI/UserInterface.py" line="8606" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Una versión más moderna del package de &lt;b&gt;eric-ide&lt;/b&gt; se encuentra disponible en &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Instalado: {1}&lt;br/&gt;Disponible: &lt;b&gt;{2}&lt;/b&gt;Actualizar &lt;b&gt;eric-ide&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8647" />
+      <location filename="../UI/UserInterface.py" line="8651" />
       <source>First time usage</source>
       <translation>Usado por primera vez</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8648" />
+      <location filename="../UI/UserInterface.py" line="8652" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation>eric todavía no está configurado. El diálogo de configuración va a ser iniciado.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8670" />
+      <location filename="../UI/UserInterface.py" line="8674" />
       <source>Select Workspace Directory</source>
       <translation>Seleccionar Directorio para el Espacio de Trabajo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8838" />
+      <location filename="../UI/UserInterface.py" line="8842" />
       <source>Unsaved Data Detected</source>
       <translation>Detectados Datos sin Guardar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8839" />
+      <location filename="../UI/UserInterface.py" line="8843" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation>Algunos editores contienen datos sin guardar. ¿Desea guardarlos?</translation>
     </message>
--- a/src/eric7/i18n/eric7_fr.ts	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/i18n/eric7_fr.ts	Fri Nov 01 18:12:30 2024 +0100
@@ -2022,47 +2022,47 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="281" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="284" />
       <source>Formatting Failure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="282" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="285" />
       <source>&lt;p&gt;Formatting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="545" />
-      <source>would reformat</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../CodeFormatting/BlackFormattingDialog.py" line="548" />
+      <source>would reformat</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="551" />
       <source>reformatted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="553" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="556" />
       <source>unchanged</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="557" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="560" />
       <source>unmodified</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="561" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="564" />
       <source>ignored</source>
       <translation type="unfinished">ignoré</translation>
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="565" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="568" />
       <source>failed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="570" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="573" />
       <source>invalid status ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -4425,16 +4425,16 @@
   <context>
     <name>CircuitPythonUpdaterInterface</name>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="600" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="592" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="579" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="546" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="516" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="506" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="486" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="469" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="460" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="446" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="615" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="607" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="594" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="561" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="531" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="521" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="501" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="484" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="475" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="54" />
       <source>Install Modules</source>
       <translation type="unfinished" />
@@ -4470,10 +4470,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="385" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="375" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="365" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="346" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="396" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="355" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="95" />
       <source>Update Modules</source>
       <translation type="unfinished" />
@@ -4494,8 +4494,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="642" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="621" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="658" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="636" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="108" />
       <source>Uninstall Modules</source>
       <translation type="unfinished" />
@@ -4516,25 +4516,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="249" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="236" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="225" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="213" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="201" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="188" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="251" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="238" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="227" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="215" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="203" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="190" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="118" />
       <source>Add Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="284" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="269" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="287" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="271" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="119" />
       <source>Remove Bundles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="671" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="689" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="121" />
       <source>Show Local Cache Path</source>
       <translation type="unfinished" />
@@ -4555,132 +4555,132 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="189" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="191" />
       <source>Enter Bundle by 'User/Repo' Github String:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="202" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="204" />
       <source>&lt;p&gt;The bundle &lt;b&gt;{0}&lt;/b&gt; is already in the list.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="214" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="216" />
       <source>&lt;p&gt;The bundle string is invalid, expecting github URL or 'user/repository' string.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="226" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="228" />
       <source>&lt;p&gt;The bundle string is invalid. The repository doesn't exist (error code 404).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="237" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="239" />
       <source>&lt;p&gt;The bundle string is invalid. Is the repository a valid circup bundle?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="250" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="252" />
       <source>&lt;p&gt;Added bundle &lt;b&gt;{0}&lt;/b&gt; ({1}).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="270" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="272" />
       <source>Select the bundles to be removed:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="285" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="288" />
       <source>&lt;p&gt;These bundles were removed from the local bundles list.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="347" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="356" />
       <source>All modules are already up-to-date.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="366" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="377" />
       <source>&lt;p&gt;There was an error updating &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="387" />
       <source>&lt;p&gt;These modules were updated on the connected device.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="397" />
       <source>No modules could be updated.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="448" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="463" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation type="unfinished">Fichiers texte (*.txt);;Tous les fichiers (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="476" />
       <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not contain valid modules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="470" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="485" />
       <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="488" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="503" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished">Fichiers Python (*.py);;Tous les fichiers (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="507" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="522" />
       <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not contain valid import statements or does not import external modules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="517" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="532" />
       <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="547" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="562" />
       <source>&lt;p&gt;Ready to install these modules?{0}{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="552" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="567" />
       <source>Dependencies:</source>
       <translation type="unfinished">Dépendances :</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="580" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="595" />
       <source>&lt;p&gt;Installation complete. These modules were installed successfully.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="593" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="608" />
       <source>&lt;p&gt;Installation complete. No modules were installed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="601" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="616" />
       <source>&lt;p&gt;No modules installation is required.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="622" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="637" />
       <source>Select the modules/packages to be uninstalled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="643" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="659" />
       <source>&lt;p&gt;These modules/packages were uninstalled from the connected device.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="672" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="690" />
       <source>&lt;p&gt;&lt;b&gt;circup&lt;/b&gt; stores the downloaded CircuitPython bundles in this directory.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -4688,44 +4688,44 @@
   <context>
     <name>CircupFunctions</name>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="75" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="84" />
       <source>Find Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="76" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="85" />
       <source>&lt;p&gt;There was an error: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="148" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="109" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="157" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="118" />
       <source>Download Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="110" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="119" />
       <source>&lt;p&gt;There was a problem downloading the bundle. Please try again in a moment.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="149" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="158" />
       <source>&lt;p&gt;Missing file &lt;b&gt;boot_out.txt&lt;/b&gt; on the device: wrong path or drive corrupted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="243" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="232" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="252" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="241" />
       <source>Install Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="233" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="242" />
       <source>&lt;p&gt;The compiled version of module &lt;b&gt;{0}&lt;/b&gt; cannot be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="244" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="253" />
       <source>&lt;p&gt;The module name &lt;b&gt;{0}&lt;/b&gt; is not known.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -4849,17 +4849,17 @@
   <context>
     <name>Closehead</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="52" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54" />
       <source>Revision &lt;{0}&gt; closed.</source>
       <translation>Révision &lt;{0}&gt; fermée.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="56" />
       <source>Revisions &lt;{0}&gt; closed.</source>
       <translation>Révisiosn &lt;{0}&gt; fermées.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="61" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="63" />
       <source>Closing Heads</source>
       <translation type="unfinished" />
     </message>
@@ -6186,19 +6186,19 @@
       <translation>Pas de fichier trouvé (vérifier votre liste d'ignorés).</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1650" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1609" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1652" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1611" />
       <source>{0} - {1}</source>
       <comment>issue code, message</comment>
       <translation type="unfinished">{0} - {1}</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2995" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2997" />
       <source>Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2996" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2998" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
@@ -7469,7 +7469,7 @@
       <translation>Cloner l'environnement</translation>
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="713" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="715" />
       <location filename="../CondaInterface/CondaPackagesWidget.py" line="181" />
       <source>Delete Environment</source>
       <translation>Supprimer l'environnement</translation>
@@ -7516,22 +7516,22 @@
       <translation>Fichiers texte (*.txt);;Tous les fichiers (*)</translation>
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="686" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="687" />
       <source>Create Environment</source>
       <translation>Créer l'environnement</translation>
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="714" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="716" />
       <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'environment &lt;b&gt;{0}&lt;/b&gt;  doit il vraiment être suppimé ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="739" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="741" />
       <source>Edit Configuration</source>
       <translation>Éditer la configuration</translation>
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="740" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="742" />
       <source>The configuration file "{0}" does not exist or is not writable.</source>
       <translation>Le fichier de configuration "{0}" n'existe pas ou n'est pas accessible en écriture.</translation>
     </message>
@@ -8876,30 +8876,30 @@
   <context>
     <name>CycloneDX</name>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="190" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="182" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="151" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="115" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="192" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="184" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="153" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="117" />
       <source>CycloneDX - SBOM Creation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="118" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="120" />
       <source>&lt;p&gt;The configured input file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="152" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="154" />
       <source>&lt;p&gt;Some of the dependencies do not have pinned version numbers.&lt;ul&gt;{0}&lt;/ul&gt;The above listed packages will NOT be included in the generated CycloneDX SBOM file as version is a mandatory field.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="183" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="185" />
       <source>&lt;p&gt;The SBOM data was written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="191" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="193" />
       <source>&lt;p&gt;The SBOM file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9241,23 +9241,23 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1355" />
-      <location filename="../Debugger/DebugServer.py" line="1272" />
-      <location filename="../Debugger/DebugServer.py" line="1188" />
-      <location filename="../Debugger/DebugServer.py" line="1098" />
+      <location filename="../Debugger/DebugServer.py" line="1358" />
+      <location filename="../Debugger/DebugServer.py" line="1275" />
+      <location filename="../Debugger/DebugServer.py" line="1191" />
+      <location filename="../Debugger/DebugServer.py" line="1101" />
       <source>Start Debugger</source>
       <translation>Démarrage du débogueur</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1356" />
-      <location filename="../Debugger/DebugServer.py" line="1273" />
-      <location filename="../Debugger/DebugServer.py" line="1189" />
-      <location filename="../Debugger/DebugServer.py" line="1099" />
+      <location filename="../Debugger/DebugServer.py" line="1359" />
+      <location filename="../Debugger/DebugServer.py" line="1276" />
+      <location filename="../Debugger/DebugServer.py" line="1192" />
+      <location filename="../Debugger/DebugServer.py" line="1102" />
       <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1945" />
+      <location filename="../Debugger/DebugServer.py" line="1948" />
       <source>
 Not connected
 </source>
@@ -9266,35 +9266,35 @@
 </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2110" />
+      <location filename="../Debugger/DebugServer.py" line="2113" />
       <source>Passive debug connection received
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2119" />
+      <location filename="../Debugger/DebugServer.py" line="2122" />
       <source>Passive debug connection received while not in passive mode.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2125" />
+      <location filename="../Debugger/DebugServer.py" line="2128" />
       <source>Debug Client Connection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2126" />
+      <location filename="../Debugger/DebugServer.py" line="2129" />
       <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2141" />
+      <location filename="../Debugger/DebugServer.py" line="2144" />
       <source>Passive debug connection closed
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2272" />
+      <location filename="../Debugger/DebugServer.py" line="2275" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9307,7 +9307,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2374" />
+      <location filename="../Debugger/DebugUI.py" line="2380" />
       <location filename="../Debugger/DebugUI.py" line="234" />
       <source>Run Script</source>
       <translation>Lancer le script</translation>
@@ -9328,8 +9328,8 @@
       <translation>&lt;b&gt;Lancer le script&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et lancer le script sans le débogueur. Si le script a des modifications, elles doivent d'abord être enregistrées.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="2386" />
       <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="2374" />
       <location filename="../Debugger/DebugUI.py" line="255" />
       <source>Run Project</source>
       <translation>Lancer le projet</translation>
@@ -9430,7 +9430,7 @@
       <translation>&lt;b&gt;Profiler le projet&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et profiler le projet. Si des fichiers du projet ont été modifiés, ils doivent d'abord être enregistrés.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2567" />
+      <location filename="../Debugger/DebugUI.py" line="2573" />
       <location filename="../Debugger/DebugUI.py" line="365" />
       <source>Debug Script</source>
       <translation>Déboguer le script</translation>
@@ -9451,8 +9451,8 @@
       <translation>&lt;b&gt;Deboguer le script&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et donner la ligne qui correspond à la première instruction Python. Si le fichier a été modifié, il doit d'abord être sauvé.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="2579" />
       <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="2567" />
       <location filename="../Debugger/DebugUI.py" line="387" />
       <source>Debug Project</source>
       <translation>Déboguer le projet</translation>
@@ -9473,7 +9473,7 @@
       <translation>&lt;b&gt;Deboguer le projet&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et donner la ligne correspondant à la première instruction Python du script principal du projet en cours.Si des fichiers du projet ont été modifiés, ils doivent d'abord être sauvés.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2889" />
+      <location filename="../Debugger/DebugUI.py" line="2895" />
       <location filename="../Debugger/DebugUI.py" line="411" />
       <location filename="../Debugger/DebugUI.py" line="409" />
       <source>Restart</source>
@@ -9912,66 +9912,66 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1775" />
+      <location filename="../Debugger/DebugUI.py" line="1779" />
       <source>Watch Expression Error</source>
       <translation>Erreur dans l'expression</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1776" />
+      <location filename="../Debugger/DebugUI.py" line="1780" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1804" />
+      <location filename="../Debugger/DebugUI.py" line="1810" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'expression de contrôle '&lt;b&gt;{0}&lt;/b&gt;' existe déjà.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1809" />
-      <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;L'expression de contrôle '&lt;b&gt;{0}&lt;/b&gt;' pour la variable &lt;b&gt;{1}&lt;/b&gt; existe déjà.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="1815" />
+      <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;L'expression de contrôle '&lt;b&gt;{0}&lt;/b&gt;' pour la variable &lt;b&gt;{1}&lt;/b&gt; existe déjà.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="1821" />
       <source>Watch expression already exists</source>
       <translation>L'expression existe déjà</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1980" />
-      <location filename="../Debugger/DebugUI.py" line="1971" />
+      <location filename="../Debugger/DebugUI.py" line="1986" />
+      <location filename="../Debugger/DebugUI.py" line="1977" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1973" />
+      <location filename="../Debugger/DebugUI.py" line="1979" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2381" />
-      <location filename="../Debugger/DebugUI.py" line="2183" />
-      <location filename="../Debugger/DebugUI.py" line="1981" />
+      <location filename="../Debugger/DebugUI.py" line="2387" />
+      <location filename="../Debugger/DebugUI.py" line="2189" />
+      <location filename="../Debugger/DebugUI.py" line="1987" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>Il n'y a pas de script principal défini dans le projet en cours. Abandon</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2182" />
-      <location filename="../Debugger/DebugUI.py" line="2173" />
+      <location filename="../Debugger/DebugUI.py" line="2188" />
+      <location filename="../Debugger/DebugUI.py" line="2179" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2175" />
+      <location filename="../Debugger/DebugUI.py" line="2181" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2574" />
+      <location filename="../Debugger/DebugUI.py" line="2580" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>Il n'y a pas de script principal défini dans le projet en cours. Débogage impossible.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3246" />
+      <location filename="../Debugger/DebugUI.py" line="3252" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -10134,26 +10134,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="325" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="312" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="336" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="323" />
       <source>Add allowed host</source>
       <translation>Ajouter un hôte autorisé</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="349" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="313" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="360" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="324" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Entrer l'adresse IP d'un hôte autorisé</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="363" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="326" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="374" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="337" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'adresse entrée &lt;b&gt;{0}&lt;/b&gt; n'est pas une adresse IP v4 ou IP v6 valide. Annulation...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="362" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="348" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="373" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="359" />
       <source>Edit allowed host</source>
       <translation>Éditer un hôte autorisé</translation>
     </message>
@@ -10250,13 +10250,8 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debugger Type:</source>
-      <translation>Type de débogueur:</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Select the debugger type of the backend</source>
-      <translation>Sélectionne le type de débogueur</translation>
+      <source>Debug Server Port:</source>
+      <translation>Port du serveur de débogage:</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
@@ -10272,8 +10267,28 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debug Server Port:</source>
-      <translation>Port du serveur de débogage:</translation>
+      <source>Debugger Type:</source>
+      <translation>Type de débogueur:</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select the debugger type of the backend</source>
+      <translation>Sélectionne le type de débogueur</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select to not stop the debugger at the first executable line.</source>
+      <translation type="unfinished">Cocher pour ne pas arrêter le débogueur à la première ligne.</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>&lt;b&gt;Don't stop at first line&lt;/b&gt;&lt;p&gt;This prevents the debugger from stopping at the first executable line.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;Ne pas s'arrêter à la première ligne&lt;/b&gt;&lt;p&gt;Permet d'empêcher le débogueur de marquer l'arrêt à la première ligne exécutable.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Don't stop at first line</source>
+      <translation type="unfinished">Ne pas s'arrêter à la première ligne</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
@@ -10623,46 +10638,46 @@
   <context>
     <name>DebuggerInterfacePython</name>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="728" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="705" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="609" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="563" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="445" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="422" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="345" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="321" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="258" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="747" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="724" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="628" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="582" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="464" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="441" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="364" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="340" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="277" />
       <source>Start Debugger</source>
       <translation>Démarrage du débogueur</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="564" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="259" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="583" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="278" />
       <source>&lt;p&gt;No suitable Python3 environment configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="729" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="706" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="610" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="446" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="423" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="322" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="748" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="725" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="629" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="465" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="442" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="341" />
       <source>&lt;p&gt;The debugger backend could not be started.&lt;/p&gt;</source>
       <translation>&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="346" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="365" />
       <source>&lt;p&gt;Remote debugging is configured but no command for remote login was given.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1691" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1692" />
       <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;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -11672,8 +11687,8 @@
   <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="450" />
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="420" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421" />
       <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.ui" line="0" />
       <source>.desktop Wizard</source>
       <translation>Assistant .desktop</translation>
@@ -12030,8 +12045,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451" />
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="452" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="422" />
       <source>Only one of 'Only Show In' or  'Not Show In' allowed.</source>
       <translation type="unfinished" />
     </message>
@@ -15191,12 +15206,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="287" />
+      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288" />
       <source>Tab and Indent Override</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288" />
+      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="289" />
       <source>Shall the selected entries really be removed?</source>
       <translation type="unfinished" />
     </message>
@@ -15531,27 +15546,27 @@
       <translation>Importation des styles</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="803" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="805" />
       <source>Delete Sub-Style</source>
       <translation>Supprimer le sous-style</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="804" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="806" />
       <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Faut-il vraiment supprimer le sous-style &lt;b&gt;{0}&lt;/b&gt; ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="840" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="842" />
       <source>{0} - Copy</source>
       <translation>{0} - Copie</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="867" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="869" />
       <source>Reset Sub-Styles to Default</source>
       <translation>Réinitialiser les sous-styles</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="868" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="870" />
       <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Voulez-vous vraiment réinitialiser les sous-styles de &lt;b&gt;{0}&lt;/b&gt; aux valeurs par défaut ?&lt;/p&gt;</translation>
     </message>
@@ -21870,14 +21885,14 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="395" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="193" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1775" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1759" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1782" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1766" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="197" />
       <source>Erase Flash</source>
       <translation type="unfinished" />
@@ -21888,7 +21903,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1864" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1877" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="204" />
       <source>Flash Additional Firmware</source>
       <translation type="unfinished" />
@@ -21900,25 +21915,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="367" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="368" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="211" />
       <source>Restore Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="465" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="467" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="215" />
       <source>Show Chip ID</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="488" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="491" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="218" />
       <source>Show Flash ID</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="511" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="515" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="221" />
       <source>Show MAC Address</source>
       <translation type="unfinished" />
@@ -21939,139 +21954,139 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1863" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1820" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="366" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1876" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1830" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="367" />
       <source>'esptool write_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="396" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="425" />
       <source>unknown</source>
       <translation type="unfinished">inconnu</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="434" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="436" />
       <source>&lt;h4&gt;{0} Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="442" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="444" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="448" />
       <source>{0} Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="466" />
       <source>'esptool chip_id' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="487" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="490" />
       <source>'esptool flash_id' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="510" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="514" />
       <source>'esptool read_mac' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="641" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="646" />
       <source>Set Country</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="642" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="647" />
       <source>Reset Country</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="965" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="970" />
       <source>Error saving credentials: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="976" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="981" />
       <source>Error saving auto-connect script: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="980" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="985" />
       <source>Error modifying 'boot.py': {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1017" />
       <source>Error deleting credentials: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1096" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1101" />
       <source>unknown ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1475" />
-      <source>Active</source>
-      <translation type="unfinished">Actif</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1476" />
-      <source>Name</source>
-      <translation type="unfinished">Nom</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1477" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/EspDevices.py" line="1480" />
-      <source>Address Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1481" />
-      <source>Public</source>
-      <translation type="unfinished" />
+      <source>Active</source>
+      <translation type="unfinished">Actif</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/EspDevices.py" line="1481" />
+      <source>Name</source>
+      <translation type="unfinished">Nom</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1482" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1485" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1486" />
+      <source>Public</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1486" />
       <source>Random</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1484" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1489" />
       <source>MTU</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1484" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1489" />
       <source>{0} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1760" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1767" />
       <source>Shall the flash of the selected device really be erased?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1774" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1781" />
       <source>'esptool erase_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1821" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1831" />
       <source>Flash µPy/CPy Firmware</source>
       <translation type="unfinished" />
     </message>
@@ -22079,7 +22094,7 @@
   <context>
     <name>EspFirmwareSelectionDialog</name>
     <message>
-      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="68" />
+      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="77" />
       <source>Firmware Files (*.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -24370,22 +24385,22 @@
   <context>
     <name>FindFileFiltersEditDialog</name>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="109" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="111" />
       <source>Delete Selected Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="110" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="112" />
       <source>Shall the selected filters really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="127" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="129" />
       <source>Default Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="128" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="130" />
       <source>Do you really want to clear the list of defined file filters and replace it with the list of default filters?</source>
       <translation type="unfinished" />
     </message>
@@ -25075,7 +25090,7 @@
   <context>
     <name>FormattingDiffWidget</name>
     <message>
-      <location filename="../CodeFormatting/FormattingDiffWidget.py" line="63" />
+      <location filename="../CodeFormatting/FormattingDiffWidget.py" line="65" />
       <source>There is no difference.</source>
       <translation type="unfinished">Aucune différence.</translation>
     </message>
@@ -25175,7 +25190,7 @@
       <translation>Le processus git a terminé avec le code de sortie {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1715" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1747" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="219" />
       <source>The git process did not finish within 30s.</source>
       <translation>Le processus git n'a pas terminé dans les 30s.</translation>
@@ -25201,153 +25216,153 @@
       <translation>Création du dépot Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="308" />
       <source>Adding files to Git repository</source>
       <translation>Ajout de fichiers au dépot Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="316" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="321" />
       <source>Initial commit to Git repository</source>
       <translation>Commit initial au dépot Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="348" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="357" />
       <source>Cloning project from a Git repository</source>
       <translation>Clonage du projet à partir du dépot Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="448" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="460" />
       <source>Commit Changes</source>
       <translation>Commit des modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="449" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="461" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished">Ce commit affecte des fichiers qui ont des modifications non enregistrées. Faut-il poursuivre le commit ?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="518" />
       <source>Committing changes to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="584" />
       <source>Switch</source>
       <translation>Basculer de version</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="585" />
       <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Voulez-vous vraiment basculer vers &lt;b&gt;{0}&lt;/b&gt; ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="597" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="614" />
       <source>Synchronizing with the Git repository</source>
       <translation>En cours de synchronisation avec le dépot Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="664" />
       <source>Adding files/directories to the Git repository</source>
       <translation>Ajout en cours des fichiers/répertoires dans le dépot Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="721" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="743" />
       <source>Removing files/directories from the Git repository</source>
       <translation>Suppression en cours des fichiers/répertoires du dépot Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="814" />
       <source>Renaming {0}</source>
       <translation>Renommage {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="942" />
       <source>Unstage files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="968" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="957" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="996" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="985" />
       <source>Revert changes</source>
       <translation>Revenir avant les modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="958" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="986" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="969" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="997" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="975" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1003" />
       <source>Reverting changes</source>
       <translation>Revenir avant les modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1028" />
-      <source>Merging</source>
-      <translation type="unfinished">Fusion en cours</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1057" />
+      <source>Merging</source>
+      <translation type="unfinished">Fusion en cours</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1086" />
       <source>Main branch head</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1285" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1315" />
       <source>Git Command</source>
       <translation type="unfinished">Commande Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1396" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1426" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1430" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1406" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1436" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Étiquettes&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1412" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1442" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1417" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1447" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Auteur&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1422" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1457" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1462" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1437" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1467" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Sujet&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1443" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1473" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -25362,459 +25377,459 @@
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1553" />
       <source>Create {0} file</source>
       <translation>Créer le fichier {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1554" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; existe déjà. L'écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1574" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1621" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1604" />
       <source>Git Copy</source>
       <translation type="unfinished">Copie Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1575" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1605" />
       <source>&lt;p&gt;Copying the directory &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Échec de la copie du répertoire &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1592" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1622" />
       <source>&lt;p&gt;Copying the file &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Échec de la copie du fichier &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2845" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1717" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2920" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1749" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation>Impossible de lancer le processus {0}. Assurez-vous qu'il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1788" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1775" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1764" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1822" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1809" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1798" />
       <source>Git Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1823" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1842" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1877" />
       <source>Fetching from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1879" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918" />
       <source>Pulling from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1919" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1962" />
       <source>Pushing to a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1948" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1994" />
       <source>Committing failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1974" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2021" />
       <source>Aborting uncommitted/failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2008" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2056" />
       <source>Applying patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2043" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2091" />
       <source>Check patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2046" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2094" />
       <source>Apply patch files</source>
       <translation type="unfinished">Appliquer les fichiers patch</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2130" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2181" />
       <source>Tagging in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2443" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2488" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2510" />
       <source>Current Branch</source>
       <translation>Branche actuelle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2511" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La branche actuelle est &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2484" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2578" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2560" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2542" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2486" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2544" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2503" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2561" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2550" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2608" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2597" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2689" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2571" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2753" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2699" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2599" />
       <source>Git Bundle Files (*.bundle);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2580" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2627" />
       <source>List Bundle Heads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2687" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2751" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2697" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2660" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2775" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2746" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2816" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3025" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2861" />
+      <source>Git Bisect ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2919" />
+      <source>Process Generation Error</source>
+      <translation>Erreur du processus</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2965" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2948" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2930" />
+      <source>Create Bisect Replay File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2932" />
+      <source>Git Bisect Replay Files (*.replay)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2949" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2789" />
-      <source>Git Bisect ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2844" />
-      <source>Process Generation Error</source>
-      <translation>Erreur du processus</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2890" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2873" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2855" />
-      <source>Create Bisect Replay File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2857" />
-      <source>Git Bisect Replay Files (*.replay)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2874" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2891" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2966" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être écrit.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2911" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2940" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2913" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3015" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2988" />
       <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3013" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3299" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3121" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3378" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3200" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3181" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3260" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3182" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3261" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3323" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3402" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3384" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3417" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3497" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3442" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3468" />
-      <source>Copy Changesets (Cancel)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3549" />
+      <source>Copy Changesets (Cancel)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3630" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3763" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3844" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3673" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3845" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3802" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3751" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3674" />
+      <source>Select a stash (empty for latest stash):</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3708" />
+      <source>Restore Stash</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3721" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
-      <source>Select a stash (empty for latest stash):</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3669" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3627" />
-      <source>Restore Stash</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3683" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3720" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3801" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3790" />
       <source>Create Branch</source>
       <translation>Créer une branche</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3710" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3735" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>Creating branch</source>
       <translation>Création en cours de la branche</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3774" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3855" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3775" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3856" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3785" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3866" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3807" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3888" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3889" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3895" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3876" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3958" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3899" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3985" />
       <source>Verifying the integrity of the Git repository</source>
       <translation>Vérification en cours de l'intégrité du dépot Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3921" />
-      <source>Performing Repository Housekeeping</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3963" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistiques&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3965" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3970" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3976" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3982" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3987" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3993" />
-      <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3999" />
-      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011" />
+      <source>Performing Repository Housekeeping</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4054" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistiques&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4056" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4061" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4067" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4073" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4078" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4084" />
+      <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4090" />
+      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4095" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4102" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;Pas de statistique disponible.&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4080" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4172" />
       <source>Creating Archive</source>
       <translation>Création en cours de l'archive</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4120" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212" />
       <source>Add Submodule</source>
       <translation>Ajouter un sous-module</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4186" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4278" />
       <source>List Submodules</source>
       <translation>Lister les sous-modules</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4187" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4279" />
       <source>No submodules defined for the project.</source>
       <translation>Pas de sous-modules définis pour ce projet.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4200" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4292" />
       <source>All</source>
       <translation>Tous</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4204" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4296" />
       <source>Submodule Path</source>
       <translation>Chemin de sous-module</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4297" />
       <source>Select a submodule path:</source>
       <translation>Sélectionner un chemin de sous-module :</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4254" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4347" />
       <source>Initialize Submodules</source>
       <translation>Initialiser les sous-modules</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4382" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4357" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4318" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4453" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4414" />
       <source>Update Submodules</source>
       <translation>Mettre à jour les sous-modules</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4387" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4484" />
       <source>Synchronize Submodules</source>
       <translation>Synchroniser les sous-modules</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4441" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4539" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -32491,101 +32506,101 @@
       <translation type="unfinished">Impossible de lancer le processus {0}. Assurez-vous qu'il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="519" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="520" />
       <source>Add Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="537" />
-      <source>Lock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538" />
-      <source>Enter a reason for the lock:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="556" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538" />
+      <source>Lock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="539" />
+      <source>Enter a reason for the lock:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="557" />
       <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="580" />
-      <source>Unlock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="581" />
+      <source>Unlock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="582" />
       <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="616" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="599" />
-      <source>Move Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600" />
-      <source>Enter the new path for the worktree:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600" />
+      <source>Move Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="601" />
+      <source>Enter the new path for the worktree:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="618" />
       <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="637" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="638" />
       <source>Remove Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="640" />
       <source>Remove Worktree Forcefully</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="645" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="646" />
       <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="672" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="673" />
       <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="727" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="703" />
-      <source>Prune Worktree Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704" />
-      <source>Do you really want to prune the information of these worktrees?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="728" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704" />
+      <source>Prune Worktree Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="705" />
+      <source>Do you really want to prune the information of these worktrees?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="729" />
       <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="765" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="754" />
-      <source>Repair Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755" />
-      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755" />
+      <source>Repair Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="756" />
+      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="767" />
       <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -32702,12 +32717,12 @@
   <context>
     <name>Gpg</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="73" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="76" />
       <source>Verify Signatures</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="124" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="128" />
       <source>Sign Revision</source>
       <translation type="unfinished" />
     </message>
@@ -35302,456 +35317,456 @@
   <context>
     <name>Hg</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="300" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="303" />
       <source>Create project repository</source>
       <translation>Créer un répertoire projet</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="301" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="304" />
       <source>The project repository could not be created.</source>
       <translation>Le répertoire projet n'a pu être créé.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="334" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="338" />
       <source>Creating Mercurial repository</source>
       <translation>Création en cour d'un répertoire Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="353" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="359" />
       <source>Initial commit to Mercurial repository</source>
       <translation>Commit initial vers le dépot Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="405" />
       <source>Cloning project from a Mercurial repository</source>
       <translation>Clonage du projet à partir d'un dépot Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="503" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="516" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="504" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="517" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished">Ce commit affecte des fichiers qui ont des modifications non enregistrées. Faut-il poursuivre le commit ?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="566" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="580" />
       <source>Committing changes to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="661" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="679" />
       <source>Synchronizing with the Mercurial repository</source>
       <translation>Synchronisation en cours avec le dépot Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="692" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="713" />
       <source>Adding files/directories to the Mercurial repository</source>
       <translation>Ajouter des fichiers/dossier au dépot Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="751" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="774" />
       <source>Removing files/directories from the Mercurial repository</source>
       <translation>Suppression en cours des fichiers/dossiers à partir du dépot Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="829" />
       <source>Renaming {0}</source>
       <translation type="unfinished">Renommage {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="935" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="964" />
       <source>Tagging in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="981" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="970" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1011" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1000" />
       <source>Revert changes</source>
       <translation>Revenir avant les modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="971" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1001" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="982" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1012" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="988" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018" />
       <source>Reverting changes</source>
       <translation>Revenir avant les modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1033" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064" />
       <source>Merging</source>
       <translation>Fusion en cours</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1072" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1103" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1095" />
       <source>Re-Merge</source>
       <translation type="unfinished">Re-fusionner</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1065" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1096" />
       <source>Do you really want to re-merge these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1073" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1104" />
       <source>Do you really want to re-merge the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1076" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1108" />
       <source>Re-Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1098" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1131" />
       <source>Current branch tip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1280" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1314" />
       <source>Mercurial command</source>
       <translation>Commande Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1457" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1492" />
       <source>Copying {0}</source>
       <translation>Copie en cours {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1720" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1699" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1746" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737" />
       <source>Mercurial Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1721" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1759" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; n'a pas pu être lu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2391" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2380" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1797" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2457" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2446" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1835" />
       <source>Apply changegroups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1800" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1838" />
       <source>Pulling from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1845" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1884" />
       <source>Pushing to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1985" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2027" />
       <source>Marking as 'unresolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1987" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2029" />
       <source>Marking as 'resolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2009" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2051" />
       <source>Aborting uncommitted merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2032" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2075" />
       <source>Creating branch in the Mercurial repository</source>
       <translation>Création en cours d'une branche sur le dépot Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2040" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2086" />
       <source>Created new branch &lt;{0}&gt;.</source>
       <translation>Nouvelle branche créée &lt;{0}&gt;.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2095" />
       <source>Showing current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2136" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2184" />
       <source>Verifying the integrity of the Mercurial repository</source>
       <translation>Vérification en cours de l'intégrité du dépot Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2149" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2200" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2160" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2215" />
       <source>Showing aliases for remote repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2171" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230" />
       <source>Recovering from interrupted transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2182" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2245" />
       <source>Identifying project directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2227" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2291" />
       <source>Create .hgignore file</source>
       <translation>Créer un fichier .hgignore</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2292" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. L'écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2329" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2303" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2285" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2351" />
       <source>Create changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2287" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2353" />
       <source>Mercurial Changegroup Files (*.hg)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2304" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370" />
       <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2409" />
       <source>Preview changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2372" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2345" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2438" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2411" />
       <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2381" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2447" />
       <source>Shall the working directory be updated?</source>
       <translation>Faut-il mettre à jour le répertoire de travail ?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2413" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2479" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2433" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2501" />
       <source>Mercurial Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2527" />
       <source>Removing files from the Mercurial repository only</source>
       <translation>Supprimer les fichiers de dépot Mercurial uniquement</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2500" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2481" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2576" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2557" />
       <source>Backing out changeset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2482" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2558" />
       <source>No revision given. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2516" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2511" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2593" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2587" />
       <source>Rollback last transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2512" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2588" />
       <source>Are you sure you want to rollback the last transaction?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2579" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2657" />
       <source>Import Patch</source>
       <translation>Importer un patch</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2627" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2707" />
       <source>Export Patches</source>
       <translation>Exporter des patches</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2749" />
       <source>Change Phase</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2724" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2804" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2843" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2853" />
       <source>Copy Changesets (Stop)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2783" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2863" />
       <source>Copy Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2806" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2887" />
       <source>Create Unversioned Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2820" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2902" />
       <source>Delete All Backups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2821" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2903" />
       <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2912" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2892" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2881" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2994" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2963" />
       <source>Add Sub-repository</source>
       <translation>Ajouter un sous-dépot</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2951" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2882" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3033" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2964" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2893" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2975" />
       <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2969" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2913" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3051" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2995" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2968" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2950" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2936" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3050" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3032" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3018" />
       <source>Remove Sub-repositories</source>
       <translation>Supprimer un sous-répertoire</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2937" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3019" />
       <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3056" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3296" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3138" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3057" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3139" />
       <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3207" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3297" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3329" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3420" />
       <source>Mercurial Bookmark</source>
       <translation>Signet Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3437" />
       <source>Delete Bookmark</source>
       <translation>Supprimer le signet</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3347" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3438" />
       <source>Select the bookmark to be deleted:</source>
       <translation>Selectionner le signet à supprimer :</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3449" />
       <source>Delete Mercurial Bookmark</source>
       <translation>Supprimer le signet Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3382" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3476" />
       <source>Rename Mercurial Bookmark</source>
       <translation>Renommer le signet Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3421" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3518" />
       <source>Move Mercurial Bookmark</source>
       <translation>Déplacer le signet Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3502" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3600" />
       <source>Pull Bookmark</source>
       <translation>Récuperer le signet</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3503" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3601" />
       <source>Select the bookmark to be pulled:</source>
       <translation>Sélectionner le signet à récuperer:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3515" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3613" />
       <source>Pulling bookmark from a remote Mercurial repository</source>
       <translation>Récupérant le signet d'un dépôt Mercurial distant</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3641" />
       <source>Push Bookmark</source>
       <translation>Envoyer signet</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3542" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3642" />
       <source>Select the bookmark to be push:</source>
       <translation>Sélectionner le signet à envoyer:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3657" />
       <source>Pushing bookmark to a remote Mercurial repository</source>
       <translation>À envoyer le signet à un dépôt Mercurial distant</translation>
     </message>
@@ -43305,22 +43320,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="644" />
       <source>Delete Host Minimum Protocol</source>
       <translation>Supprimer le protocole minimum de l'hôte</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="643" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="645" />
       <source>&lt;p&gt;Shall the minimum protocol entry for host &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Faut il vraiment supprimer le protocole minimum de l'hôte &lt;b&gt;{0}&lt;/b&gt; ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="708" />
       <source>Edit User Configuration</source>
       <translation>Modifier la configuration utilisateur</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="707" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="709" />
       <source>You will loose all changes made in this dialog. Shall the data be saved first?</source>
       <translation>Vous allez perdre toutes les modifications faites dans cette fenêtre. Faut-il sauvegarder d'abord ?</translation>
     </message>
@@ -43440,22 +43455,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="79" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="108" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="164" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -49093,52 +49108,52 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="300" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="303" />
       <source>Imports Sorting Failure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="301" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="304" />
       <source>&lt;p&gt;Imports sorting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="352" />
-      <source>would resort</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../CodeFormatting/IsortFormattingDialog.py" line="355" />
+      <source>would resort</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="358" />
       <source>resorted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="360" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="363" />
       <source>unchanged</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="364" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="367" />
       <source>skipped</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="368" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="371" />
       <source>failed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="373" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="376" />
       <source>error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="374" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="377" />
       <source>Unsupported 'isort' action ({0}) given.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="381" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="384" />
       <source>invalid status ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -49275,7 +49290,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="682" />
+      <location filename="../JediInterface/JediServer.py" line="683" />
       <location filename="../JediInterface/JediServer.py" line="522" />
       <source>Rename Variable</source>
       <translation type="unfinished" />
@@ -49306,27 +49321,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="690" />
+      <location filename="../JediInterface/JediServer.py" line="692" />
       <source>Refactoring</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="691" />
+      <location filename="../JediInterface/JediServer.py" line="693" />
       <source>&lt;p&gt;The refactoring could not be performed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="749" />
+      <location filename="../JediInterface/JediServer.py" line="751" />
       <source>Apply Refactoring</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="750" />
+      <location filename="../JediInterface/JediServer.py" line="752" />
       <source>&lt;p&gt;The refactoring could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="786" />
+      <location filename="../JediInterface/JediServer.py" line="788" />
       <source>The data received from the Jedi server could not be decoded. Please report this issue with the received data to the eric bugs email address.
 Error: {0}
 Data:
@@ -49335,7 +49350,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="796" />
+      <location filename="../JediInterface/JediServer.py" line="798" />
       <source>An exception happened in the Jedi client. Please report it to the eric bugs email address.
 Exception: {0}
 Value: {1}
@@ -49344,25 +49359,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="838" />
+      <location filename="../JediInterface/JediServer.py" line="840" />
       <source>The jedi and/or parso library is not installed.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="843" />
+      <location filename="../JediInterface/JediServer.py" line="845" />
       <source>'{0}' is not supported because the configured interpreter could not be started.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="851" />
+      <location filename="../JediInterface/JediServer.py" line="853" />
       <source>'{0}' is not supported because no suitable interpreter is configured.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="953" />
+      <location filename="../JediInterface/JediServer.py" line="955" />
       <source>Jedi</source>
       <translation type="unfinished">Jedi</translation>
     </message>
@@ -49370,37 +49385,37 @@
   <context>
     <name>Largefiles</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="72" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="75" />
       <source>Convert Project - Converting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="88" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="92" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="89" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="93" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="100" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="104" />
       <source>Convert Project - Extracting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="145" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="150" />
       <source>Adding files to the Mercurial repository</source>
       <translation>Ajout en cours de fichiers au dépot Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="174" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="182" />
       <source>Pulling large files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="196" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="205" />
       <source>Verifying the integrity of large files</source>
       <translation>Vérification en cours de l'intégrité des gros fichiers</translation>
     </message>
@@ -50713,13 +50728,13 @@
     <name>Lexers</name>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="412" />
-      <location filename="../Preferences/__init__.py" line="596" />
+      <location filename="../Preferences/__init__.py" line="597" />
       <source>Python Files (*.py *.py3)</source>
       <translation>Fichiers Python (*.py *.py3)</translation>
     </message>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="505" />
-      <location filename="../Preferences/__init__.py" line="599" />
+      <location filename="../Preferences/__init__.py" line="600" />
       <source>Python3 Files (*.py)</source>
       <translation>Fichiers Python3 (*.py)</translation>
     </message>
@@ -52548,18 +52563,18 @@
   <context>
     <name>MicroPythonDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="356" />
+      <location filename="../MicroPython/Devices/__init__.py" line="369" />
       <source>Generic MicroPython Board</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="403" />
+      <location filename="../MicroPython/Devices/__init__.py" line="416" />
       <source>RP2040/RP2350 based</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="566" />
-      <location filename="../MicroPython/Devices/__init__.py" line="555" />
+      <location filename="../MicroPython/Devices/__init__.py" line="579" />
+      <location filename="../MicroPython/Devices/__init__.py" line="568" />
       <source>Unknown Device</source>
       <translation type="unfinished" />
     </message>
@@ -53956,343 +53971,343 @@
       <translation>&lt;p&gt;REPL ne peut être démarré.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="737" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="724" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="740" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="725" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="728" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="735" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1193" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1185" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="735" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1196" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1188" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="738" />
       <source>unknown</source>
       <translation>inconnu</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="796" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="787" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="799" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
       <source>Run Script</source>
       <translation>Lancer le script</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="779" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
       <source>There is no editor open. Abort...</source>
       <translation>Il n'y a pas d'éditeur ouvert. Annulation...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="788" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation>L'éditeur courant ne contient pas de script. Annulation...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="797" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="800" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut lancer le script.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="836" />
       <source>Start Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="834" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="837" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="849" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="852" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="866" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="869" />
       <source>Unsaved Chart Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="867" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="870" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="915" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="918" />
       <source>Start File Manager</source>
       <translation>Démarrer le gestionnaire de fichier</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="916" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="919" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le gestionnaire de fichier ne peut démarrer.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="939" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1012" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1015" />
       <source>Downloads</source>
       <translation type="unfinished">Téléchargements</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1059" />
-      <source>Show Version</source>
-      <translation>Montrer la version</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1062" />
-      <source>Show Implementation</source>
-      <translation>Montrer l'implémentation</translation>
+      <source>Show Version</source>
+      <translation>Montrer la version</translation>
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
+      <source>Show Implementation</source>
+      <translation>Montrer l'implémentation</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Board Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1268" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1271" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1073" />
       <source>Synchronize Time</source>
       <translation>Synchroniser le temps</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1073" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Show Device Time</source>
       <translation>Montrer l'horloge matériel</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
-      <source>Show Local Time</source>
-      <translation>Montrer l'horloge locale</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <source>Show Local Time</source>
+      <translation>Montrer l'horloge locale</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Time</source>
       <translation>Montrer l'horloge</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1082" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1085" />
       <source>Show Builtin Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1094" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1086" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1689" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1097" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1089" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1723" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1720" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1090" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1725" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1093" />
       <source>Install Packages</source>
       <translation type="unfinished">Installer des packages</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1497" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1501" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1103" />
       <source>Compile Python File</source>
       <translation>Compilier le fichier Python</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1523" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1514" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1104" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1527" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1518" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1107" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1125" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1128" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1132" />
-      <source>Show Documentation</source>
-      <translation>Montrer la documentation</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1135" />
+      <source>Show Documentation</source>
+      <translation>Montrer la documentation</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Convert To UF2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1136" />
-      <source>Flash UF2 Device</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1139" />
-      <source>Manage Unknown Devices</source>
+      <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
-      <source>Ignored Serial Devices</source>
-      <translation>Matériels séries ignorés</translation>
+      <source>Manage Unknown Devices</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
-      <source>Configure</source>
-      <translation>Configuration</translation>
+      <source>Ignored Serial Devices</source>
+      <translation>Matériels séries ignorés</translation>
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
+      <source>Configure</source>
+      <translation>Configuration</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Quit</source>
       <translation type="unfinished">Quitter</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1157" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1160" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1168" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1164" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1171" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1167" />
       <source>Device Version Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1172" />
       <source>No version information available.</source>
       <translation>Pas d'information de version disponible.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1202" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1215" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1206" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1218" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1209" />
       <source>Device Implementation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1207" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1210" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1216" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1219" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1272" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'horloge du matériel connecté a été synchronisée à l'horloge locale.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Date et heure matériel&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1299" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1302" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation>&lt;h3&gt;Date et heure matériel&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1315" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1318" />
       <source>Device Date and Time</source>
       <translation>Date et heure matériel</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1327" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
       <source>Local Date and Time</source>
       <translation>Date et heure locales</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Date et heure locales&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1369" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1352" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1372" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1355" />
       <source>Date and Time</source>
       <translation>Date et heure</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1353" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1356" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Date et heure locales&lt;/th&gt;&lt;th&gt;Date et heure matériel&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1370" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1373" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Date et heure locales&lt;/th&gt;&lt;th&gt;Date et heure matériel&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1394" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1397" />
       <source>Error handling device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1395" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1398" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il y a eu une erreur de communication avec le matériel connecté.&lt;/p&gt;&lt;p&gt;Méthode : {0}&lt;/p&gt;&lt;p&gt;Message : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1437" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1440" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1463" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1466" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation>Fichiers Python (*.py);;Tous les fichiers (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1473" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1476" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation>Le fichier Python &lt;b&gt;{0}&lt;/b&gt; n'existe pas. Annulation...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1483" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1486" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1515" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1519" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation>L'éditeur courant ne contient pas un fichier Python. Annulation...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1607" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1611" />
       <source>Add Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1608" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1657" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1709" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1714" />
       <source>Package '{0}' was installed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1724" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1729" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -56174,237 +56189,237 @@
   <context>
     <name>MultiProject</name>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="338" />
-      <location filename="../MultiProject/MultiProject.py" line="324" />
+      <location filename="../MultiProject/MultiProject.py" line="341" />
+      <location filename="../MultiProject/MultiProject.py" line="327" />
       <source>Copy Project</source>
       <translation>Copier projet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="325" />
+      <location filename="../MultiProject/MultiProject.py" line="328" />
       <source>Enter directory for the new project (must not exist already):</source>
       <translation>Entrer le dossier pour le nouveau projet (ne doit pas déjà exister) :</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="339" />
+      <location filename="../MultiProject/MultiProject.py" line="342" />
       <source>&lt;p&gt;The source project &lt;b&gt;{0}&lt;/b&gt; could not be copied to its destination &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le projet source &lt;b&gt;{0}&lt;/b&gt; n'a pas pu être copié vers sa destination &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="349" />
+      <location filename="../MultiProject/MultiProject.py" line="352" />
       <source>{0} - Copy</source>
       <translation>{0} - Copie</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="499" />
+      <location filename="../MultiProject/MultiProject.py" line="502" />
       <source>Open Multi Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="556" />
-      <location filename="../MultiProject/MultiProject.py" line="546" />
-      <location filename="../MultiProject/MultiProject.py" line="501" />
+      <location filename="../MultiProject/MultiProject.py" line="559" />
+      <location filename="../MultiProject/MultiProject.py" line="549" />
+      <location filename="../MultiProject/MultiProject.py" line="504" />
       <source>Multi Project Files (*.emj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="554" />
+      <location filename="../MultiProject/MultiProject.py" line="557" />
       <source>Save Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="570" />
+      <location filename="../MultiProject/MultiProject.py" line="573" />
       <source>Save File</source>
       <translation>Enregistrer fichier</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="571" />
+      <location filename="../MultiProject/MultiProject.py" line="574" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="598" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
       <source>Close Multiproject</source>
       <translation>Ferme le multi-projet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="599" />
+      <location filename="../MultiProject/MultiProject.py" line="602" />
       <source>The current multiproject has unsaved changes.</source>
       <translation>Le multi-projet courant a des modifications non-enregistrées.</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="653" />
+      <location filename="../MultiProject/MultiProject.py" line="656" />
       <source>New multiproject</source>
       <translation>Nouveau multi-projet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="655" />
+      <location filename="../MultiProject/MultiProject.py" line="658" />
       <source>&amp;New...</source>
       <translation>&amp;Nouveau...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="661" />
+      <location filename="../MultiProject/MultiProject.py" line="664" />
       <source>Generate a new multiproject</source>
       <translation>Génère un nouveau multi-projet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="663" />
+      <location filename="../MultiProject/MultiProject.py" line="666" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nouveau...&lt;/b&gt;&lt;p&gt;Ouvre une boite de dialogue pour saisir les informations du nouveau multi-projet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="673" />
+      <location filename="../MultiProject/MultiProject.py" line="676" />
       <source>Open multiproject</source>
       <translation>Ouvrir un multi-projet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="675" />
+      <location filename="../MultiProject/MultiProject.py" line="678" />
       <source>&amp;Open...</source>
       <translation>&amp;Ouvrir...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="681" />
+      <location filename="../MultiProject/MultiProject.py" line="684" />
       <source>Open an existing multiproject</source>
       <translation>Ouvre un multi-projet existant</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="683" />
+      <location filename="../MultiProject/MultiProject.py" line="686" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ouvre...&lt;/b&gt;&lt;p&gt;Ouvre un multi-projet existant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="689" />
+      <location filename="../MultiProject/MultiProject.py" line="692" />
       <source>Close multiproject</source>
       <translation>Ferme le multi-projet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="691" />
+      <location filename="../MultiProject/MultiProject.py" line="694" />
       <source>&amp;Close</source>
       <translation>&amp;Fermer</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="697" />
+      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>Close the current multiproject</source>
       <translation>Fermer le multi-projet en cours</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="699" />
+      <location filename="../MultiProject/MultiProject.py" line="702" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Fermer&lt;/b&gt;&lt;p&gt;Ferme le multi-projet en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="705" />
+      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>Save multiproject</source>
       <translation>Enregistre le multiprojet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="707" />
+      <location filename="../MultiProject/MultiProject.py" line="710" />
       <source>&amp;Save</source>
       <translation>&amp;Enregistrer</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="713" />
+      <location filename="../MultiProject/MultiProject.py" line="716" />
       <source>Save the current multiproject</source>
       <translation>Enregistre le multi-projet courant</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="715" />
+      <location filename="../MultiProject/MultiProject.py" line="718" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Enregistrer&lt;/b&gt;&lt;p&gt;Enregistre le multi-projet courant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="721" />
+      <location filename="../MultiProject/MultiProject.py" line="724" />
       <source>Save multiproject as</source>
       <translation>Enregistre le fichier multi-projet en tant que</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="723" />
+      <location filename="../MultiProject/MultiProject.py" line="726" />
       <source>Save &amp;as...</source>
       <translation>&amp;Enregistrer sous...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="730" />
-      <source>Save the current multiproject to a new file</source>
-      <translation>Enregistre le multi-projet courant dans un nouveau fichier</translation>
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="733" />
+      <source>Save the current multiproject to a new file</source>
+      <translation>Enregistre le multi-projet courant dans un nouveau fichier</translation>
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Enregistrer sous&lt;/b&gt;&lt;p&gt;Enregistre le multi-projet en cours dans un nouveau fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="742" />
+      <location filename="../MultiProject/MultiProject.py" line="745" />
       <source>Add project to multiproject</source>
       <translation>Ajoute un projet au multi-projet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
+      <location filename="../MultiProject/MultiProject.py" line="747" />
       <source>Add &amp;project...</source>
       <translation>Ajouter un &amp;projet...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="751" />
-      <source>Add a project to the current multiproject</source>
-      <translation>Ajoute un projet au multi-projet courant</translation>
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="754" />
+      <source>Add a project to the current multiproject</source>
+      <translation>Ajoute un projet au multi-projet courant</translation>
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="757" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ajouter un projet...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre permettant d'ajouter un projet au multi-projet courant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <location filename="../MultiProject/MultiProject.py" line="767" />
       <source>Multiproject properties</source>
       <translation>Propriétés du multi-projet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="766" />
+      <location filename="../MultiProject/MultiProject.py" line="769" />
       <source>&amp;Properties...</source>
       <translation>&amp;Propriétés...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="772" />
+      <location filename="../MultiProject/MultiProject.py" line="775" />
       <source>Show the multiproject properties</source>
       <translation>Affiche les propriétés du multi-projet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="774" />
+      <location filename="../MultiProject/MultiProject.py" line="777" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Propriétés...&lt;/b&gt;&lt;p&gt;Affiche une boite de dialogue pour éditer les propriétés du multi-projet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="786" />
-      <location filename="../MultiProject/MultiProject.py" line="784" />
+      <location filename="../MultiProject/MultiProject.py" line="789" />
+      <location filename="../MultiProject/MultiProject.py" line="787" />
       <source>Clear Out</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="793" />
-      <source>Remove all projects marked as removed</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="796" />
+      <source>Remove all projects marked as removed</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="799" />
       <source>&lt;b&gt;Clear Out...&lt;/b&gt;&lt;p&gt;This removes all projects marked as removed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="818" />
+      <location filename="../MultiProject/MultiProject.py" line="821" />
       <source>&amp;Multiproject</source>
       <translation>&amp;Multi-projet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
+      <location filename="../MultiProject/MultiProject.py" line="822" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation>Ouvre les multi-projets &amp;récents</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="862" />
-      <location filename="../MultiProject/MultiProject.py" line="860" />
+      <location filename="../MultiProject/MultiProject.py" line="865" />
+      <location filename="../MultiProject/MultiProject.py" line="863" />
       <source>Multiproject</source>
       <translation>Multi-projet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="918" />
+      <location filename="../MultiProject/MultiProject.py" line="921" />
       <source>&amp;Clear</source>
       <translation>&amp;Effacer</translation>
     </message>
@@ -59540,108 +59555,108 @@
       <translation>Installer des packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="562" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="583" />
+      <location filename="../PipInterface/Pip.py" line="585" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="618" />
-      <location filename="../PipInterface/Pip.py" line="608" />
+      <location filename="../PipInterface/Pip.py" line="620" />
+      <location filename="../PipInterface/Pip.py" line="610" />
       <source>Install 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="739" />
-      <location filename="../PipInterface/Pip.py" line="609" />
+      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="611" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="619" />
+      <location filename="../PipInterface/Pip.py" line="621" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="638" />
+      <location filename="../PipInterface/Pip.py" line="641" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="766" />
-      <location filename="../PipInterface/Pip.py" line="695" />
-      <location filename="../PipInterface/Pip.py" line="667" />
-      <location filename="../PipInterface/Pip.py" line="658" />
+      <location filename="../PipInterface/Pip.py" line="775" />
+      <location filename="../PipInterface/Pip.py" line="701" />
+      <location filename="../PipInterface/Pip.py" line="671" />
+      <location filename="../PipInterface/Pip.py" line="662" />
       <source>Uninstall Packages</source>
       <translation>Désinstaller les packages</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="767" />
-      <location filename="../PipInterface/Pip.py" line="696" />
-      <location filename="../PipInterface/Pip.py" line="659" />
+      <location filename="../PipInterface/Pip.py" line="776" />
+      <location filename="../PipInterface/Pip.py" line="702" />
+      <location filename="../PipInterface/Pip.py" line="663" />
       <source>Do you really want to uninstall these packages?</source>
       <translation>Voulez-vous vraiment désinstaller ces packages ?</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="712" />
+      <location filename="../PipInterface/Pip.py" line="719" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="738" />
+      <location filename="../PipInterface/Pip.py" line="758" />
+      <location filename="../PipInterface/Pip.py" line="747" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="750" />
+      <location filename="../PipInterface/Pip.py" line="759" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
+      <location filename="../PipInterface/Pip.py" line="786" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1185" />
+      <location filename="../PipInterface/Pip.py" line="1195" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1211" />
-      <location filename="../PipInterface/Pip.py" line="1202" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
+      <location filename="../PipInterface/Pip.py" line="1212" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1203" />
+      <location filename="../PipInterface/Pip.py" line="1213" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1235" />
-      <location filename="../PipInterface/Pip.py" line="1228" />
+      <location filename="../PipInterface/Pip.py" line="1245" />
+      <location filename="../PipInterface/Pip.py" line="1238" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1239" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1260" />
-      <location filename="../PipInterface/Pip.py" line="1252" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
+      <location filename="../PipInterface/Pip.py" line="1262" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1263" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -62225,18 +62240,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1904" />
+      <location filename="../Preferences/__init__.py" line="1905" />
       <source>Export Preferences</source>
       <translation>Export des préférences</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1933" />
-      <location filename="../Preferences/__init__.py" line="1906" />
+      <location filename="../Preferences/__init__.py" line="1934" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>Fichier propriétés (*.ini);;Tous les fichiers (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1931" />
+      <location filename="../Preferences/__init__.py" line="1932" />
       <source>Import Preferences</source>
       <translation>Import des préférences</translation>
     </message>
@@ -62257,7 +62272,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="509" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="520" />
       <source>Variable Name</source>
       <translation>Nom de variable</translation>
     </message>
@@ -62884,430 +62899,430 @@
   <context>
     <name>Project</name>
     <message>
-      <location filename="../Project/Project.py" line="187" />
+      <location filename="../Project/Project.py" line="188" />
       <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source>
       <translation>Fichiers Python3 (*.py *.py3);;Fichiers Python3 GUI (*.pyw *.pyw3);;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="250" />
-      <source>Add File Category</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="251" />
+      <source>Add File Category</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="252" />
       <source>&lt;p&gt;The file category &lt;b&gt;{0}&lt;/b&gt; has already been added. This attempt will be ignored.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="336" />
-      <source>PyQt5 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="337" />
-      <source>PyQt5 Console</source>
+      <source>PyQt5 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="338" />
-      <source>PyQt6 GUI</source>
+      <source>PyQt5 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="339" />
-      <source>PyQt6 Console</source>
+      <source>PyQt6 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="340" />
-      <source>Eric7 Plugin</source>
+      <source>PyQt6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="341" />
-      <source>Console</source>
-      <translation>Console</translation>
+      <source>Eric7 Plugin</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="342" />
+      <source>Console</source>
+      <translation>Console</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="343" />
       <source>Other</source>
       <translation>Autre</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="361" />
-      <source>PySide2 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="362" />
+      <source>PySide2 GUI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="363" />
       <source>PySide2 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="366" />
-      <source>PySide6 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="367" />
+      <source>PySide6 GUI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="465" />
-      <location filename="../Project/Project.py" line="453" />
-      <location filename="../Project/Project.py" line="442" />
-      <source>Registering Project Type</source>
-      <translation>Enregistrement du type de projet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="443" />
-      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Le langage de programmation &lt;b&gt;{0}&lt;/b&gt; n'est pas supporté (type project : {1}).&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="454" />
-      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Le type projet &lt;b&gt;{0}&lt;/b&gt; est déjà enregistré avec le langage de programmation&lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="466" />
+      <location filename="../Project/Project.py" line="454" />
+      <location filename="../Project/Project.py" line="443" />
+      <source>Registering Project Type</source>
+      <translation>Enregistrement du type de projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="444" />
+      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Le langage de programmation &lt;b&gt;{0}&lt;/b&gt; n'est pas supporté (type project : {1}).&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="455" />
+      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Le type projet &lt;b&gt;{0}&lt;/b&gt; est déjà enregistré avec le langage de programmation&lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="467" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le type projet &lt;b&gt;{0}&lt;/b&gt; est déjà enregistré.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="771" />
+      <location filename="../Project/Project.py" line="772" />
       <source>All Files (*)</source>
       <translation type="unfinished">Tous fichiers (*)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1332" />
+      <location filename="../Project/Project.py" line="1333" />
       <source>Read Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1578" />
-      <location filename="../Project/Project.py" line="1552" />
-      <location filename="../Project/Project.py" line="1516" />
-      <location filename="../Project/Project.py" line="1434" />
-      <location filename="../Project/Project.py" line="1395" />
-      <location filename="../Project/Project.py" line="1370" />
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1579" />
+      <location filename="../Project/Project.py" line="1553" />
+      <location filename="../Project/Project.py" line="1517" />
+      <location filename="../Project/Project.py" line="1435" />
+      <location filename="../Project/Project.py" line="1396" />
+      <location filename="../Project/Project.py" line="1371" />
+      <location filename="../Project/Project.py" line="1334" />
       <source>Please save the project first.</source>
       <translation>Prière d'enregistrer votre projet d'abord.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1369" />
+      <location filename="../Project/Project.py" line="1370" />
       <source>Save Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1411" />
-      <location filename="../Project/Project.py" line="1394" />
+      <location filename="../Project/Project.py" line="1412" />
+      <location filename="../Project/Project.py" line="1395" />
       <source>Delete Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1401" />
+      <location filename="../Project/Project.py" line="1402" />
       <source>Delete Remote Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1420" />
+      <location filename="../Project/Project.py" line="1421" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1433" />
+      <location filename="../Project/Project.py" line="1434" />
       <source>Read Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1515" />
+      <location filename="../Project/Project.py" line="1516" />
       <source>Read Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1551" />
+      <location filename="../Project/Project.py" line="1552" />
       <source>Save Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1594" />
-      <location filename="../Project/Project.py" line="1577" />
+      <location filename="../Project/Project.py" line="1595" />
+      <location filename="../Project/Project.py" line="1578" />
       <source>Delete Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1584" />
+      <location filename="../Project/Project.py" line="1585" />
       <source>Delete Remote Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1603" />
+      <location filename="../Project/Project.py" line="1604" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1774" />
+      <location filename="../Project/Project.py" line="1777" />
       <source>Add Language</source>
       <translation>Ajouter une langue</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1775" />
+      <location filename="../Project/Project.py" line="1778" />
       <source>You have to specify a translation pattern first.</source>
       <translation>Vous devez d'abord spécifier un pattern de traduction.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1916" />
+      <location filename="../Project/Project.py" line="1919" />
       <source>Delete Translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1943" />
-      <location filename="../Project/Project.py" line="1917" />
+      <location filename="../Project/Project.py" line="1946" />
+      <location filename="../Project/Project.py" line="1920" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier de traduction sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être supprimé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1942" />
+      <location filename="../Project/Project.py" line="1945" />
       <source>Delete translation</source>
       <translation>Supprimer la traduction</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2093" />
-      <location filename="../Project/Project.py" line="2076" />
+      <location filename="../Project/Project.py" line="2098" />
+      <location filename="../Project/Project.py" line="2081" />
       <source>Add File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2195" />
-      <location filename="../Project/Project.py" line="2077" />
+      <location filename="../Project/Project.py" line="2200" />
+      <location filename="../Project/Project.py" line="2082" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; existe déjà.&lt;/p&gt;&lt;p&gt;L'écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2094" />
+      <location filename="../Project/Project.py" line="2099" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être ajouté à &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Raison : {2}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2106" />
+      <location filename="../Project/Project.py" line="2111" />
       <source>Add file</source>
       <translation>Ajouter un fichier</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2289" />
-      <location filename="../Project/Project.py" line="2107" />
+      <location filename="../Project/Project.py" line="2296" />
+      <location filename="../Project/Project.py" line="2112" />
       <source>The target directory must not be empty.</source>
       <translation>Le répertoire cible ne doit pas être vide.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2194" />
-      <location filename="../Project/Project.py" line="2167" />
-      <location filename="../Project/Project.py" line="2147" />
+      <location filename="../Project/Project.py" line="2199" />
+      <location filename="../Project/Project.py" line="2172" />
+      <location filename="../Project/Project.py" line="2152" />
       <source>Add Directory</source>
       <translation type="unfinished">Ajouter un répertoire</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2148" />
+      <location filename="../Project/Project.py" line="2153" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le répertoire source ne contient aucun fichier correspondant à la catégorie sélectionnée.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2168" />
+      <location filename="../Project/Project.py" line="2173" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le répertoire cible &lt;b&gt;{0}&lt;/b&gt; ne peut être créé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2300" />
-      <location filename="../Project/Project.py" line="2288" />
+      <location filename="../Project/Project.py" line="2307" />
+      <location filename="../Project/Project.py" line="2295" />
       <source>Add directory</source>
       <translation>Ajouter un répertoire</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2301" />
+      <location filename="../Project/Project.py" line="2308" />
       <source>The source directory must not be empty.</source>
       <translation>Le répertoire source ne doit pas être vide.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2415" />
-      <location filename="../Project/Project.py" line="2397" />
+      <location filename="../Project/Project.py" line="2422" />
+      <location filename="../Project/Project.py" line="2404" />
+      <location filename="../Project/Project.py" line="2388" />
       <location filename="../Project/Project.py" line="2381" />
-      <location filename="../Project/Project.py" line="2374" />
       <source>Rename File</source>
       <translation>Renommer le fichier</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8055" />
-      <location filename="../Project/Project.py" line="3898" />
-      <location filename="../Project/Project.py" line="2398" />
+      <location filename="../Project/Project.py" line="8089" />
+      <location filename="../Project/Project.py" line="3909" />
+      <location filename="../Project/Project.py" line="2405" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2416" />
+      <location filename="../Project/Project.py" line="2423" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut pas être renommé.&lt;br /&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2683" />
+      <location filename="../Project/Project.py" line="2690" />
       <source>Delete File</source>
       <translation type="unfinished">Supprimer le fichier</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2684" />
+      <location filename="../Project/Project.py" line="2691" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être supprimé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2712" />
+      <location filename="../Project/Project.py" line="2719" />
       <source>Delete Directory</source>
       <translation type="unfinished">Supprimer le répertoire</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2713" />
+      <location filename="../Project/Project.py" line="2720" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le répertoire sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être supprimé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2846" />
+      <location filename="../Project/Project.py" line="2853" />
       <source>Create project directory</source>
       <translation>Création d'un répertoire projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2847" />
+      <location filename="../Project/Project.py" line="2854" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le répertoire projet &lt;b&gt;{0}&lt;/b&gt; n'a pas pu être créé.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3671" />
-      <location filename="../Project/Project.py" line="2947" />
+      <location filename="../Project/Project.py" line="3682" />
+      <location filename="../Project/Project.py" line="2954" />
       <source>Create project management directory</source>
       <translation>Créer un répertoire de gestion de projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3672" />
-      <location filename="../Project/Project.py" line="2948" />
+      <location filename="../Project/Project.py" line="3683" />
+      <location filename="../Project/Project.py" line="2955" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le répertoire projet &lt;b&gt;{0}&lt;/b&gt; n'est pas accessible en écriture.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2988" />
+      <location filename="../Project/Project.py" line="2995" />
       <source>Create main script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2989" />
+      <location filename="../Project/Project.py" line="2996" />
       <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3454" />
-      <location filename="../Project/Project.py" line="3013" />
+      <location filename="../Project/Project.py" line="3463" />
+      <location filename="../Project/Project.py" line="3020" />
       <source>Create Makefile</source>
       <translation>Créer un Makefile</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3455" />
-      <location filename="../Project/Project.py" line="3014" />
+      <location filename="../Project/Project.py" line="3464" />
+      <location filename="../Project/Project.py" line="3021" />
       <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le makefile &lt;b&gt;{0}&lt;/b&gt; n'a pas pu être créé.&lt;br/&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3701" />
-      <location filename="../Project/Project.py" line="3164" />
-      <location filename="../Project/Project.py" line="3135" />
-      <location filename="../Project/Project.py" line="3103" />
-      <location filename="../Project/Project.py" line="3087" />
-      <location filename="../Project/Project.py" line="3062" />
-      <location filename="../Project/Project.py" line="3024" />
+      <location filename="../Project/Project.py" line="3712" />
+      <location filename="../Project/Project.py" line="3173" />
+      <location filename="../Project/Project.py" line="3144" />
+      <location filename="../Project/Project.py" line="3112" />
+      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="3069" />
+      <location filename="../Project/Project.py" line="3031" />
       <source>New Project</source>
       <translation>Nouveau projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3025" />
+      <location filename="../Project/Project.py" line="3032" />
       <source>Add existing files to the project?</source>
       <translation>Ajouter des fichiers existant au projet ?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3702" />
-      <location filename="../Project/Project.py" line="3063" />
+      <location filename="../Project/Project.py" line="3713" />
+      <location filename="../Project/Project.py" line="3070" />
       <source>Select Version Control System</source>
       <translation>Sélectionner un système de contrôle de version</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3165" />
-      <location filename="../Project/Project.py" line="3088" />
+      <location filename="../Project/Project.py" line="3174" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Would you like to edit the VCS command options?</source>
       <translation>Voulez-vous éditer les options de commande VCS ?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3104" />
+      <location filename="../Project/Project.py" line="3113" />
       <source>Shall the project file be added to the repository?</source>
       <translation>Le fichier projet doit-il être ajouté au référentiel?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3141" />
-      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3150" />
+      <location filename="../Project/Project.py" line="3139" />
       <source>None</source>
       <translation>Auncun</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3145" />
       <source>Select version control system for the project</source>
       <translation>Sélectionner un système de contrôle de version (VCS) pour le projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3347" />
+      <location filename="../Project/Project.py" line="3356" />
       <source>Translation Pattern</source>
       <translation>Pattern de traduction</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3348" />
+      <location filename="../Project/Project.py" line="3357" />
       <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
       <translation>Entrer le pattern pour les fichiers de traduction (utiliser la balise '%language%' à la place de la langue à utiliser):</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3650" />
+      <location filename="../Project/Project.py" line="3661" />
       <source>Open Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8041" />
-      <location filename="../Project/Project.py" line="8035" />
-      <location filename="../Project/Project.py" line="8025" />
-      <location filename="../Project/Project.py" line="3883" />
-      <location filename="../Project/Project.py" line="3873" />
-      <location filename="../Project/Project.py" line="3652" />
+      <location filename="../Project/Project.py" line="8075" />
+      <location filename="../Project/Project.py" line="8069" />
+      <location filename="../Project/Project.py" line="8059" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3884" />
+      <location filename="../Project/Project.py" line="3663" />
       <source>Project Files (*.epj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3897" />
-      <location filename="../Project/Project.py" line="3881" />
+      <location filename="../Project/Project.py" line="3908" />
+      <location filename="../Project/Project.py" line="3892" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3936" />
+      <location filename="../Project/Project.py" line="3947" />
       <source>Close Project</source>
       <translation>Fermer le projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3937" />
+      <location filename="../Project/Project.py" line="3948" />
       <source>The current project has unsaved changes.</source>
       <translation>Le projet courant a des modifications non enregistrées.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4137" />
-      <location filename="../Project/Project.py" line="4101" />
+      <location filename="../Project/Project.py" line="4148" />
+      <location filename="../Project/Project.py" line="4112" />
       <source>Syntax Errors Detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4138" />
-      <location filename="../Project/Project.py" line="4102" />
+      <location filename="../Project/Project.py" line="4149" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>Le projet contient %n fichier avec des erreurs de syntaxe.</numerusform>
@@ -63315,1268 +63330,1268 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4796" />
+      <location filename="../Project/Project.py" line="4807" />
       <source>New project</source>
       <translation>Nouveau projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4798" />
+      <location filename="../Project/Project.py" line="4809" />
       <source>&amp;New...</source>
       <translation>&amp;Nouveau...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4804" />
+      <location filename="../Project/Project.py" line="4815" />
       <source>Generate a new project</source>
       <translation>Génerer un nouveau projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4806" />
+      <location filename="../Project/Project.py" line="4817" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nouveau...&lt;/b&gt;&lt;p&gt;Ouvre une boite de dialogue pour entrer les paramètres d'un nouveau projet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4816" />
+      <location filename="../Project/Project.py" line="4827" />
       <source>Open project</source>
       <translation>Ouvir un projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4818" />
+      <location filename="../Project/Project.py" line="4829" />
       <source>&amp;Open...</source>
       <translation>&amp;Ouvrir...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4824" />
+      <location filename="../Project/Project.py" line="4835" />
       <source>Open an existing project</source>
       <translation>Ouvrir un projet existant</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4826" />
+      <location filename="../Project/Project.py" line="4837" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ouvrir...&lt;/b&gt;&lt;p&gt;Ouvre un projet existant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4832" />
+      <location filename="../Project/Project.py" line="4843" />
       <source>Open remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4834" />
+      <location filename="../Project/Project.py" line="4845" />
       <source>Open (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4840" />
-      <source>Open an existing remote project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4842" />
-      <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4851" />
-      <source>Reload project</source>
+      <source>Open an existing remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4853" />
+      <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4862" />
+      <source>Reload project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4864" />
       <source>Re&amp;load</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4859" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>Reload the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4861" />
+      <location filename="../Project/Project.py" line="4872" />
       <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4867" />
+      <location filename="../Project/Project.py" line="4878" />
       <source>Close project</source>
       <translation>Fermer le projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4869" />
+      <location filename="../Project/Project.py" line="4880" />
       <source>&amp;Close</source>
       <translation>&amp;Fermer</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4875" />
+      <location filename="../Project/Project.py" line="4886" />
       <source>Close the current project</source>
       <translation>Fermer le projet en cours</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4877" />
+      <location filename="../Project/Project.py" line="4888" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Fermer&lt;/b&gt;&lt;p&gt;Ferme le projet en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4883" />
+      <location filename="../Project/Project.py" line="4894" />
       <source>Save project</source>
       <translation>Enregistrer le projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5180" />
-      <location filename="../Project/Project.py" line="4885" />
+      <location filename="../Project/Project.py" line="5191" />
+      <location filename="../Project/Project.py" line="4896" />
       <source>&amp;Save</source>
       <translation>&amp;Enregistrer</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4891" />
+      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation>Enregistre le projet courant</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4893" />
+      <location filename="../Project/Project.py" line="4904" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Enregistrer&lt;/b&gt;&lt;p&gt;Enregistre le projet en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4899" />
+      <location filename="../Project/Project.py" line="4910" />
       <source>Save project as</source>
       <translation>Enregistrer le projet sous</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4901" />
+      <location filename="../Project/Project.py" line="4912" />
       <source>Save &amp;as...</source>
       <translation>&amp;Enregistrer sous...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4907" />
-      <source>Save the current project to a new file</source>
-      <translation>Enregistre le projet en cours dans un nouveau fichier</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4909" />
-      <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Enregistrer sous&lt;/b&gt;&lt;p&gt;Enregistre le projet en cours dans un nouveau fichier.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4918" />
-      <source>Save project as (Remote)</source>
-      <translation type="unfinished" />
+      <source>Save the current project to a new file</source>
+      <translation>Enregistre le projet en cours dans un nouveau fichier</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4920" />
+      <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Enregistrer sous&lt;/b&gt;&lt;p&gt;Enregistre le projet en cours dans un nouveau fichier.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4929" />
+      <source>Save project as (Remote)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4931" />
       <source>Save as (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4927" />
+      <location filename="../Project/Project.py" line="4938" />
       <source>Save the current project to a new remote file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4930" />
+      <location filename="../Project/Project.py" line="4941" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4946" />
+      <location filename="../Project/Project.py" line="4957" />
       <source>Add files to project</source>
       <translation>Ajouter des fichiers au projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4948" />
+      <location filename="../Project/Project.py" line="4959" />
       <source>Add &amp;files...</source>
       <translation>Ajouter des &amp;fichiers...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4954" />
+      <location filename="../Project/Project.py" line="4965" />
       <source>Add files to the current project</source>
       <translation>Ajouter des fichiers au projet courant</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4956" />
-      <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Ajouter des fichiers...&lt;/b&gt;&lt;p&gt;Ouvre une boite de dialogue pour ajouter des fichiers au projet courant. La position pour l'insertion est déterminée par l'extension du fichier.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4967" />
+      <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Ajouter des fichiers...&lt;/b&gt;&lt;p&gt;Ouvre une boite de dialogue pour ajouter des fichiers au projet courant. La position pour l'insertion est déterminée par l'extension du fichier.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4978" />
       <source>Add directory to project</source>
       <translation>Ajouter un répertoire au projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4969" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Add directory...</source>
       <translation>Ajouter un répertoire...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4976" />
+      <location filename="../Project/Project.py" line="4987" />
       <source>Add a directory to the current project</source>
       <translation>Ajouter un répertoire au projet courant</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4979" />
+      <location filename="../Project/Project.py" line="4990" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ajouter un répertoire...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre pour ajouter un répertoire au projet courant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4989" />
+      <location filename="../Project/Project.py" line="5000" />
       <source>Add translation to project</source>
       <translation>Ajouter une traduction au projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4991" />
+      <location filename="../Project/Project.py" line="5002" />
       <source>Add &amp;translation...</source>
       <translation>Ajouter une &amp;traduction...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4998" />
+      <location filename="../Project/Project.py" line="5009" />
       <source>Add a translation to the current project</source>
       <translation>Ajoute une traduction au projet en cours</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5001" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Ajouter une traduction...&lt;/b&gt;&lt;p&gt;Ouvre une boite de dialogue pour ajouter une traduction au projet courant.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5011" />
-      <source>Search new files</source>
-      <translation>Rechercher des nouveaux fichiers</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5012" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Ajouter une traduction...&lt;/b&gt;&lt;p&gt;Ouvre une boite de dialogue pour ajouter une traduction au projet courant.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5022" />
+      <source>Search new files</source>
+      <translation>Rechercher des nouveaux fichiers</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation>Re&amp;chercher des nouveaux fichiers...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5018" />
+      <location filename="../Project/Project.py" line="5029" />
       <source>Search new files in the project directory.</source>
       <translation>Recherche des nouveaux fichiers dans le répertoire du projet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5020" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5030" />
-      <source>Search Project File</source>
-      <translation>Chercher un fichier projet</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5031" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5041" />
+      <source>Search Project File</source>
+      <translation>Chercher un fichier projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5042" />
       <source>Search Project File...</source>
       <translation>Chercher un fichier projet...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5032" />
+      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation>Alt+Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5037" />
+      <location filename="../Project/Project.py" line="5048" />
       <source>Search for a file in the project list of files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5039" />
-      <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5048" />
-      <source>Project properties</source>
-      <translation>Propriétés du projet</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5050" />
+      <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5059" />
+      <source>Project properties</source>
+      <translation>Propriétés du projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5061" />
       <source>&amp;Properties...</source>
       <translation>&amp;Propriétés...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5056" />
-      <source>Show the project properties</source>
-      <translation>Affiche les propriétés du projet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5058" />
-      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Propriétés...&lt;/b&gt;&lt;p&gt;Affiche une boite de dialogue pour éditer les propriétés du projet.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5067" />
-      <source>User project properties</source>
-      <translation>Propriétés utilisateur du projet</translation>
+      <source>Show the project properties</source>
+      <translation>Affiche les propriétés du projet</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5069" />
+      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Propriétés...&lt;/b&gt;&lt;p&gt;Affiche une boite de dialogue pour éditer les propriétés du projet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5078" />
+      <source>User project properties</source>
+      <translation>Propriétés utilisateur du projet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5080" />
       <source>&amp;User Properties...</source>
       <translation>Propriétés &amp;Utilisateur...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5076" />
+      <location filename="../Project/Project.py" line="5087" />
       <source>Show the user specific project properties</source>
       <translation>Afficher le propriétés utilisateurs spécifiques au projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5079" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Propriétés utilisateur...&lt;/b&gt;&lt;p&gt;Affiche une fenêtre permettant d'éditer les propriétés du projet spécifiques à l'utilisateur.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5089" />
-      <source>Filetype Associations</source>
-      <translation>Association des types de fichiers</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5090" />
-      <source>Filetype Associations...</source>
-      <translation>Association des types de fichiers...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5097" />
-      <source>Show the project file type associations</source>
-      <translation type="unfinished" />
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Propriétés utilisateur...&lt;/b&gt;&lt;p&gt;Affiche une fenêtre permettant d'éditer les propriétés du projet spécifiques à l'utilisateur.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5100" />
-      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5113" />
-      <source>Lexer Associations</source>
+      <source>Filetype Associations</source>
       <translation>Association des types de fichiers</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5114" />
-      <source>Lexer Associations...</source>
+      <location filename="../Project/Project.py" line="5101" />
+      <source>Filetype Associations...</source>
       <translation>Association des types de fichiers...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5121" />
-      <source>Show the project lexer associations (overriding defaults)</source>
-      <translation>Affiche les asociations Fichier/Type de fichier pour le projet (sans tenir compte des valeurs par défaut)</translation>
+      <location filename="../Project/Project.py" line="5108" />
+      <source>Show the project file type associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5111" />
+      <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5124" />
+      <source>Lexer Associations</source>
+      <translation>Association des types de fichiers</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5125" />
+      <source>Lexer Associations...</source>
+      <translation>Association des types de fichiers...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5132" />
+      <source>Show the project lexer associations (overriding defaults)</source>
+      <translation>Affiche les asociations Fichier/Type de fichier pour le projet (sans tenir compte des valeurs par défaut)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5135" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Associations des types de fichiers...&lt;/b&gt;&lt;p&gt;Permet d'associer les types de fichiers aux analyseurs syntaxiques pour le projet en cours. Ces associations sont prioritaires sur les associations de fichiers configurées par défaut.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5142" />
+      <location filename="../Project/Project.py" line="5153" />
       <source>Debugger Properties</source>
       <translation>Propriétés du Débogueur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5143" />
+      <location filename="../Project/Project.py" line="5154" />
       <source>Debugger &amp;Properties...</source>
       <translation>Débogueur &amp; Propriétés...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5149" />
+      <location filename="../Project/Project.py" line="5160" />
       <source>Show the debugger properties</source>
       <translation>Affichage des propriétés du débogueur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Propriétés du Débogueur...&lt;/b&gt;&lt;p&gt;Affiche une boite de dialogue permettant d'éditer les proprités du débogueur, spécifiques au projet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5161" />
-      <source>Load</source>
-      <translation>Charger</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5162" />
+      <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Propriétés du Débogueur...&lt;/b&gt;&lt;p&gt;Affiche une boite de dialogue permettant d'éditer les proprités du débogueur, spécifiques au projet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Load</source>
+      <translation>Charger</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
       <source>&amp;Load</source>
       <translation>&amp;Charger</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5168" />
-      <source>Load the debugger properties</source>
-      <translation>Charger les propriétés du débogueur</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5170" />
-      <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Chargement des Propriétés du Débogueur&lt;/b&gt;&lt;p&gt;Charge la configuration du débogueur spécifique au projet.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5179" />
+      <source>Load the debugger properties</source>
+      <translation>Charger les propriétés du débogueur</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5181" />
+      <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Chargement des Propriétés du Débogueur&lt;/b&gt;&lt;p&gt;Charge la configuration du débogueur spécifique au projet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5190" />
       <source>Save</source>
       <translation>Enregistrer</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5186" />
-      <source>Save the debugger properties</source>
-      <translation>Enregistrer les propriétés du débogueur</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5188" />
-      <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Enregistrement des Propriétés du Débogueur&lt;/b&gt;&lt;p&gt;Enregistre la configuration du débogueur spécifique au projet.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5197" />
+      <source>Save the debugger properties</source>
+      <translation>Enregistrer les propriétés du débogueur</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5199" />
+      <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Enregistrement des Propriétés du Débogueur&lt;/b&gt;&lt;p&gt;Enregistre la configuration du débogueur spécifique au projet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5208" />
       <source>Delete</source>
       <translation>Supprimer</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5198" />
+      <location filename="../Project/Project.py" line="5209" />
       <source>&amp;Delete</source>
       <translation>&amp;Supprimer</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5204" />
+      <location filename="../Project/Project.py" line="5215" />
       <source>Delete the debugger properties</source>
       <translation>Supprimer les propriétés du débogueur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5206" />
-      <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Suppression des Propriétés du Débogueur...&lt;/b&gt;&lt;p&gt;Supprime la configuration du débogueur spécifique au projet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5216" />
-      <source>Reset</source>
-      <translation>Réinitialiser</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5217" />
+      <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Suppression des Propriétés du Débogueur...&lt;/b&gt;&lt;p&gt;Supprime la configuration du débogueur spécifique au projet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5227" />
+      <source>Reset</source>
+      <translation>Réinitialiser</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5228" />
       <source>&amp;Reset</source>
       <translation>&amp;Réinitialiser</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5223" />
+      <location filename="../Project/Project.py" line="5234" />
       <source>Reset the debugger properties</source>
       <translation>Réinitialise des propriétés du débogueur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5225" />
+      <location filename="../Project/Project.py" line="5236" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Réinitialiser les propriétés du débogueur&lt;/b&gt;&lt;p&gt;Réinitialise la configuration du débogueur spécifique au projet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5241" />
-      <location filename="../Project/Project.py" line="5240" />
+      <location filename="../Project/Project.py" line="5252" />
+      <location filename="../Project/Project.py" line="5251" />
       <source>Load session</source>
       <translation>Charger la session</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5247" />
+      <location filename="../Project/Project.py" line="5258" />
       <source>Load the projects session file.</source>
       <translation>Charge le fichier de session du projet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5249" />
+      <location filename="../Project/Project.py" line="5260" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Charger la session&lt;/b&gt;&lt;p&gt;Charge le fichier session du projet. Une session est constituée par les données suivantes.&lt;br&gt;- tous les fichiers open source&lt;br&gt;- tous les points d'arrêts&lt;br&gt;- les arguments de ligne de commande&lt;br&gt;- le répertoire de travail&lt;br&gt;- le flag de rapport d'exception&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5265" />
-      <location filename="../Project/Project.py" line="5264" />
+      <location filename="../Project/Project.py" line="5276" />
+      <location filename="../Project/Project.py" line="5275" />
       <source>Save session</source>
       <translation>Enregistrer la session</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5271" />
+      <location filename="../Project/Project.py" line="5282" />
       <source>Save the projects session file.</source>
       <translation>Enregistre le fichier de session du projet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5273" />
+      <location filename="../Project/Project.py" line="5284" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Enregistrer la session&lt;/b&gt;&lt;p&gt;Enregistrer le fichier session du projet. Une session est constituée par les données suivantes.&lt;br&gt;- tous les fichiers open source&lt;br&gt;- tous les points d'arrêts&lt;br&gt;- les arguments de ligne de commande&lt;br&gt;- le répertoire de travail&lt;br&gt;- le flag de rapport d'exception&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5289" />
-      <location filename="../Project/Project.py" line="5288" />
+      <location filename="../Project/Project.py" line="5300" />
+      <location filename="../Project/Project.py" line="5299" />
       <source>Delete session</source>
       <translation>Supprimer la session</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5295" />
+      <location filename="../Project/Project.py" line="5306" />
       <source>Delete the projects session file.</source>
       <translation>Suppression du fichier session de projet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5297" />
+      <location filename="../Project/Project.py" line="5308" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation>&lt;b&gt;Suppression de session&lt;/b&gt;&lt;p&gt;Ceci supprime le fichier session de projet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5312" />
-      <source>Code Metrics</source>
-      <translation>Statistiques du code</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5313" />
-      <source>&amp;Code Metrics...</source>
-      <translation>Statistiques du &amp;Code...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5320" />
-      <source>Show some code metrics for the project.</source>
-      <translation>Affiche des statistiques sur le code du projet.</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5323" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Statistiques du Code...&lt;/b&gt;&lt;p&gt;Affiche des statistiques sur le code de tous les fichiers Python du projet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5333" />
-      <source>Python Code Coverage</source>
-      <translation> Code Coverage Python</translation>
+      <source>Code Metrics</source>
+      <translation>Statistiques du code</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5324" />
+      <source>&amp;Code Metrics...</source>
+      <translation>Statistiques du &amp;Code...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5331" />
+      <source>Show some code metrics for the project.</source>
+      <translation>Affiche des statistiques sur le code du projet.</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5334" />
-      <source>Code Co&amp;verage...</source>
-      <translation>Code Co&amp;verage...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5341" />
-      <source>Show code coverage information for the project.</source>
-      <translation>Affiche les informations de code coverage pour le projet.</translation>
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Statistiques du Code...&lt;/b&gt;&lt;p&gt;Affiche des statistiques sur le code de tous les fichiers Python du projet.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5344" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;Affiche les informations de code coverage pour le projet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6778" />
-      <location filename="../Project/Project.py" line="6765" />
-      <location filename="../Project/Project.py" line="5354" />
-      <source>Profile Data</source>
-      <translation>Profiling des données</translation>
+      <source>Python Code Coverage</source>
+      <translation> Code Coverage Python</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5345" />
+      <source>Code Co&amp;verage...</source>
+      <translation>Code Co&amp;verage...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5352" />
+      <source>Show code coverage information for the project.</source>
+      <translation>Affiche les informations de code coverage pour le projet.</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5355" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;Affiche les informations de code coverage pour le projet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6789" />
+      <location filename="../Project/Project.py" line="6776" />
+      <location filename="../Project/Project.py" line="5365" />
+      <source>Profile Data</source>
+      <translation>Profiling des données</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation>&amp;Profiling des données...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5362" />
+      <location filename="../Project/Project.py" line="5373" />
       <source>Show profiling data for the project.</source>
       <translation>Affiche le profiling des données du projet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5365" />
+      <location filename="../Project/Project.py" line="5376" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profilling des données...&lt;/b&gt;&lt;p&gt;Affiche le profiling des données du projet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6830" />
-      <location filename="../Project/Project.py" line="5380" />
+      <location filename="../Project/Project.py" line="6841" />
+      <location filename="../Project/Project.py" line="5391" />
       <source>Application Diagram</source>
       <translation>Diagramme de l'application</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5381" />
+      <location filename="../Project/Project.py" line="5392" />
       <source>&amp;Application Diagram...</source>
       <translation>&amp;Diagramme de l'application...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5388" />
+      <location filename="../Project/Project.py" line="5399" />
       <source>Show a diagram of the project.</source>
       <translation>Affiche le diagramme de l'application.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="5402" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diagramme de l'application...&lt;/b&gt;&lt;p&gt;Affiche le diagramme du projet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5400" />
+      <location filename="../Project/Project.py" line="5411" />
       <source>Load Diagram</source>
       <translation>Charger le diagramme</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5401" />
+      <location filename="../Project/Project.py" line="5412" />
       <source>&amp;Load Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5407" />
+      <location filename="../Project/Project.py" line="5418" />
       <source>Load a diagram from file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5409" />
+      <location filename="../Project/Project.py" line="5420" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6998" />
-      <location filename="../Project/Project.py" line="6943" />
-      <location filename="../Project/Project.py" line="5424" />
+      <location filename="../Project/Project.py" line="7009" />
+      <location filename="../Project/Project.py" line="6954" />
+      <location filename="../Project/Project.py" line="5435" />
       <source>Create Package List</source>
       <translation>Création de la liste de package</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5426" />
+      <location filename="../Project/Project.py" line="5437" />
       <source>Create &amp;Package List</source>
       <translation>Création de la liste de &amp;package</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5433" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5436" />
+      <location filename="../Project/Project.py" line="5447" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7068" />
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="7080" />
+      <location filename="../Project/Project.py" line="5458" />
       <source>Create Plugin Archives</source>
       <translation>Créer une archive plugin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5449" />
+      <location filename="../Project/Project.py" line="5460" />
       <source>Create Plugin &amp;Archives</source>
       <translation>Créer les &amp;archives plugin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5455" />
+      <location filename="../Project/Project.py" line="5466" />
       <source>Create eric plugin archive files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5457" />
+      <location filename="../Project/Project.py" line="5468" />
       <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5469" />
+      <location filename="../Project/Project.py" line="5480" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5471" />
+      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5478" />
+      <location filename="../Project/Project.py" line="5489" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5481" />
+      <location filename="../Project/Project.py" line="5492" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7510" />
-      <location filename="../Project/Project.py" line="7481" />
-      <location filename="../Project/Project.py" line="7435" />
-      <location filename="../Project/Project.py" line="7387" />
-      <location filename="../Project/Project.py" line="5500" />
+      <location filename="../Project/Project.py" line="7536" />
+      <location filename="../Project/Project.py" line="7507" />
+      <location filename="../Project/Project.py" line="7461" />
+      <location filename="../Project/Project.py" line="7413" />
+      <location filename="../Project/Project.py" line="5511" />
       <source>Execute Make</source>
       <translation>Exécuter Make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5501" />
+      <location filename="../Project/Project.py" line="5512" />
       <source>&amp;Execute Make</source>
       <translation>Éxécut&amp;er Make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5507" />
+      <location filename="../Project/Project.py" line="5518" />
       <source>Perform a 'make' run.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5509" />
-      <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7487" />
-      <location filename="../Project/Project.py" line="5519" />
-      <source>Test for Changes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5520" />
+      <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7513" />
+      <location filename="../Project/Project.py" line="5530" />
+      <source>Test for Changes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5531" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5527" />
+      <location filename="../Project/Project.py" line="5538" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="5541" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5548" />
-      <source>Create SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5549" />
-      <source>Create &amp;SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5556" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5559" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <source>Create SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5560" />
+      <source>Create &amp;SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5567" />
+      <source>Create a SBOM file of the project dependencies.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5570" />
-      <source>Clear Byte Code Caches</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5571" />
-      <source>Clear Byte Code &amp;Caches</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5578" />
-      <source>Clear the byte code caches of the project.</source>
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5581" />
+      <source>Clear Byte Code Caches</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5582" />
+      <source>Clear Byte Code &amp;Caches</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5589" />
+      <source>Clear the byte code caches of the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5592" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5597" />
+      <location filename="../Project/Project.py" line="5608" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5598" />
+      <location filename="../Project/Project.py" line="5609" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5604" />
+      <location filename="../Project/Project.py" line="5615" />
       <source>Show some information about 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5606" />
+      <location filename="../Project/Project.py" line="5617" />
       <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5618" />
-      <source>Format Code</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5619" />
-      <source>&amp;Format Code</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5626" />
-      <source>Format the project sources with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5629" />
+      <source>Format Code</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5630" />
+      <source>&amp;Format Code</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5637" />
+      <source>Format the project sources with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5640" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5641" />
+      <location filename="../Project/Project.py" line="5652" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5642" />
+      <location filename="../Project/Project.py" line="5653" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5649" />
+      <location filename="../Project/Project.py" line="5660" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5654" />
+      <location filename="../Project/Project.py" line="5665" />
       <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5667" />
+      <location filename="../Project/Project.py" line="5678" />
       <source>Code Formatting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5668" />
+      <location filename="../Project/Project.py" line="5679" />
       <source>Code Formatting &amp;Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5686" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5681" />
+      <location filename="../Project/Project.py" line="5692" />
       <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5846" />
-      <location filename="../Project/Project.py" line="5796" />
-      <location filename="../Project/Project.py" line="5795" />
-      <location filename="../Project/Project.py" line="5695" />
-      <location filename="../Project/Project.py" line="5694" />
-      <source>Configure</source>
-      <translation type="unfinished">Configuration</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5702" />
-      <source>Enter the parameters for formatting the project sources with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5707" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5723" />
-      <source>About isort</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5724" />
-      <source>&amp;isort</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5730" />
-      <source>Show some information about 'isort'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5732" />
-      <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5745" />
-      <location filename="../Project/Project.py" line="5744" />
-      <source>Sort Imports</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5752" />
-      <source>Sort the import statements of the project sources with 'isort'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5755" />
-      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5769" />
-      <location filename="../Project/Project.py" line="5768" />
-      <source>Imports Sorting Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5776" />
-      <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5782" />
-      <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5803" />
-      <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5809" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5825" />
-      <source>Install Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5826" />
-      <source>&amp;Install Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5833" />
-      <source>Install the project into the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5836" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5847" />
-      <source>&amp;Configure</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5854" />
-      <source>Configure the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5857" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5867" />
-      <source>Upgrade</source>
-      <translation type="unfinished">Mettre à jour</translation>
+      <location filename="../Project/Project.py" line="5807" />
+      <location filename="../Project/Project.py" line="5806" />
+      <location filename="../Project/Project.py" line="5706" />
+      <location filename="../Project/Project.py" line="5705" />
+      <source>Configure</source>
+      <translation type="unfinished">Configuration</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5713" />
+      <source>Enter the parameters for formatting the project sources with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5718" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5734" />
+      <source>About isort</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5735" />
+      <source>&amp;isort</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5741" />
+      <source>Show some information about 'isort'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5743" />
+      <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5756" />
+      <location filename="../Project/Project.py" line="5755" />
+      <source>Sort Imports</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5763" />
+      <source>Sort the import statements of the project sources with 'isort'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5766" />
+      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5780" />
+      <location filename="../Project/Project.py" line="5779" />
+      <source>Imports Sorting Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5787" />
+      <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5793" />
+      <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5814" />
+      <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5820" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5836" />
+      <source>Install Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5837" />
+      <source>&amp;Install Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5844" />
+      <source>Install the project into the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5847" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5858" />
+      <source>&amp;Configure</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5865" />
+      <source>Configure the embedded environment.</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5868" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5878" />
+      <source>Upgrade</source>
+      <translation type="unfinished">Mettre à jour</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5874" />
+      <location filename="../Project/Project.py" line="5885" />
       <source>Upgrade the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5876" />
+      <location filename="../Project/Project.py" line="5887" />
       <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5888" />
+      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5889" />
+      <location filename="../Project/Project.py" line="5900" />
       <source>&amp;Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5895" />
+      <location filename="../Project/Project.py" line="5906" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5897" />
+      <location filename="../Project/Project.py" line="5908" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5929" />
+      <location filename="../Project/Project.py" line="5940" />
       <source>&amp;Project</source>
       <translation>&amp;Projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5930" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Ouvrir un projet &amp;récent</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5932" />
-      <source>Session</source>
-      <translation>Session</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5933" />
-      <source>Debugger</source>
-      <translation>Débogueur</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5934" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5936" />
-      <source>Project-T&amp;ools</source>
-      <translation>Outils pr&amp;ojet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5937" />
-      <source>&amp;Version Control</source>
-      <translation>&amp;Contrôle de version</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5941" />
-      <source>Chec&amp;k</source>
-      <translation>&amp;Vérification</translation>
+      <source>Open &amp;Recent Projects</source>
+      <translation>Ouvrir un projet &amp;récent</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
+      <source>Session</source>
+      <translation>Session</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5944" />
+      <source>Debugger</source>
+      <translation>Débogueur</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Sho&amp;w</source>
-      <translation>&amp;Affichage</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5946" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Diagrammes</translation>
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Pac&amp;kagers</source>
-      <translation>Création de pac&amp;kage</translation>
+      <source>Project-T&amp;ools</source>
+      <translation>Outils pr&amp;ojet</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
+      <source>&amp;Version Control</source>
+      <translation>&amp;Contrôle de version</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5952" />
+      <source>Chec&amp;k</source>
+      <translation>&amp;Vérification</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5954" />
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5956" />
+      <source>Sho&amp;w</source>
+      <translation>&amp;Affichage</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5957" />
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Diagrammes</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5958" />
+      <source>Pac&amp;kagers</source>
+      <translation>Création de pac&amp;kage</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5959" />
       <source>Source &amp;Documentation</source>
       <translation>&amp;Documentation automatique</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5950" />
+      <location filename="../Project/Project.py" line="5961" />
       <source>Make</source>
       <translation>Make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5951" />
+      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6113" />
-      <location filename="../Project/Project.py" line="6111" />
+      <location filename="../Project/Project.py" line="6124" />
+      <location filename="../Project/Project.py" line="6122" />
       <source>Project</source>
       <translation>Projet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6195" />
+      <location filename="../Project/Project.py" line="6206" />
       <source>&amp;Clear</source>
       <translation>&amp;Effacer</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6392" />
+      <location filename="../Project/Project.py" line="6403" />
       <source>Search New Files</source>
       <translation>Rechercher des nouveaux fichiers</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6393" />
+      <location filename="../Project/Project.py" line="6404" />
       <source>There were no new files found to be added.</source>
       <translation>Aucun fichier à ajouter n'a été trouvé.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6554" />
-      <location filename="../Project/Project.py" line="6541" />
+      <location filename="../Project/Project.py" line="6565" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>Version Control System</source>
       <translation>Système de conrôle des versions (VCS)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6542" />
+      <location filename="../Project/Project.py" line="6553" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6555" />
+      <location filename="../Project/Project.py" line="6566" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6712" />
+      <location filename="../Project/Project.py" line="6723" />
       <source>Coverage Data</source>
       <translation>Coverage de données</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6766" />
-      <location filename="../Project/Project.py" line="6713" />
+      <location filename="../Project/Project.py" line="6777" />
+      <location filename="../Project/Project.py" line="6724" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>Il n'y a pas de script principal défini dans le projet en cours. Abandon</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6725" />
+      <location filename="../Project/Project.py" line="6736" />
       <source>Code Coverage</source>
       <translation>Code Coverage</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6726" />
+      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation>Sélectionner un fichier coverage</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6779" />
+      <location filename="../Project/Project.py" line="6790" />
       <source>Please select a profile file</source>
       <translation>Sélectionner un fichier profile</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6831" />
+      <location filename="../Project/Project.py" line="6842" />
       <source>Include module names?</source>
       <translation>Inclure les noms de modules ?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6944" />
+      <location filename="../Project/Project.py" line="6955" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;PKGLIST&lt;/b&gt; existe déjà.&lt;/p&gt;&lt;p&gt;Ecraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6999" />
+      <location filename="../Project/Project.py" line="7010" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7295" />
-      <location filename="../Project/Project.py" line="7251" />
-      <location filename="../Project/Project.py" line="7201" />
-      <location filename="../Project/Project.py" line="7190" />
-      <location filename="../Project/Project.py" line="7172" />
-      <location filename="../Project/Project.py" line="7139" />
-      <location filename="../Project/Project.py" line="7109" />
-      <location filename="../Project/Project.py" line="7081" />
-      <location filename="../Project/Project.py" line="7051" />
-      <location filename="../Project/Project.py" line="7037" />
-      <location filename="../Project/Project.py" line="7020" />
+      <location filename="../Project/Project.py" line="7321" />
+      <location filename="../Project/Project.py" line="7277" />
+      <location filename="../Project/Project.py" line="7227" />
+      <location filename="../Project/Project.py" line="7216" />
+      <location filename="../Project/Project.py" line="7198" />
+      <location filename="../Project/Project.py" line="7151" />
+      <location filename="../Project/Project.py" line="7121" />
+      <location filename="../Project/Project.py" line="7093" />
+      <location filename="../Project/Project.py" line="7063" />
+      <location filename="../Project/Project.py" line="7048" />
+      <location filename="../Project/Project.py" line="7031" />
       <source>Create Plugin Archive</source>
       <translation>Création de l'archive du plugin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7021" />
+      <location filename="../Project/Project.py" line="7032" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation>Le projet n'a pas de script principal défini. Abandon...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7038" />
+      <location filename="../Project/Project.py" line="7049" />
       <source>Select package lists:</source>
       <translation>Sélectionner les listes de packages :</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7052" />
-      <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7060" />
-      <source>Creating plugin archives...</source>
-      <translation>Création en cours des archives de plugin...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7061" />
-      <source>Abort</source>
-      <translation>Abandonner</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="7064" />
+      <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7072" />
+      <source>Creating plugin archives...</source>
+      <translation>Création en cours des archives de plugin...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7073" />
+      <source>Abort</source>
+      <translation>Abandonner</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7076" />
       <source>%v/%m Archives</source>
       <translation>Archives %v/%m</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7082" />
+      <location filename="../Project/Project.py" line="7094" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7110" />
+      <location filename="../Project/Project.py" line="7122" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7140" />
+      <location filename="../Project/Project.py" line="7152" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7199" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7191" />
+      <location filename="../Project/Project.py" line="7217" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7228" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7252" />
+      <location filename="../Project/Project.py" line="7278" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier plugin &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7296" />
+      <location filename="../Project/Project.py" line="7322" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7388" />
+      <location filename="../Project/Project.py" line="7414" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7436" />
+      <location filename="../Project/Project.py" line="7462" />
       <source>The make process did not start.</source>
       <translation>Le processus make n'a pas démarré.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7482" />
+      <location filename="../Project/Project.py" line="7508" />
       <source>The make process crashed.</source>
       <translation>Crash du processus make.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7490" />
+      <location filename="../Project/Project.py" line="7516" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7495" />
+      <location filename="../Project/Project.py" line="7521" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7511" />
+      <location filename="../Project/Project.py" line="7537" />
       <source>The makefile contains errors.</source>
       <translation>Le makefile contient des erreurs.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7941" />
+      <location filename="../Project/Project.py" line="7975" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7942" />
+      <location filename="../Project/Project.py" line="7976" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8023" />
+      <location filename="../Project/Project.py" line="8057" />
       <source>Open Remote Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8054" />
-      <location filename="../Project/Project.py" line="8039" />
+      <location filename="../Project/Project.py" line="8088" />
+      <location filename="../Project/Project.py" line="8073" />
       <source>Save Remote Project</source>
       <translation type="unfinished" />
     </message>
@@ -65363,50 +65378,50 @@
       <translation>Le fichier a le type mime &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Faut il l'ajouter à la liste des fichiers de type mime texte ?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="527" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="511" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="529" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="513" />
       <source>New directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="512" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="514" />
       <source>&lt;p&gt;A file or directory named &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="528" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="530" />
       <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="625" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="596" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="577" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="627" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="598" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="579" />
       <source>New file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="578" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="580" />
       <source>Enter the path of the new file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="597" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="599" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="626" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="628" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="716" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="718" />
       <source>Delete files/directories</source>
       <translation>Supprimer fichiers/répertoires</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="717" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="719" />
       <source>Do you really want to delete these entries from the project?</source>
       <translation>Voulez-vous réellement supprimer ces entrées du projet?</translation>
     </message>
@@ -67149,22 +67164,22 @@
   <context>
     <name>Purge</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="74" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="76" />
       <source>Purge All Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="75" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="77" />
       <source>Do really want to delete all files not tracked by Mercurial (including ignored ones)?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="80" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="82" />
       <source>Purge Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="81" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="83" />
       <source>Do really want to delete files not tracked by Mercurial?</source>
       <translation type="unfinished" />
     </message>
@@ -67272,7 +67287,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="453" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="455" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="235" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -67288,7 +67303,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="433" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="246" />
       <source>Flash MicroPython Firmware</source>
       <translation type="unfinished" />
@@ -67344,7 +67359,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="431" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="390" />
       <source>'dfu-util' Output</source>
       <translation type="unfinished" />
@@ -67355,37 +67370,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="416" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="417" />
       <source>Flash MicroPython/CircuitPython Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="419" />
       <source>MicroPython Firmware Files (*.dfu);;CircuitPython Firmware Files (*.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="454" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="456" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="484" />
       <source>unknown</source>
       <translation type="unfinished">inconnu</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="488" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="490" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="496" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="498" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="500" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="502" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -69521,12 +69536,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="139" />
+      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="141" />
       <source>No current editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="140" />
+      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="142" />
       <source>Please open or create a file first.</source>
       <translation>Veuillez d'abord ouvrir ou créer un fichier.</translation>
     </message>
@@ -71317,7 +71332,7 @@
       <translation type="unfinished">Gerer les plugins...</translation>
     </message>
     <message>
-      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="122" />
+      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="124" />
       <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="82" />
       <source>Add Documentation</source>
       <translation type="unfinished">Ajouter Documentation</translation>
@@ -71328,7 +71343,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="123" />
+      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="125" />
       <source>The file &lt;b&gt;{0}&lt;/b&gt; could not be added.</source>
       <translation type="unfinished" />
     </message>
@@ -71586,191 +71601,191 @@
   <context>
     <name>Queues</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="226" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="228" />
       <source>New Patch</source>
       <translation>Nouveau Patch</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="277" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="279" />
       <source>Update Current Patch</source>
       <translation>Mettre à jour le patch courant</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="335" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="337" />
       <source>Pop Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="339" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="341" />
       <source>Push Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="343" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="345" />
       <source>Go to Patch</source>
       <translation>Aller au patch</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="437" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="369" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="356" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="441" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="371" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="358" />
       <source>Select Patch</source>
       <translation>Sélectionner le patch</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="359" />
       <source>Select the target patch name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="372" />
       <source>No patches to select from.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="399" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="401" />
       <source>Finish Applied Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="423" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="427" />
       <source>Rename Patch</source>
       <translation>Renommer le patch</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="438" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="442" />
       <source>Select the patch to be deleted:</source>
       <translation>Sélectionner le patch à supprimer :</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="446" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="450" />
       <source>Delete Patch</source>
       <translation>Supprimer le patch</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="488" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="482" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="475" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="492" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="486" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="479" />
       <source>Fold Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="483" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="487" />
       <source>No patches selected.</source>
       <translation>Pas de patch sélectionné.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="493" />
       <source>No patches available to be folded.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="510" />
       <source>List Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="507" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="511" />
       <source>No patches available to list guards for.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="536" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="540" />
       <source>Define Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="537" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="541" />
       <source>No patches available to define guards for.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="568" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="548" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="552" />
       <source>Drop All Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="549" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="553" />
       <source>Select the patch to drop guards for (leave empty for the current patch):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="597" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="590" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="606" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598" />
       <source>Set Active Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="607" />
       <source>No guards available to select from.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="618" />
       <source>Deactivate Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649" />
       <source>Create New Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649" />
       <source>Rename Active Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="658" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="673" />
       <source>Error while creating a new queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="660" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="675" />
       <source>Error while renaming the active queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="693" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="708" />
       <source>Purge Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="710" />
       <source>Delete Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="697" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="712" />
       <source>Activate Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="717" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="736" />
       <source>Error while purging the queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="738" />
       <source>Error while deleting the queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="721" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="740" />
       <source>Error while setting the active queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="743" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="762" />
       <source>Available Queues</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="757" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="777" />
       <source>Initializing new queue repository</source>
       <translation type="unfinished" />
     </message>
@@ -72911,17 +72926,17 @@
   <context>
     <name>Rebase</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="83" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="86" />
       <source>Rebase Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="106" />
       <source>Rebase Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="121" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="127" />
       <source>Rebase Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
@@ -73172,7 +73187,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="421" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="423" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -73226,37 +73241,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="402" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="403" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="403" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="404" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="424" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
       <source>unknown</source>
       <translation type="unfinished">inconnu</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="456" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="466" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="468" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="470" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -76192,49 +76207,49 @@
   <context>
     <name>Shelve</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="105" />
       <source>Shelve current changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="144" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="151" />
       <source>Restore shelved changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="162" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="170" />
       <source>Abort restore operation</source>
       <translation>Abandonner l'opération de restoration</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="182" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="191" />
       <source>Continue restore operation</source>
       <translation>Poursuivre l'opération de restoration</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="201" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211" />
       <source>Select the shelves to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="220" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="222" />
       <source>Delete shelves</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="212" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="223" />
       <source>Do you really want to delete these shelves?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="238" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="249" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="242" />
       <source>Delete all shelves</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="232" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="243" />
       <source>Do you really want to delete all shelved changes?</source>
       <translation type="unfinished" />
     </message>
@@ -79046,7 +79061,7 @@
   <context>
     <name>Strip</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="64" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="68" />
       <source>Stripping changesets from repository</source>
       <translation type="unfinished" />
     </message>
@@ -79162,7 +79177,7 @@
       <translation>Le processus svn s'est terminé avec le code de sortie {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2138" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2173" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="185" />
       <source>The svn process did not finish within 30s.</source>
       <translation>Le processus SVN ne s'est pas terminé dans les 30 dernières secondes.</translation>
@@ -79198,339 +79213,339 @@
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="320" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="334" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="335" />
       <source>Importing project into Subversion repository</source>
       <translation>Importer le projet dans le référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="379" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="375" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="378" />
       <source>Subversion Checkout</source>
       <translation>'Checkout' Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="450" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="436" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="376" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="452" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="381" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="442" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="379" />
       <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
       <translation>L'étiquette doit être une étiquette normale (tags) ou une étiquette de branche (branches). Prière de faire un choix dans la liste.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="402" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="402" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="406" />
       <source>Checking project out of Subversion repository</source>
       <translation>'Checkout' du projet depuis le référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="449" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="435" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="441" />
       <source>Subversion Export</source>
       <translation>'Export' Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="471" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="459" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="473" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="466" />
       <source>Exporting project from Subversion repository</source>
       <translation>Exporter un projet du référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="554" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="541" />
       <source>Commit Changes</source>
       <translation>Commiter les changements</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="533" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="558" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="542" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation>Ce commit affecte des fichiers qui ont des modifications non enregistrées. Faut-il poursuivre le commit ?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="597" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="600" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="592" />
       <source>Commiting changes to Subversion repository</source>
       <translation>'Commiter' les modifications dans le référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="670" />
       <source>Synchronizing with the Subversion repository</source>
       <translation>Synchronisation avec le référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="816" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="774" />
       <source>Adding files/directories to the Subversion repository</source>
       <translation>Ajouter des fichiers/répertoires au référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="927" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="852" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="933" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="869" />
       <source>Adding directory trees to the Subversion repository</source>
       <translation>Ajouter des arborescences de répertoires dans le référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="968" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="975" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="908" />
       <source>Removing files/directories from the Subversion repository</source>
       <translation>Supprimer des fichiers/répertoires du réferentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1032" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="953" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1042" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="973" />
       <source>Moving {0}</source>
       <translation>Dépalcement en cours de {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1331" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1302" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1162" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1132" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1216" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1187" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1035" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1351" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1319" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1176" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1143" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1243" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1211" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1087" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1055" />
       <source>Subversion Error</source>
       <translation>Erreur Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1133" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1036" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1144" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1056" />
       <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
       <translation>Impossible d'atteindre l'URL du référentiel à partir de la copie locale. Abandon de l'opération d'étiquetage</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1065" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1177" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1088" />
       <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
       <translation>Le format de l'URL du référentiel n'est pas valide. Abandon de l'opération d'étiquetage</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1214" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1185" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1099" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1122" />
       <source>Tagging {0} in the Subversion repository</source>
       <translation />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1246" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1235" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1143" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1132" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1262" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1251" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1167" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1156" />
       <source>Revert changes</source>
       <translation>Revenir avant les modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1236" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1133" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1252" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1157" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1247" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1144" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1168" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1255" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1271" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1174" />
       <source>Reverting changes</source>
       <translation>Revenir avant les modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1303" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1188" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1320" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1212" />
       <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
       <translation>Impossible d'atteindre l'URL du référentiel du projet depuis la copie locale. Abandon de l'opération</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1332" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1217" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1352" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1244" />
       <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
       <translation>Le format de l'URL du référentiel n'est pas valide. Abandon de l'opération</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1355" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1246" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1375" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273" />
       <source>Switching to {0}</source>
       <translation>Basculement en cours vers {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1456" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1313" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1481" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1344" />
       <source>Merging {0}</source>
       <translation>Fusion en cours {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1787" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1602" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1813" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633" />
       <source>Cleaning up {0}</source>
       <translation>Nettoyage en cours {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1828" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1859" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1666" />
       <source>Subversion command</source>
       <translation>Commande Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1960" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1991" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1849" />
       <source>Resolving conficts</source>
       <translation>Résoudre les confits</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1852" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2036" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1885" />
       <source>Copying {0}</source>
       <translation>Copie en cours {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2084" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2067" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1923" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1902" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2117" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2100" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1956" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1935" />
       <source>Subversion Set Property</source>
       <translation>Propriété Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2131" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2068" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1951" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1903" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2101" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1936" />
       <source>You have to supply a property name. Aborting.</source>
       <translation>Vous devez donner un nom à la propriété. Abandon.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2147" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2130" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1968" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1950" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1939" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2181" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2164" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2001" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1983" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1972" />
       <source>Subversion Delete Property</source>
       <translation>Suppression d'une propriété Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1973" />
       <source>Enter property name</source>
       <translation>Entrer le nom de la propriété</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2140" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2175" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation>Impossible de lancer le processus {0}. Assurez-vous qu'il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2403" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2391" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2382" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2206" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2194" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2185" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2440" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2428" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2419" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2241" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2229" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220" />
       <source>Subversion Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2404" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2207" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2242" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2466" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2260" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2503" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2295" />
       <source>Locking in the Subversion repository</source>
       <translation>Verrouillage dans le référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2508" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2545" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2324" />
       <source>Unlocking in the Subversion repository</source>
       <translation>Déverrouillage dans le référentiel Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2558" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2314" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2595" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2351" />
       <source>Relocating</source>
       <translation>Déplacement</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2584" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2333" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2621" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2370" />
       <source>Repository Browser</source>
       <translation>Navigateur de référentiel</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2585" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2334" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2371" />
       <source>Enter the repository URL.</source>
       <translation>Entrer l'URL du référentiel.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2610" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2647" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2441" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2404" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2367" />
       <source>Remove from changelist</source>
       <translation>Supprimer de la liste des modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2649" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2638" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2383" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2687" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2676" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2420" />
       <source>Add to changelist</source>
       <translation>Ajouter à la liste des modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2639" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2384" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2677" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2421" />
       <source>Enter name of the changelist:</source>
       <translation>Entrer le nom de la liste des modifications:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2706" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2474" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2746" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2511" />
       <source>Upgrade</source>
       <translation>Mise à jour</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="338" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="339" />
       <source>Imported revision {0}.
 </source>
       <translation>Révision Importée {0}.
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="635" />
       <source>Committed revision {0}.</source>
       <translation>Révision committée {0}.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1363" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1384" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1226" />
       <source>Revision {0}.
 </source>
       <translation>Révision {0}.
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2107" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2141" />
       <source>Property set.</source>
       <translation>Propriété définie.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2200" />
       <source>Property deleted.</source>
       <translation>Propriété supprimée.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2448" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2485" />
       <source>Subversion Lock</source>
       <translation>Verrou Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2449" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2486" />
       <source>Enter lock comment</source>
       <translation>Entrer un commentaire pour le verrou</translation>
     </message>
@@ -89883,133 +89898,133 @@
   <context>
     <name>UF2FlashDialog</name>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="722" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="732" />
       <source>&lt;h3&gt;CircuitPython Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Switch your device to 'bootloader' mode by double-pressing the reset button.&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;(If this does not happen, then try shorter or longer pauses between presses.)&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="748" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="758" />
       <source>&lt;h3&gt;Pi Pico (RP2040/RP2350) Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Enter 'bootloader' mode (board &lt;b&gt;without&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;Plug in your board while holding the BOOTSEL button.&lt;/li&gt;&lt;/ul&gt;Enter 'bootloader' mode (board &lt;b&gt;with&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;hold down RESET&lt;/li&gt;&lt;li&gt;hold down BOOTSEL&lt;/li&gt;&lt;li&gt;release RESET&lt;/li&gt;&lt;li&gt;release BOOTSEL&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/UF2FlashDialog.ui" line="0" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1248" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1256" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1258" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1266" />
       <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1257" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1267" />
       <source>Select the Boot Volume of the device:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="861" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="871" />
       <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="928" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="920" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="904" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="938" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="930" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="914" />
       <source>Manual Select</source>
       <translation type="unfinished">Sélection Manuelle</translation>
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1032" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1000" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="977" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1042" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1010" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="987" />
       <source>Reset Instructions:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="979" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="989" />
       <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the appropriate instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1003" />
-      <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/UF2FlashDialog.py" line="1013" />
+      <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1023" />
       <source>&lt;h4&gt;Potentially UF2 capable devices found&lt;/h4&gt;&lt;p&gt;Found these potentially UF2 capable devices:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1034" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1044" />
       <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1046" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1056" />
       <source>Flash Instructions:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1048" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1058" />
       <source>&lt;h4&gt;Flash method 'manual' selected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to flash a device by entering the data manually.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Change the device to 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it) and select its path.&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1073" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1083" />
       <source>Boot Volume not found:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1075" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1085" />
       <source>&lt;h4&gt;No Boot Volume detected.&lt;/h4&gt;&lt;p&gt;Please ensure that the boot volume of the device to be flashed is available. </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1081" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1091" />
       <source>This volume should be named &lt;b&gt;{0}&lt;/b&gt;. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1086" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1096" />
       <source>This volume should have one of these names.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1093" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1103" />
       <source>&lt;h4&gt;Reset Instructions&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set the board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1112" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1122" />
       <source>Multiple Boot Volumes found:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1114" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1124" />
       <source>&lt;h4&gt;Multiple Boot Volumes were found&lt;/h4&gt;&lt;p&gt;These volume paths were found.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please ensure that only one device of a type is ready for flashing. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1133" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1143" />
       <source>Flashing Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1135" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1145" />
       <source>&lt;p&gt;Flashing the selected firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1142" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1152" />
       <source>Flashing {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1144" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1154" />
       <source>&lt;p&gt;Flashing the {0} firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1249" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1259" />
       <source>No UF2 device 'boot' volumes found.</source>
       <translation type="unfinished" />
     </message>
@@ -90575,24 +90590,24 @@
       <translation>Graphiques</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="405" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="392" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="375" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="409" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="396" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="379" />
       <source>Save Diagram</source>
       <translation>Enregistrer le diagramme</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="377" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="381" />
       <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
       <translation>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="393" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="397" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="406" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="410" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; n'a pas pu être enregistré.&lt;/p&gt;</translation>
     </message>
@@ -90770,44 +90785,44 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="95" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="97" />
       <source>{0} (*)</source>
       <comment>list entry is modified</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="179" />
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="158" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="181" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="160" />
       <source>Delete Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="159" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="161" />
       <source>The selected entries contain some with modified data. Shall they really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="180" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="182" />
       <source>The list contains some devices with modified data. Shall they really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="198" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="200" />
       <source>Restore Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="199" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="201" />
       <source>Restoring the list of unknown devices will overwrite all changes made. Do you really want to restore the list?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="263" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="265" />
       <source>Unsaved Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="264" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="266" />
       <source>The list of devices contains some with modified data.</source>
       <translation type="unfinished" />
     </message>
@@ -91320,7 +91335,7 @@
       <translation>&lt;b&gt;Enregistrer session...&lt;/b&gt;&lt;p&gt;Ceci enregistre la session sur le disque. Une fenêtre s'ouvre pour sélectionner le nom de fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7883" />
+      <location filename="../UI/UserInterface.py" line="7890" />
       <location filename="../UI/UserInterface.py" line="1955" />
       <location filename="../UI/UserInterface.py" line="1948" />
       <source>Load session</source>
@@ -92411,7 +92426,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6626" />
+      <location filename="../UI/UserInterface.py" line="6630" />
       <location filename="../UI/UserInterface.py" line="3172" />
       <source>Snapshot</source>
       <translation type="unfinished" />
@@ -92648,8 +92663,8 @@
       <translation>&lt;b&gt;Raccourcis claviers&lt;/b&gt;&lt;p&gt;Edite les raccourcis claviers pour l'application.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7591" />
-      <location filename="../UI/UserInterface.py" line="7572" />
+      <location filename="../UI/UserInterface.py" line="7598" />
+      <location filename="../UI/UserInterface.py" line="7579" />
       <location filename="../UI/UserInterface.py" line="3402" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exporter les raccourcis clavier</translation>
@@ -92670,7 +92685,7 @@
       <translation>&lt;b&gt;Exporter les raccourcis clavier&lt;/b&gt;&lt;p&gt;Exporte les raccourcis claviers de l'application.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7610" />
+      <location filename="../UI/UserInterface.py" line="7617" />
       <location filename="../UI/UserInterface.py" line="3421" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Importer des raccourcis clavier</translation>
@@ -93079,7 +93094,7 @@
       <translation>Configuration</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6354" />
+      <location filename="../UI/UserInterface.py" line="6358" />
       <location filename="../UI/UserInterface.py" line="4194" />
       <location filename="../UI/UserInterface.py" line="4179" />
       <source>Help</source>
@@ -93251,314 +93266,314 @@
       <translation>Tout &amp;masquer</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6491" />
-      <location filename="../UI/UserInterface.py" line="6480" />
-      <location filename="../UI/UserInterface.py" line="6432" />
-      <location filename="../UI/UserInterface.py" line="6422" />
-      <location filename="../UI/UserInterface.py" line="6245" />
-      <location filename="../UI/UserInterface.py" line="6235" />
-      <location filename="../UI/UserInterface.py" line="6177" />
-      <location filename="../UI/UserInterface.py" line="6167" />
+      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6484" />
+      <location filename="../UI/UserInterface.py" line="6436" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6239" />
+      <location filename="../UI/UserInterface.py" line="6181" />
+      <location filename="../UI/UserInterface.py" line="6171" />
       <source>Problem</source>
       <translation>Problème</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6492" />
-      <location filename="../UI/UserInterface.py" line="6481" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <location filename="../UI/UserInterface.py" line="6423" />
-      <location filename="../UI/UserInterface.py" line="6246" />
-      <location filename="../UI/UserInterface.py" line="6236" />
-      <location filename="../UI/UserInterface.py" line="6178" />
-      <location filename="../UI/UserInterface.py" line="6168" />
+      <location filename="../UI/UserInterface.py" line="6496" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6437" />
+      <location filename="../UI/UserInterface.py" line="6427" />
+      <location filename="../UI/UserInterface.py" line="6250" />
+      <location filename="../UI/UserInterface.py" line="6240" />
+      <location filename="../UI/UserInterface.py" line="6182" />
+      <location filename="../UI/UserInterface.py" line="6172" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; n'existe pas ou est de longeur nulle.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6735" />
-      <location filename="../UI/UserInterface.py" line="6646" />
-      <location filename="../UI/UserInterface.py" line="6527" />
-      <location filename="../UI/UserInterface.py" line="6504" />
-      <location filename="../UI/UserInterface.py" line="6445" />
-      <location filename="../UI/UserInterface.py" line="6392" />
-      <location filename="../UI/UserInterface.py" line="6370" />
-      <location filename="../UI/UserInterface.py" line="6321" />
-      <location filename="../UI/UserInterface.py" line="6312" />
-      <location filename="../UI/UserInterface.py" line="6277" />
-      <location filename="../UI/UserInterface.py" line="6268" />
-      <location filename="../UI/UserInterface.py" line="6209" />
-      <location filename="../UI/UserInterface.py" line="6200" />
+      <location filename="../UI/UserInterface.py" line="6739" />
+      <location filename="../UI/UserInterface.py" line="6650" />
+      <location filename="../UI/UserInterface.py" line="6531" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6449" />
+      <location filename="../UI/UserInterface.py" line="6396" />
+      <location filename="../UI/UserInterface.py" line="6374" />
+      <location filename="../UI/UserInterface.py" line="6325" />
+      <location filename="../UI/UserInterface.py" line="6316" />
+      <location filename="../UI/UserInterface.py" line="6281" />
+      <location filename="../UI/UserInterface.py" line="6272" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6204" />
       <source>Process Generation Error</source>
       <translation>Erreur du processus</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6201" />
+      <location filename="../UI/UserInterface.py" line="6205" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut lancer Qt-Designer.&lt;br&gt;Vérifier qu'il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6210" />
+      <location filename="../UI/UserInterface.py" line="6214" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6269" />
+      <location filename="../UI/UserInterface.py" line="6273" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut lancer Qt-Linguist.&lt;br&gt;Vérifier qu'il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6278" />
+      <location filename="../UI/UserInterface.py" line="6282" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6313" />
+      <location filename="../UI/UserInterface.py" line="6317" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut lancer Qt-Assistant.&lt;br&gt;Vérifier qu'il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6322" />
+      <location filename="../UI/UserInterface.py" line="6326" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6355" />
+      <location filename="../UI/UserInterface.py" line="6359" />
       <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
       <translation>Aucun visualiseur personalisé n'est sélectionné. Prière d'en spécifier un dans les préférences.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6371" />
+      <location filename="../UI/UserInterface.py" line="6375" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6393" />
+      <location filename="../UI/UserInterface.py" line="6397" />
       <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'aide.&lt;br&gt;Assurez-vous qu'il est bien ici &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6446" />
+      <location filename="../UI/UserInterface.py" line="6450" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6505" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6528" />
+      <location filename="../UI/UserInterface.py" line="6532" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut lancer le navigateur SQL.&lt;br&gt;Vérifier qu'il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6627" />
+      <location filename="../UI/UserInterface.py" line="6631" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6647" />
+      <location filename="../UI/UserInterface.py" line="6651" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6680" />
-      <location filename="../UI/UserInterface.py" line="6670" />
+      <location filename="../UI/UserInterface.py" line="6684" />
+      <location filename="../UI/UserInterface.py" line="6674" />
       <source>External Tools</source>
       <translation>Outils externes</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6671" />
+      <location filename="../UI/UserInterface.py" line="6675" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6681" />
+      <location filename="../UI/UserInterface.py" line="6685" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6718" />
+      <location filename="../UI/UserInterface.py" line="6722" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Démarrage du processus '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6736" />
+      <location filename="../UI/UserInterface.py" line="6740" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6815" />
+      <location filename="../UI/UserInterface.py" line="6819" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7102" />
-      <location filename="../UI/UserInterface.py" line="7040" />
-      <location filename="../UI/UserInterface.py" line="6996" />
-      <location filename="../UI/UserInterface.py" line="6922" />
-      <location filename="../UI/UserInterface.py" line="6858" />
+      <location filename="../UI/UserInterface.py" line="7106" />
+      <location filename="../UI/UserInterface.py" line="7044" />
+      <location filename="../UI/UserInterface.py" line="7000" />
+      <location filename="../UI/UserInterface.py" line="6926" />
+      <location filename="../UI/UserInterface.py" line="6862" />
       <source>Documentation Missing</source>
       <translation>Documentation Manquante</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7103" />
-      <location filename="../UI/UserInterface.py" line="7041" />
-      <location filename="../UI/UserInterface.py" line="6997" />
-      <location filename="../UI/UserInterface.py" line="6923" />
-      <location filename="../UI/UserInterface.py" line="6859" />
+      <location filename="../UI/UserInterface.py" line="7107" />
+      <location filename="../UI/UserInterface.py" line="7045" />
+      <location filename="../UI/UserInterface.py" line="7001" />
+      <location filename="../UI/UserInterface.py" line="6927" />
+      <location filename="../UI/UserInterface.py" line="6863" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7084" />
-      <location filename="../UI/UserInterface.py" line="6966" />
+      <location filename="../UI/UserInterface.py" line="7088" />
+      <location filename="../UI/UserInterface.py" line="6970" />
       <source>Documentation</source>
       <translation>Documentation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6967" />
+      <location filename="../UI/UserInterface.py" line="6971" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7085" />
+      <location filename="../UI/UserInterface.py" line="7089" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7264" />
-      <location filename="../UI/UserInterface.py" line="7200" />
+      <location filename="../UI/UserInterface.py" line="7268" />
+      <location filename="../UI/UserInterface.py" line="7204" />
       <source>Start Web Browser</source>
       <translation>Démarrer le navigateur web</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7201" />
+      <location filename="../UI/UserInterface.py" line="7205" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7265" />
+      <location filename="../UI/UserInterface.py" line="7269" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7311" />
+      <location filename="../UI/UserInterface.py" line="7315" />
       <source>Open Browser</source>
       <translation>Ouverture du navigateur</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7311" />
+      <location filename="../UI/UserInterface.py" line="7315" />
       <source>Could not start a web browser</source>
       <translation>Impossible de lancer le navigateur web</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7612" />
-      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7619" />
+      <location filename="../UI/UserInterface.py" line="7581" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7592" />
+      <location filename="../UI/UserInterface.py" line="7599" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7796" />
+      <location filename="../UI/UserInterface.py" line="7803" />
       <source>Load crash session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7799" />
+      <location filename="../UI/UserInterface.py" line="7806" />
       <source>Clean crash sessions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7836" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7837" />
+      <location filename="../UI/UserInterface.py" line="7844" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier de session &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7860" />
+      <location filename="../UI/UserInterface.py" line="7867" />
       <source>Save Session</source>
       <translation type="unfinished">Enregistrer la session</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7885" />
-      <location filename="../UI/UserInterface.py" line="7862" />
+      <location filename="../UI/UserInterface.py" line="7892" />
+      <location filename="../UI/UserInterface.py" line="7869" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7954" />
+      <location filename="../UI/UserInterface.py" line="7961" />
       <source>Found Crash Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7955" />
+      <location filename="../UI/UserInterface.py" line="7962" />
       <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8028" />
+      <location filename="../UI/UserInterface.py" line="8035" />
       <source>Clean stale crash sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8029" />
+      <location filename="../UI/UserInterface.py" line="8036" />
       <source>Do you really want to delete these stale crash session files?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8405" />
+      <location filename="../UI/UserInterface.py" line="8412" />
       <source>Drop Error</source>
       <translation>Erreur de suppression</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8406" />
+      <location filename="../UI/UserInterface.py" line="8413" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; n'est pas un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8594" />
+      <location filename="../UI/UserInterface.py" line="8605" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8595" />
+      <location filename="../UI/UserInterface.py" line="8606" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8640" />
+      <location filename="../UI/UserInterface.py" line="8651" />
       <source>First time usage</source>
       <translation>Première utilisation</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8641" />
+      <location filename="../UI/UserInterface.py" line="8652" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8663" />
+      <location filename="../UI/UserInterface.py" line="8674" />
       <source>Select Workspace Directory</source>
       <translation>Sélectionner le répertoire de travail</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8831" />
+      <location filename="../UI/UserInterface.py" line="8842" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8832" />
+      <location filename="../UI/UserInterface.py" line="8843" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -94268,8 +94283,8 @@
       <translation>Contrôle de version - Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginVcsGit.py" line="134" />
-      <location filename="../Plugins/PluginVcsGit.py" line="98" />
+      <location filename="../Plugins/PluginVcsGit.py" line="133" />
+      <location filename="../Plugins/PluginVcsGit.py" line="97" />
       <source>Git</source>
       <translation>Git</translation>
     </message>
@@ -94483,156 +94498,156 @@
   <context>
     <name>VcsProjectHelper</name>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="76" />
+      <location filename="../VCS/ProjectHelper.py" line="77" />
       <source>New from repository</source>
       <translation>Nouveau à partir du référentiel</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="78" />
+      <location filename="../VCS/ProjectHelper.py" line="79" />
       <source>&amp;New from repository...</source>
       <translation>&amp;Nouveau depuis un référentiel...</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="85" />
+      <location filename="../VCS/ProjectHelper.py" line="86" />
       <source>Create a new project from the VCS repository</source>
       <translation>Créer un nouveau projet à partir du référentiel VCS</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="90" />
+      <location filename="../VCS/ProjectHelper.py" line="91" />
       <source>&lt;b&gt;New from repository&lt;/b&gt;&lt;p&gt;This creates a new local project from the VCS repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nouveau à partir du référentiel&lt;/b&gt;&lt;p&gt;Créer un nouveau projet local à partir d'un référentiel VCS.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="101" />
+      <location filename="../VCS/ProjectHelper.py" line="102" />
       <source>Export from repository</source>
       <translation>Exporter du référentiel</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="103" />
+      <location filename="../VCS/ProjectHelper.py" line="104" />
       <source>&amp;Export from repository...</source>
       <translation>&amp;Exporter du référentiel...</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="112" />
+      <location filename="../VCS/ProjectHelper.py" line="113" />
       <source>Export a project from the repository</source>
       <translation>Exporte un projet d'un référentiel VCS</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="117" />
+      <location filename="../VCS/ProjectHelper.py" line="118" />
       <source>&lt;b&gt;Export from repository&lt;/b&gt;&lt;p&gt;This exports a project from the repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Exporter du référentiel&lt;/b&gt;&lt;p&gt;Exporte un projet d'un référentiel VCS.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="127" />
+      <location filename="../VCS/ProjectHelper.py" line="128" />
       <source>Add to repository</source>
       <translation>Ajouter au référentiel</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="129" />
+      <location filename="../VCS/ProjectHelper.py" line="130" />
       <source>&amp;Add to repository...</source>
       <translation>&amp;Ajouter au référentiel...</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="136" />
+      <location filename="../VCS/ProjectHelper.py" line="137" />
       <source>Add the local project to the VCS repository</source>
       <translation>Ajoute le projet local au référentiel VCS</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="141" />
+      <location filename="../VCS/ProjectHelper.py" line="142" />
       <source>&lt;b&gt;Add to repository&lt;/b&gt;&lt;p&gt;This adds (imports) the local project to the VCS repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ajouter au référentiel&lt;/b&gt;&lt;p&gt;Ajoute (importe) le projet local au référentiel VCS.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="192" />
-      <location filename="../VCS/ProjectHelper.py" line="190" />
+      <location filename="../VCS/ProjectHelper.py" line="193" />
+      <location filename="../VCS/ProjectHelper.py" line="191" />
       <source>VCS</source>
       <translation>VCS</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="265" />
-      <location filename="../VCS/ProjectHelper.py" line="236" />
+      <location filename="../VCS/ProjectHelper.py" line="266" />
+      <location filename="../VCS/ProjectHelper.py" line="237" />
       <source>New Project</source>
       <translation>Nouveau projet</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="462" />
-      <location filename="../VCS/ProjectHelper.py" line="237" />
+      <location filename="../VCS/ProjectHelper.py" line="465" />
+      <location filename="../VCS/ProjectHelper.py" line="238" />
       <source>Select version control system for the project</source>
       <translation>Sélectionner un système de contrôle de version (VCS) pour le projet</translation>
     </message>
     <message>
+      <location filename="../VCS/ProjectHelper.py" line="497" />
+      <location filename="../VCS/ProjectHelper.py" line="267" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation>Voulez-vous éditer les options de commande VCS ?</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="287" />
+      <source>Create project directory</source>
+      <translation>Création d'un répertoire projet</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="290" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Le répertoire projet &lt;b&gt;{0}&lt;/b&gt; ne peut être créé.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="396" />
+      <location filename="../VCS/ProjectHelper.py" line="380" />
+      <location filename="../VCS/ProjectHelper.py" line="336" />
+      <location filename="../VCS/ProjectHelper.py" line="316" />
+      <source>New project from repository</source>
+      <translation>Nouveau projet à partir du référentiel</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="319" />
+      <source>Select a project file to open.</source>
+      <translation>Sélectionner un fichier projet à ouvrir.</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="339" />
+      <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="384" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation>Le fichier projet doit-il être ajouté au référentiel?</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="399" />
+      <source>The project could not be retrieved from the repository.</source>
+      <translation>Impossible de rappatrier le projet depuis le référentiel.</translation>
+    </message>
+    <message>
       <location filename="../VCS/ProjectHelper.py" line="494" />
-      <location filename="../VCS/ProjectHelper.py" line="266" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation>Voulez-vous éditer les options de commande VCS ?</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="286" />
-      <source>Create project directory</source>
-      <translation>Création d'un répertoire projet</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="289" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Le répertoire projet &lt;b&gt;{0}&lt;/b&gt; ne peut être créé.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="393" />
-      <location filename="../VCS/ProjectHelper.py" line="377" />
-      <location filename="../VCS/ProjectHelper.py" line="335" />
-      <location filename="../VCS/ProjectHelper.py" line="315" />
-      <source>New project from repository</source>
-      <translation>Nouveau projet à partir du référentiel</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="318" />
-      <source>Select a project file to open.</source>
-      <translation>Sélectionner un fichier projet à ouvrir.</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="338" />
-      <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="381" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation>Le fichier projet doit-il être ajouté au référentiel?</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="396" />
-      <source>The project could not be retrieved from the repository.</source>
-      <translation>Impossible de rappatrier le projet depuis le référentiel.</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="491" />
-      <location filename="../VCS/ProjectHelper.py" line="461" />
+      <location filename="../VCS/ProjectHelper.py" line="464" />
       <source>Import Project</source>
       <translation>Importation de projet</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="535" />
+      <location filename="../VCS/ProjectHelper.py" line="540" />
       <source>Update</source>
       <translation>Mise à jour</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="669" />
-      <location filename="../VCS/ProjectHelper.py" line="536" />
+      <location filename="../VCS/ProjectHelper.py" line="674" />
+      <location filename="../VCS/ProjectHelper.py" line="541" />
       <source>The project should be reread. Do this now?</source>
       <translation>Le projet devrait être relu. Le faire maintenant ?</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="572" />
+      <location filename="../VCS/ProjectHelper.py" line="577" />
       <source>Remove project from repository</source>
       <translation>Supprimer le projet du référentiel</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="575" />
+      <location filename="../VCS/ProjectHelper.py" line="580" />
       <source>Dou you really want to remove this project from the repository (and disk)?</source>
       <translation>Voulez-vous vraiment supprimer ce projet du référentiel (et du disque)?</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="668" />
+      <location filename="../VCS/ProjectHelper.py" line="673" />
       <source>Switch</source>
       <translation>Basculer de version</translation>
     </message>
@@ -99654,54 +99669,54 @@
   <context>
     <name>VirtualenvManager</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="318" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="322" />
       <source>Add Virtual Environment</source>
       <translation>Ajouter environnement virtuel</translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="319" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="323" />
       <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
       <translation>Un environnement virtuel nommé &lt;b&gt;{0}&lt;/b&gt; existe déjà. Faut il le remplacer ?</translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="356" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="362" />
       <source>Change Virtual Environment</source>
       <translation>Modifier l'environnement virtuel</translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="389" />
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="357" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="395" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="363" />
       <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="388" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="394" />
       <source>Rename Virtual Environment</source>
       <translation>Renommer l'environnement virtuel</translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="480" />
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="413" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="486" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="419" />
       <source>{0} - {1}</source>
       <translation>{0} - {1}</translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="420" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="426" />
       <source>Delete Virtual Environments</source>
       <translation>Supprimer les environnements virtuels</translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="421" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="427" />
       <source>Do you really want to delete these virtual environments?</source>
       <translation>Voulez-vous vraiment supprimer ces environnements virtuels ?</translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="487" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="493" />
       <source>Remove Virtual Environments</source>
       <translation>Supprimer les environnements virtuels</translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="488" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="494" />
       <source>Do you really want to remove these virtual environments?</source>
       <translation>Voulez-vous vraiment supprimer ces environnements virtuels ?</translation>
     </message>
@@ -99709,7 +99724,7 @@
   <context>
     <name>VirtualenvManagerDialog</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" />
+      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="449" />
       <source>Manage Virtual Environments</source>
       <translation>Gérer les environnements virtuels</translation>
     </message>
@@ -99832,7 +99847,7 @@
   <context>
     <name>VirtualenvManagerWindow</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" />
+      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="489" />
       <source>Manage Virtual Environments</source>
       <translation type="unfinished">Gérer les environnements virtuels</translation>
     </message>
@@ -104949,22 +104964,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="125" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="117" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="127" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="119" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="49" />
       <source>Connect WiFi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="173" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="167" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="175" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="169" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="50" />
       <source>Check Internet Connection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="147" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="141" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="149" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="143" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="51" />
       <source>Disconnect WiFi</source>
       <translation type="unfinished" />
@@ -104975,40 +104990,40 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="244" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="235" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="225" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="215" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="249" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="240" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="230" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="220" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="55" />
       <source>Write WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="282" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="272" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="261" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="287" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="277" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="266" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="56" />
       <source>Remove WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="495" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="486" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="500" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="491" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="58" />
       <source>Enable WebREPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="529" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="520" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="512" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="534" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="525" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="517" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="59" />
       <source>Disable WebREPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="313" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="329" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="318" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="61" />
       <source>Start WiFi Access Point</source>
       <translation type="unfinished" />
@@ -105019,14 +105034,14 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="378" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="383" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="66" />
       <source>Show Connected Clients</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="345" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="359" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="350" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="68" />
       <source>Stop WiFi Access Point</source>
       <translation type="unfinished" />
@@ -105042,186 +105057,186 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="464" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="448" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="428" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="419" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="469" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="433" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="424" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="79" />
       <source>Set Network Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="118" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="120" />
       <source>&lt;p&gt;The device was connected to &lt;b&gt;{0}&lt;/b&gt; successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="126" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="128" />
       <source>&lt;p&gt;The device could not connect to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="533" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="499" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="286" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="248" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="150" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="129" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="538" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="504" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="291" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="253" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="178" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="152" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="131" />
       <source>unknown</source>
       <translation type="unfinished">inconnu</translation>
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="142" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="144" />
       <source>&lt;p&gt;The device was disconnected from the WiFi network.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="148" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="150" />
       <source>&lt;p&gt;The device could not be disconnected.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="161" />
-      <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="163" />
+      <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="165" />
       <source>&lt;p&gt;The internet connection is &lt;b&gt;not available&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="174" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176" />
       <source>&lt;p&gt;The internet is not available.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="236" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="216" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="241" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="221" />
       <source>&lt;p&gt;The WiFi credentials were saved on the device. The device will connect to the WiFi network at boot time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="226" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="231" />
       <source>&lt;p&gt;The WiFi credentials and a connect script were saved on the device. Use the script by simply importing it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="245" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="250" />
       <source>&lt;p&gt;The WiFi credentials could not be saved on the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="262" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="267" />
       <source>Shall the saved WiFi credentials really be removed from the connected device?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="273" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="278" />
       <source>&lt;p&gt;The WiFi credentials were removed from the device. The device will not connect to the WiFi network at boot time anymore.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="283" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="288" />
       <source>&lt;p&gt;The WiFi credentials could not be removed from the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="314" />
-      <source>The WiFi Access Point interface was started successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="319" />
+      <source>The WiFi Access Point interface was started successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324" />
       <source>&lt;p&gt;The WiFi Access Point could not be started.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="405" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="356" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="326" />
+      <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351" />
+      <source>The WiFi Access Point interface was stopped successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354" />
+      <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="384" />
+      <source>No clients are connected to the access point.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="408" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="399" />
+      <source>Deactivate WiFi Interface</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="400" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="321" />
-      <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="346" />
-      <source>The WiFi Access Point interface was stopped successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="349" />
-      <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="379" />
-      <source>No clients are connected to the access point.</source>
+      <source>The WiFi interface was deactivated successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="403" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="394" />
-      <source>Deactivate WiFi Interface</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="395" />
-      <source>The WiFi interface was deactivated successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="398" />
       <source>&lt;p&gt;The WiFi interface could not be deactivated.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="420" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="425" />
       <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;adafruit_ntp&lt;/b&gt; is not installed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="429" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="434" />
       <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;ntptime&lt;/b&gt; is not available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="449" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="454" />
       <source>The device time was synchronized successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453" />
-      <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="458" />
+      <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="463" />
       <source>&lt;p&gt;The device time could not be synchronized. Is the device connected to a WiFi network?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="487" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="492" />
       <source>&lt;p&gt;The WebREPL server of the device will be activated after a reboot.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="496" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="501" />
       <source>&lt;p&gt;The WebREPL server of the device could not be enabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="513" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="518" />
       <source>Shall the WebREPL server of the device really be disabled?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="521" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="526" />
       <source>&lt;p&gt;The WebREPL server of the device will not be enabled at boot time anymore.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="530" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="535" />
       <source>&lt;p&gt;The WebREPL server of the device could not be disabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -105785,32 +105800,32 @@
   <context>
     <name>mercurial</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1349" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1383" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Modifications&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1913" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1955" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1391" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Étiquettes&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1919" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1363" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1961" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1397" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Signets&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1370" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1968" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1404" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1376" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1410" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
@@ -105819,7 +105834,7 @@
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure de soumission&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1429" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -105830,36 +105845,36 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1887" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1929" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1894" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1936" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1901" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1943" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Suggestion&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1906" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1948" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Modifications&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1933" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1975" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1981" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -106523,17 +106538,17 @@
   <context>
     <name>subversion</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1736" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1769" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Information référentiel&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Version en cours&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Version soumise&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date de la soumission&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure de la soumission&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Dernier auteur&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1888" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1919" />
       <source>unknown</source>
       <translation>inconnu</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1892" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1923" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Informations sur le référentiel&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;API Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Révision actuelle&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Révision validée&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date de validation&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure de validation&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Dernier auteur&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_it.ts	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/i18n/eric7_it.ts	Fri Nov 01 18:12:30 2024 +0100
@@ -2019,47 +2019,47 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="281" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="284" />
       <source>Formatting Failure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="282" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="285" />
       <source>&lt;p&gt;Formatting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="545" />
-      <source>would reformat</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../CodeFormatting/BlackFormattingDialog.py" line="548" />
+      <source>would reformat</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="551" />
       <source>reformatted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="553" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="556" />
       <source>unchanged</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="557" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="560" />
       <source>unmodified</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="561" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="564" />
       <source>ignored</source>
       <translation type="unfinished">ignorato</translation>
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="565" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="568" />
       <source>failed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="570" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="573" />
       <source>invalid status ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -4420,16 +4420,16 @@
   <context>
     <name>CircuitPythonUpdaterInterface</name>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="600" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="592" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="579" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="546" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="516" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="506" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="486" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="469" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="460" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="446" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="615" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="607" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="594" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="561" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="531" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="521" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="501" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="484" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="475" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="54" />
       <source>Install Modules</source>
       <translation type="unfinished" />
@@ -4465,10 +4465,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="385" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="375" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="365" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="346" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="396" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="355" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="95" />
       <source>Update Modules</source>
       <translation type="unfinished" />
@@ -4489,8 +4489,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="642" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="621" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="658" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="636" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="108" />
       <source>Uninstall Modules</source>
       <translation type="unfinished" />
@@ -4511,25 +4511,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="249" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="236" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="225" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="213" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="201" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="188" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="251" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="238" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="227" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="215" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="203" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="190" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="118" />
       <source>Add Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="284" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="269" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="287" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="271" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="119" />
       <source>Remove Bundles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="671" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="689" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="121" />
       <source>Show Local Cache Path</source>
       <translation type="unfinished" />
@@ -4550,132 +4550,132 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="189" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="191" />
       <source>Enter Bundle by 'User/Repo' Github String:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="202" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="204" />
       <source>&lt;p&gt;The bundle &lt;b&gt;{0}&lt;/b&gt; is already in the list.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="214" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="216" />
       <source>&lt;p&gt;The bundle string is invalid, expecting github URL or 'user/repository' string.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="226" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="228" />
       <source>&lt;p&gt;The bundle string is invalid. The repository doesn't exist (error code 404).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="237" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="239" />
       <source>&lt;p&gt;The bundle string is invalid. Is the repository a valid circup bundle?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="250" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="252" />
       <source>&lt;p&gt;Added bundle &lt;b&gt;{0}&lt;/b&gt; ({1}).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="270" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="272" />
       <source>Select the bundles to be removed:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="285" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="288" />
       <source>&lt;p&gt;These bundles were removed from the local bundles list.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="347" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="356" />
       <source>All modules are already up-to-date.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="366" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="377" />
       <source>&lt;p&gt;There was an error updating &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="387" />
       <source>&lt;p&gt;These modules were updated on the connected device.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="397" />
       <source>No modules could be updated.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="448" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="463" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation type="unfinished">File Testo(*.txt);;Tutti i file (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="476" />
       <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not contain valid modules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="470" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="485" />
       <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="488" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="503" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished">File Python (*.py);;Tutti i File (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="507" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="522" />
       <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not contain valid import statements or does not import external modules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="517" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="532" />
       <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="547" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="562" />
       <source>&lt;p&gt;Ready to install these modules?{0}{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="552" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="567" />
       <source>Dependencies:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="580" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="595" />
       <source>&lt;p&gt;Installation complete. These modules were installed successfully.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="593" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="608" />
       <source>&lt;p&gt;Installation complete. No modules were installed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="601" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="616" />
       <source>&lt;p&gt;No modules installation is required.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="622" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="637" />
       <source>Select the modules/packages to be uninstalled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="643" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="659" />
       <source>&lt;p&gt;These modules/packages were uninstalled from the connected device.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="672" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="690" />
       <source>&lt;p&gt;&lt;b&gt;circup&lt;/b&gt; stores the downloaded CircuitPython bundles in this directory.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -4683,44 +4683,44 @@
   <context>
     <name>CircupFunctions</name>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="75" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="84" />
       <source>Find Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="76" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="85" />
       <source>&lt;p&gt;There was an error: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="148" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="109" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="157" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="118" />
       <source>Download Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="110" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="119" />
       <source>&lt;p&gt;There was a problem downloading the bundle. Please try again in a moment.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="149" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="158" />
       <source>&lt;p&gt;Missing file &lt;b&gt;boot_out.txt&lt;/b&gt; on the device: wrong path or drive corrupted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="243" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="232" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="252" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="241" />
       <source>Install Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="233" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="242" />
       <source>&lt;p&gt;The compiled version of module &lt;b&gt;{0}&lt;/b&gt; cannot be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="244" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="253" />
       <source>&lt;p&gt;The module name &lt;b&gt;{0}&lt;/b&gt; is not known.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -4844,17 +4844,17 @@
   <context>
     <name>Closehead</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="52" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54" />
       <source>Revision &lt;{0}&gt; closed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="56" />
       <source>Revisions &lt;{0}&gt; closed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="61" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="63" />
       <source>Closing Heads</source>
       <translation type="unfinished" />
     </message>
@@ -6183,19 +6183,19 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1650" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1609" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1652" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1611" />
       <source>{0} - {1}</source>
       <comment>issue code, message</comment>
       <translation type="unfinished">{0} - {1}</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2995" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2997" />
       <source>Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2996" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2998" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
@@ -7462,7 +7462,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="713" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="715" />
       <location filename="../CondaInterface/CondaPackagesWidget.py" line="181" />
       <source>Delete Environment</source>
       <translation type="unfinished" />
@@ -7509,22 +7509,22 @@
       <translation type="unfinished">File Testo(*.txt);;Tutti i file (*)</translation>
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="686" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="687" />
       <source>Create Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="714" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="716" />
       <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="739" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="741" />
       <source>Edit Configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="740" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="742" />
       <source>The configuration file "{0}" does not exist or is not writable.</source>
       <translation type="unfinished" />
     </message>
@@ -8869,30 +8869,30 @@
   <context>
     <name>CycloneDX</name>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="190" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="182" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="151" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="115" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="192" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="184" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="153" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="117" />
       <source>CycloneDX - SBOM Creation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="118" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="120" />
       <source>&lt;p&gt;The configured input file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="152" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="154" />
       <source>&lt;p&gt;Some of the dependencies do not have pinned version numbers.&lt;ul&gt;{0}&lt;/ul&gt;The above listed packages will NOT be included in the generated CycloneDX SBOM file as version is a mandatory field.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="183" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="185" />
       <source>&lt;p&gt;The SBOM data was written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="191" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="193" />
       <source>&lt;p&gt;The SBOM file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9234,58 +9234,58 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1355" />
-      <location filename="../Debugger/DebugServer.py" line="1272" />
-      <location filename="../Debugger/DebugServer.py" line="1188" />
-      <location filename="../Debugger/DebugServer.py" line="1098" />
+      <location filename="../Debugger/DebugServer.py" line="1358" />
+      <location filename="../Debugger/DebugServer.py" line="1275" />
+      <location filename="../Debugger/DebugServer.py" line="1191" />
+      <location filename="../Debugger/DebugServer.py" line="1101" />
       <source>Start Debugger</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1356" />
-      <location filename="../Debugger/DebugServer.py" line="1273" />
-      <location filename="../Debugger/DebugServer.py" line="1189" />
-      <location filename="../Debugger/DebugServer.py" line="1099" />
+      <location filename="../Debugger/DebugServer.py" line="1359" />
+      <location filename="../Debugger/DebugServer.py" line="1276" />
+      <location filename="../Debugger/DebugServer.py" line="1192" />
+      <location filename="../Debugger/DebugServer.py" line="1102" />
       <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1945" />
+      <location filename="../Debugger/DebugServer.py" line="1948" />
       <source>
 Not connected
 </source>
       <translation>Non connesso</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2110" />
+      <location filename="../Debugger/DebugServer.py" line="2113" />
       <source>Passive debug connection received
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2119" />
+      <location filename="../Debugger/DebugServer.py" line="2122" />
       <source>Passive debug connection received while not in passive mode.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2125" />
+      <location filename="../Debugger/DebugServer.py" line="2128" />
       <source>Debug Client Connection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2126" />
+      <location filename="../Debugger/DebugServer.py" line="2129" />
       <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2141" />
+      <location filename="../Debugger/DebugServer.py" line="2144" />
       <source>Passive debug connection closed
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2272" />
+      <location filename="../Debugger/DebugServer.py" line="2275" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9298,7 +9298,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2374" />
+      <location filename="../Debugger/DebugUI.py" line="2380" />
       <location filename="../Debugger/DebugUI.py" line="234" />
       <source>Run Script</source>
       <translation>Esegui Script</translation>
@@ -9319,8 +9319,8 @@
       <translation>&lt;b&gt;Esegui Script&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando ed esegue lo script al di fuori del debugger. Se il file non è stato salvato può essere salvato prima.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="2386" />
       <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="2374" />
       <location filename="../Debugger/DebugUI.py" line="255" />
       <source>Run Project</source>
       <translation>Esegui Progetto</translation>
@@ -9421,7 +9421,7 @@
       <translation>&lt;b&gt;Profila Progetto&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando e profila il progetto. Se file del progetto corrente non sono stati salvati, è possibile salvarli prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2567" />
+      <location filename="../Debugger/DebugUI.py" line="2573" />
       <location filename="../Debugger/DebugUI.py" line="365" />
       <source>Debug Script</source>
       <translation>Debug dello script</translation>
@@ -9442,8 +9442,8 @@
       <translation>&lt;b&gt;Debug dello Script&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando e imposta la linea corrente per essere la prima istruzione eseguibile di Python della finestra dell'editor. Se il file ha modifiche non salvate è possibile salvarle prima.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="2579" />
       <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="2567" />
       <location filename="../Debugger/DebugUI.py" line="387" />
       <source>Debug Project</source>
       <translation>Debug del Progetto</translation>
@@ -9464,7 +9464,7 @@
       <translation>&lt;b&gt;Debug del Progetto&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando e imposta la linea corrente per essere la prima istruzione eseguibile di Python della finestra dell'editor. Se il progetto ha modifiche non salvate è possibile salvarle prima.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2889" />
+      <location filename="../Debugger/DebugUI.py" line="2895" />
       <location filename="../Debugger/DebugUI.py" line="411" />
       <location filename="../Debugger/DebugUI.py" line="409" />
       <source>Restart</source>
@@ -9903,66 +9903,66 @@
       <translation>&lt;p&gt;La condizione del breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contiene un errore di sintassi.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1775" />
+      <location filename="../Debugger/DebugUI.py" line="1779" />
       <source>Watch Expression Error</source>
       <translation>Errore espressione di watch</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1776" />
+      <location filename="../Debugger/DebugUI.py" line="1780" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'espressione  &lt;b&gt;{0}&lt;/b&gt; contiene un errore di sintassi.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1804" />
+      <location filename="../Debugger/DebugUI.py" line="1810" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'espressione '&lt;b&gt;{0}&lt;/b&gt;' esiste già.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1809" />
-      <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;L'espressione  '&lt;b&gt;{0}&lt;/b&gt;' per la variabile &lt;b&gt;{1}&lt;/b&gt; esiste già.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="1815" />
+      <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;L'espressione  '&lt;b&gt;{0}&lt;/b&gt;' per la variabile &lt;b&gt;{1}&lt;/b&gt; esiste già.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="1821" />
       <source>Watch expression already exists</source>
       <translation>L'espressione di controllo esiste già</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1980" />
-      <location filename="../Debugger/DebugUI.py" line="1971" />
+      <location filename="../Debugger/DebugUI.py" line="1986" />
+      <location filename="../Debugger/DebugUI.py" line="1977" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1973" />
+      <location filename="../Debugger/DebugUI.py" line="1979" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2381" />
-      <location filename="../Debugger/DebugUI.py" line="2183" />
-      <location filename="../Debugger/DebugUI.py" line="1981" />
+      <location filename="../Debugger/DebugUI.py" line="2387" />
+      <location filename="../Debugger/DebugUI.py" line="2189" />
+      <location filename="../Debugger/DebugUI.py" line="1987" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>Non c'è uno script principale definito per il progetto. Esco</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2182" />
-      <location filename="../Debugger/DebugUI.py" line="2173" />
+      <location filename="../Debugger/DebugUI.py" line="2188" />
+      <location filename="../Debugger/DebugUI.py" line="2179" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2175" />
+      <location filename="../Debugger/DebugUI.py" line="2181" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2574" />
+      <location filename="../Debugger/DebugUI.py" line="2580" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>Non c'è uno script principale per il progetto. Non è possibile il debug.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3246" />
+      <location filename="../Debugger/DebugUI.py" line="3252" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -10125,26 +10125,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="325" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="312" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="336" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="323" />
       <source>Add allowed host</source>
       <translation>Aggiungi un host consentito</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="349" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="313" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="360" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="324" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Inserisci l'indirizzo IP di un host consentito</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="363" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="326" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="374" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="337" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'indirizzo &lt;b&gt;{0}&lt;/b&gt; non è un indirizzo IP v4 o v6 valido. Uscita...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="362" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="348" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="373" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="359" />
       <source>Edit allowed host</source>
       <translation>Modifica host permessi</translation>
     </message>
@@ -10241,13 +10241,8 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debugger Type:</source>
-      <translation>Tipo Debugger:</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Select the debugger type of the backend</source>
-      <translation>Seleziona il tipo di backend del debugger</translation>
+      <source>Debug Server Port:</source>
+      <translation>Porta del Debug server:</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
@@ -10263,8 +10258,28 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debug Server Port:</source>
-      <translation>Porta del Debug server:</translation>
+      <source>Debugger Type:</source>
+      <translation>Tipo Debugger:</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select the debugger type of the backend</source>
+      <translation>Seleziona il tipo di backend del debugger</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select to not stop the debugger at the first executable line.</source>
+      <translation type="unfinished">Selezione per non fermare il debugger alla prima riga eseguibile.</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>&lt;b&gt;Don't stop at first line&lt;/b&gt;&lt;p&gt;This prevents the debugger from stopping at the first executable line.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;Non fermare alla prima riga&lt;/b&gt;&lt;p&gt;Evitar che il debugger si fermi alla prima riga eseguibile.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Don't stop at first line</source>
+      <translation type="unfinished">Non fermare alla prima riga</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
@@ -10614,46 +10629,46 @@
   <context>
     <name>DebuggerInterfacePython</name>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="728" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="705" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="609" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="563" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="445" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="422" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="345" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="321" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="258" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="747" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="724" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="628" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="582" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="464" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="441" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="364" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="340" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="277" />
       <source>Start Debugger</source>
       <translation type="unfinished">Avvia Debugger</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="564" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="259" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="583" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="278" />
       <source>&lt;p&gt;No suitable Python3 environment configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="729" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="706" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="610" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="446" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="423" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="322" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="748" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="725" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="629" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="465" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="442" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="341" />
       <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="346" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="365" />
       <source>&lt;p&gt;Remote debugging is configured but no command for remote login was given.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1691" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1692" />
       <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;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -11664,8 +11679,8 @@
   <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="450" />
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="420" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421" />
       <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.ui" line="0" />
       <source>.desktop Wizard</source>
       <translation type="unfinished" />
@@ -12022,8 +12037,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451" />
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="452" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="422" />
       <source>Only one of 'Only Show In' or  'Not Show In' allowed.</source>
       <translation type="unfinished" />
     </message>
@@ -15179,12 +15194,12 @@
       <translation>Il cursore può muoversi nello Spazio Virtuale</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="287" />
+      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288" />
       <source>Tab and Indent Override</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288" />
+      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="289" />
       <source>Shall the selected entries really be removed?</source>
       <translation type="unfinished" />
     </message>
@@ -15519,27 +15534,27 @@
       <translation>Importa gli stili di evidenziazione</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="803" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="805" />
       <source>Delete Sub-Style</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="804" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="806" />
       <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="840" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="842" />
       <source>{0} - Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="867" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="869" />
       <source>Reset Sub-Styles to Default</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="868" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="870" />
       <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -21867,14 +21882,14 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="395" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="193" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1775" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1759" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1782" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1766" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="197" />
       <source>Erase Flash</source>
       <translation type="unfinished" />
@@ -21885,7 +21900,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1864" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1877" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="204" />
       <source>Flash Additional Firmware</source>
       <translation type="unfinished" />
@@ -21897,25 +21912,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="367" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="368" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="211" />
       <source>Restore Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="465" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="467" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="215" />
       <source>Show Chip ID</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="488" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="491" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="218" />
       <source>Show Flash ID</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="511" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="515" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="221" />
       <source>Show MAC Address</source>
       <translation type="unfinished" />
@@ -21936,139 +21951,139 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1863" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1820" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="366" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1876" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1830" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="367" />
       <source>'esptool write_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="396" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="425" />
       <source>unknown</source>
       <translation type="unfinished">sconosciuto</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="434" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="436" />
       <source>&lt;h4&gt;{0} Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="442" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="444" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="448" />
       <source>{0} Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="466" />
       <source>'esptool chip_id' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="487" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="490" />
       <source>'esptool flash_id' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="510" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="514" />
       <source>'esptool read_mac' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="641" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="646" />
       <source>Set Country</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="642" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="647" />
       <source>Reset Country</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="965" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="970" />
       <source>Error saving credentials: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="976" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="981" />
       <source>Error saving auto-connect script: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="980" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="985" />
       <source>Error modifying 'boot.py': {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1017" />
       <source>Error deleting credentials: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1096" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1101" />
       <source>unknown ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1475" />
-      <source>Active</source>
-      <translation type="unfinished">Attivo</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1476" />
-      <source>Name</source>
-      <translation type="unfinished">Nome</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1477" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/EspDevices.py" line="1480" />
-      <source>Address Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1481" />
-      <source>Public</source>
-      <translation type="unfinished" />
+      <source>Active</source>
+      <translation type="unfinished">Attivo</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/EspDevices.py" line="1481" />
+      <source>Name</source>
+      <translation type="unfinished">Nome</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1482" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1485" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1486" />
+      <source>Public</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1486" />
       <source>Random</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1484" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1489" />
       <source>MTU</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1484" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1489" />
       <source>{0} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1760" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1767" />
       <source>Shall the flash of the selected device really be erased?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1774" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1781" />
       <source>'esptool erase_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1821" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1831" />
       <source>Flash µPy/CPy Firmware</source>
       <translation type="unfinished" />
     </message>
@@ -22076,7 +22091,7 @@
   <context>
     <name>EspFirmwareSelectionDialog</name>
     <message>
-      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="68" />
+      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="77" />
       <source>Firmware Files (*.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -24367,22 +24382,22 @@
   <context>
     <name>FindFileFiltersEditDialog</name>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="109" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="111" />
       <source>Delete Selected Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="110" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="112" />
       <source>Shall the selected filters really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="127" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="129" />
       <source>Default Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="128" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="130" />
       <source>Do you really want to clear the list of defined file filters and replace it with the list of default filters?</source>
       <translation type="unfinished" />
     </message>
@@ -25072,7 +25087,7 @@
   <context>
     <name>FormattingDiffWidget</name>
     <message>
-      <location filename="../CodeFormatting/FormattingDiffWidget.py" line="63" />
+      <location filename="../CodeFormatting/FormattingDiffWidget.py" line="65" />
       <source>There is no difference.</source>
       <translation type="unfinished">Non ci sono differenze.</translation>
     </message>
@@ -25172,7 +25187,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1715" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1747" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="219" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -25198,153 +25213,153 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="308" />
       <source>Adding files to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="316" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="321" />
       <source>Initial commit to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="348" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="357" />
       <source>Cloning project from a Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="448" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="460" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="449" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="461" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="518" />
       <source>Committing changes to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="584" />
       <source>Switch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="585" />
       <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="597" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="614" />
       <source>Synchronizing with the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="664" />
       <source>Adding files/directories to the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="721" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="743" />
       <source>Removing files/directories from the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="814" />
       <source>Renaming {0}</source>
       <translation type="unfinished">Rinomino {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="942" />
       <source>Unstage files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="968" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="957" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="996" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="985" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="958" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="986" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="969" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="997" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="975" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1003" />
       <source>Reverting changes</source>
       <translation type="unfinished">Annullamento modifiche</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1028" />
-      <source>Merging</source>
-      <translation type="unfinished">Merge</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1057" />
+      <source>Merging</source>
+      <translation type="unfinished">Merge</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1086" />
       <source>Main branch head</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1285" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1315" />
       <source>Git Command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1396" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1426" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1430" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Origini&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1406" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1436" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1412" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1442" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1417" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1447" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1422" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1457" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1462" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1437" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1467" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1443" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1473" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -25354,459 +25369,459 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1553" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1554" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1574" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1621" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1604" />
       <source>Git Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1575" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1605" />
       <source>&lt;p&gt;Copying the directory &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1592" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1622" />
       <source>&lt;p&gt;Copying the file &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2845" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1717" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2920" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1749" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1788" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1775" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1764" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1822" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1809" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1798" />
       <source>Git Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1823" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1842" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1877" />
       <source>Fetching from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1879" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918" />
       <source>Pulling from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1919" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1962" />
       <source>Pushing to a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1948" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1994" />
       <source>Committing failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1974" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2021" />
       <source>Aborting uncommitted/failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2008" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2056" />
       <source>Applying patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2043" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2091" />
       <source>Check patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2046" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2094" />
       <source>Apply patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2130" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2181" />
       <source>Tagging in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2443" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2488" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2510" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2511" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2484" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2578" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2560" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2542" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2486" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2544" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2503" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2561" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2550" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2608" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2597" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2689" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2571" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2753" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2699" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2599" />
       <source>Git Bundle Files (*.bundle);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2580" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2627" />
       <source>List Bundle Heads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2687" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2751" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2697" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2660" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2775" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2746" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2816" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished">Sottocomando Bisect ({0}) non valido.</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3025" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2861" />
+      <source>Git Bisect ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2919" />
+      <source>Process Generation Error</source>
+      <translation type="unfinished">Errore Generazione Processo</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2965" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2948" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2930" />
+      <source>Create Bisect Replay File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2932" />
+      <source>Git Bisect Replay Files (*.replay)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2949" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2789" />
-      <source>Git Bisect ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2844" />
-      <source>Process Generation Error</source>
-      <translation type="unfinished">Errore Generazione Processo</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2890" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2873" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2855" />
-      <source>Create Bisect Replay File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2857" />
-      <source>Git Bisect Replay Files (*.replay)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2874" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2891" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2966" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2911" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2940" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2913" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3015" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2988" />
       <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3013" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3299" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3121" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3378" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3200" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3181" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3260" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3182" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3261" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3323" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3402" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3384" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3417" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3497" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3442" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3468" />
-      <source>Copy Changesets (Cancel)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3549" />
+      <source>Copy Changesets (Cancel)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3630" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3763" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3844" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3673" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3845" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3802" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3751" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3674" />
+      <source>Select a stash (empty for latest stash):</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3708" />
+      <source>Restore Stash</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3721" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
-      <source>Select a stash (empty for latest stash):</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3669" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3627" />
-      <source>Restore Stash</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3683" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3720" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3801" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3790" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3710" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3735" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3774" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3855" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3775" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3856" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3785" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3866" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3807" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3888" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3889" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3895" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3876" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3958" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished">Visualizzazione combinata della impostazioni di configurazione</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3899" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3985" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3921" />
-      <source>Performing Repository Housekeeping</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3963" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3965" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3970" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3976" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3982" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3987" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3993" />
-      <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3999" />
-      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011" />
+      <source>Performing Repository Housekeeping</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4054" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4056" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4061" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4067" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4073" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4078" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4084" />
+      <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4090" />
+      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4095" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4102" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4080" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4172" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4120" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4186" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4278" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4187" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4279" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4200" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4292" />
       <source>All</source>
       <translation type="unfinished">Tutti</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4204" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4296" />
       <source>Submodule Path</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4297" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4254" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4347" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4382" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4357" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4318" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4453" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4414" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4387" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4484" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4441" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4539" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -32475,101 +32490,101 @@
       <translation type="unfinished">Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="519" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="520" />
       <source>Add Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="537" />
-      <source>Lock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538" />
-      <source>Enter a reason for the lock:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="556" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538" />
+      <source>Lock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="539" />
+      <source>Enter a reason for the lock:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="557" />
       <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="580" />
-      <source>Unlock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="581" />
+      <source>Unlock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="582" />
       <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="616" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="599" />
-      <source>Move Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600" />
-      <source>Enter the new path for the worktree:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600" />
+      <source>Move Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="601" />
+      <source>Enter the new path for the worktree:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="618" />
       <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="637" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="638" />
       <source>Remove Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="640" />
       <source>Remove Worktree Forcefully</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="645" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="646" />
       <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="672" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="673" />
       <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="727" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="703" />
-      <source>Prune Worktree Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704" />
-      <source>Do you really want to prune the information of these worktrees?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="728" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704" />
+      <source>Prune Worktree Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="705" />
+      <source>Do you really want to prune the information of these worktrees?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="729" />
       <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="765" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="754" />
-      <source>Repair Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755" />
-      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755" />
+      <source>Repair Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="756" />
+      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="767" />
       <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -32686,12 +32701,12 @@
   <context>
     <name>Gpg</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="73" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="76" />
       <source>Verify Signatures</source>
       <translation>Verifica firma</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="124" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="128" />
       <source>Sign Revision</source>
       <translation>Revisione Firma</translation>
     </message>
@@ -35285,456 +35300,456 @@
   <context>
     <name>Hg</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="300" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="303" />
       <source>Create project repository</source>
       <translation>Crea il repository del progetto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="301" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="304" />
       <source>The project repository could not be created.</source>
       <translation>Il repository del progetto non può essere creato.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="334" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="338" />
       <source>Creating Mercurial repository</source>
       <translation>Creazione repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="353" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="359" />
       <source>Initial commit to Mercurial repository</source>
       <translation>Commit iniziale nel repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="405" />
       <source>Cloning project from a Mercurial repository</source>
       <translation>Clonazione del progetto dal repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="503" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="516" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="504" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="517" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="566" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="580" />
       <source>Committing changes to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="661" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="679" />
       <source>Synchronizing with the Mercurial repository</source>
       <translation>Sincronizzazione con il repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="692" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="713" />
       <source>Adding files/directories to the Mercurial repository</source>
       <translation>Aggiunta di file/directory al repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="751" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="774" />
       <source>Removing files/directories from the Mercurial repository</source>
       <translation>Rimozione di file/directory dal repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="829" />
       <source>Renaming {0}</source>
       <translation>Rinomino {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="935" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="964" />
       <source>Tagging in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="981" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="970" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1011" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1000" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="971" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1001" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="982" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1012" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="988" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018" />
       <source>Reverting changes</source>
       <translation>Annullamento modifiche</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1033" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064" />
       <source>Merging</source>
       <translation>Merge</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1072" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1103" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1095" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1065" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1096" />
       <source>Do you really want to re-merge these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1073" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1104" />
       <source>Do you really want to re-merge the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1076" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1108" />
       <source>Re-Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1098" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1131" />
       <source>Current branch tip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1280" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1314" />
       <source>Mercurial command</source>
       <translation>Comando Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1457" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1492" />
       <source>Copying {0}</source>
       <translation>Copia di {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1720" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1699" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1746" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737" />
       <source>Mercurial Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1721" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1759" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2391" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2380" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1797" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2457" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2446" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1835" />
       <source>Apply changegroups</source>
       <translation>Applica changegroup</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1800" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1838" />
       <source>Pulling from a remote Mercurial repository</source>
       <translation>Pulling da un repository Mercurial remoto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1845" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1884" />
       <source>Pushing to a remote Mercurial repository</source>
       <translation>Pushing in un repository Mercurial remoto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1985" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2027" />
       <source>Marking as 'unresolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1987" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2029" />
       <source>Marking as 'resolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2009" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2051" />
       <source>Aborting uncommitted merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2032" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2075" />
       <source>Creating branch in the Mercurial repository</source>
       <translation>Creazione Branch nel repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2040" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2086" />
       <source>Created new branch &lt;{0}&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2095" />
       <source>Showing current branch</source>
       <translation>Visualizzazione branch corrente</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2136" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2184" />
       <source>Verifying the integrity of the Mercurial repository</source>
       <translation>Verifica dell'integrità del repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2149" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2200" />
       <source>Showing the combined configuration settings</source>
       <translation>Visualizzazione combinata della impostazioni di configurazione</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2160" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2215" />
       <source>Showing aliases for remote repositories</source>
       <translation>Visualizzazione degli alias per i repository remoti</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2171" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230" />
       <source>Recovering from interrupted transaction</source>
       <translation>Recupero da una transazione interrotta</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2182" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2245" />
       <source>Identifying project directory</source>
       <translation>Identificazione directory del progetto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2227" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2291" />
       <source>Create .hgignore file</source>
       <translation>Crea il file .hgignore</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2292" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2329" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2303" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2285" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2351" />
       <source>Create changegroup</source>
       <translation>Crea changegroup</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2287" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2353" />
       <source>Mercurial Changegroup Files (*.hg)</source>
       <translation>Mercurial Changegroup Files (*.hg)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2304" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370" />
       <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file changegroup di Mercurial&lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2409" />
       <source>Preview changegroup</source>
       <translation>Anteprima changegroup</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2372" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2345" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2438" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2411" />
       <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
       <translation>Mercurial Changegroup Files (*.hg);;All Files (*)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2381" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2447" />
       <source>Shall the working directory be updated?</source>
       <translation>Le directory di lavoro devono essere aggiornate ?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2413" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2479" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation>Sottocomando Bisect ({0}) non valido.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2433" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2501" />
       <source>Mercurial Bisect ({0})</source>
       <translation>Mercurial Bisect ({0})</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2527" />
       <source>Removing files from the Mercurial repository only</source>
       <translation>Rimozione di file dal solo repository Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2500" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2481" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2576" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2557" />
       <source>Backing out changeset</source>
       <translation>Ritiro changeset</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2482" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2558" />
       <source>No revision given. Aborting...</source>
       <translation>Nessuna revisione fornita. Termino...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2516" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2511" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2593" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2587" />
       <source>Rollback last transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2512" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2588" />
       <source>Are you sure you want to rollback the last transaction?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2579" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2657" />
       <source>Import Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2627" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2707" />
       <source>Export Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2749" />
       <source>Change Phase</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2724" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2804" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2843" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2853" />
       <source>Copy Changesets (Stop)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2783" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2863" />
       <source>Copy Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2806" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2887" />
       <source>Create Unversioned Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2820" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2902" />
       <source>Delete All Backups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2821" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2903" />
       <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2912" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2892" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2881" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2994" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2963" />
       <source>Add Sub-repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2951" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2882" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3033" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2964" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2893" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2975" />
       <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2969" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2913" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3051" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2995" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2968" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2950" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2936" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3050" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3032" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3018" />
       <source>Remove Sub-repositories</source>
       <translation type="unfinished">Rimuovi sotto-archivi</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2937" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3019" />
       <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3056" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3296" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3138" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3057" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3139" />
       <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3207" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3297" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3329" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3420" />
       <source>Mercurial Bookmark</source>
       <translation type="unfinished">Segnalibro Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3437" />
       <source>Delete Bookmark</source>
       <translation type="unfinished">Cancella segnalibro</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3347" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3438" />
       <source>Select the bookmark to be deleted:</source>
       <translation type="unfinished">Seleziona il segnalibro da cancellare:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3449" />
       <source>Delete Mercurial Bookmark</source>
       <translation type="unfinished">Cancella Segnalibro Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3382" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3476" />
       <source>Rename Mercurial Bookmark</source>
       <translation type="unfinished">Rinomina Segnalibro Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3421" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3518" />
       <source>Move Mercurial Bookmark</source>
       <translation type="unfinished">Sposta Segnalibro Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3502" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3600" />
       <source>Pull Bookmark</source>
       <translation type="unfinished">Estrai Segnalibro</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3503" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3601" />
       <source>Select the bookmark to be pulled:</source>
       <translation type="unfinished">Seleziona il segnalibro da estrarre:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3515" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3613" />
       <source>Pulling bookmark from a remote Mercurial repository</source>
       <translation type="unfinished">Etrae segnalibro da un repository Mercurial remoto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3641" />
       <source>Push Bookmark</source>
       <translation type="unfinished">Inserisce Segnalibro</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3542" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3642" />
       <source>Select the bookmark to be push:</source>
       <translation type="unfinished">Seleziona il segnalibro da inserire:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3657" />
       <source>Pushing bookmark to a remote Mercurial repository</source>
       <translation type="unfinished">Inserisce segnalibro in un repository Mercurial remoto</translation>
     </message>
@@ -43286,22 +43301,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="644" />
       <source>Delete Host Minimum Protocol</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="643" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="645" />
       <source>&lt;p&gt;Shall the minimum protocol entry for host &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="708" />
       <source>Edit User Configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="707" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="709" />
       <source>You will loose all changes made in this dialog. Shall the data be saved first?</source>
       <translation type="unfinished" />
     </message>
@@ -43421,22 +43436,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="79" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="108" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="164" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -49074,52 +49089,52 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="300" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="303" />
       <source>Imports Sorting Failure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="301" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="304" />
       <source>&lt;p&gt;Imports sorting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="352" />
-      <source>would resort</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../CodeFormatting/IsortFormattingDialog.py" line="355" />
+      <source>would resort</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="358" />
       <source>resorted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="360" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="363" />
       <source>unchanged</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="364" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="367" />
       <source>skipped</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="368" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="371" />
       <source>failed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="373" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="376" />
       <source>error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="374" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="377" />
       <source>Unsupported 'isort' action ({0}) given.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="381" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="384" />
       <source>invalid status ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -49256,7 +49271,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="682" />
+      <location filename="../JediInterface/JediServer.py" line="683" />
       <location filename="../JediInterface/JediServer.py" line="522" />
       <source>Rename Variable</source>
       <translation type="unfinished" />
@@ -49287,27 +49302,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="690" />
+      <location filename="../JediInterface/JediServer.py" line="692" />
       <source>Refactoring</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="691" />
+      <location filename="../JediInterface/JediServer.py" line="693" />
       <source>&lt;p&gt;The refactoring could not be performed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="749" />
+      <location filename="../JediInterface/JediServer.py" line="751" />
       <source>Apply Refactoring</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="750" />
+      <location filename="../JediInterface/JediServer.py" line="752" />
       <source>&lt;p&gt;The refactoring could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="786" />
+      <location filename="../JediInterface/JediServer.py" line="788" />
       <source>The data received from the Jedi server could not be decoded. Please report this issue with the received data to the eric bugs email address.
 Error: {0}
 Data:
@@ -49316,7 +49331,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="796" />
+      <location filename="../JediInterface/JediServer.py" line="798" />
       <source>An exception happened in the Jedi client. Please report it to the eric bugs email address.
 Exception: {0}
 Value: {1}
@@ -49325,25 +49340,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="838" />
+      <location filename="../JediInterface/JediServer.py" line="840" />
       <source>The jedi and/or parso library is not installed.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="843" />
+      <location filename="../JediInterface/JediServer.py" line="845" />
       <source>'{0}' is not supported because the configured interpreter could not be started.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="851" />
+      <location filename="../JediInterface/JediServer.py" line="853" />
       <source>'{0}' is not supported because no suitable interpreter is configured.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="953" />
+      <location filename="../JediInterface/JediServer.py" line="955" />
       <source>Jedi</source>
       <translation type="unfinished" />
     </message>
@@ -49351,37 +49366,37 @@
   <context>
     <name>Largefiles</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="72" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="75" />
       <source>Convert Project - Converting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="88" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="92" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="89" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="93" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="100" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="104" />
       <source>Convert Project - Extracting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="145" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="150" />
       <source>Adding files to the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="174" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="182" />
       <source>Pulling large files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="196" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="205" />
       <source>Verifying the integrity of large files</source>
       <translation type="unfinished" />
     </message>
@@ -50694,13 +50709,13 @@
     <name>Lexers</name>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="412" />
-      <location filename="../Preferences/__init__.py" line="596" />
+      <location filename="../Preferences/__init__.py" line="597" />
       <source>Python Files (*.py *.py3)</source>
       <translation type="unfinished">File Python (*.py *.py3)</translation>
     </message>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="505" />
-      <location filename="../Preferences/__init__.py" line="599" />
+      <location filename="../Preferences/__init__.py" line="600" />
       <source>Python3 Files (*.py)</source>
       <translation>Python3 Files (*.py)</translation>
     </message>
@@ -52529,18 +52544,18 @@
   <context>
     <name>MicroPythonDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="356" />
+      <location filename="../MicroPython/Devices/__init__.py" line="369" />
       <source>Generic MicroPython Board</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="403" />
+      <location filename="../MicroPython/Devices/__init__.py" line="416" />
       <source>RP2040/RP2350 based</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="566" />
-      <location filename="../MicroPython/Devices/__init__.py" line="555" />
+      <location filename="../MicroPython/Devices/__init__.py" line="579" />
+      <location filename="../MicroPython/Devices/__init__.py" line="568" />
       <source>Unknown Device</source>
       <translation type="unfinished" />
     </message>
@@ -53937,343 +53952,343 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="737" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="724" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="740" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="725" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="728" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="735" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1193" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1185" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="735" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1196" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1188" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="738" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="796" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="787" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="799" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
       <source>Run Script</source>
       <translation type="unfinished">Esegui Script</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="779" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
       <source>There is no editor open. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="788" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="797" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="800" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="836" />
       <source>Start Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="834" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="837" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="849" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="852" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="866" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="869" />
       <source>Unsaved Chart Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="867" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="870" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="915" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="918" />
       <source>Start File Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="916" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="919" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="939" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1012" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1015" />
       <source>Downloads</source>
       <translation type="unfinished">Downloads</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1059" />
-      <source>Show Version</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1062" />
-      <source>Show Implementation</source>
+      <source>Show Version</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
+      <source>Show Implementation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Board Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1268" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1271" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1073" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1073" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Show Device Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
-      <source>Show Local Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <source>Show Local Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1082" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1085" />
       <source>Show Builtin Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1094" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1086" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1689" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1097" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1089" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1723" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1720" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1090" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1725" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1093" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1497" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1501" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1103" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1523" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1514" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1104" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1527" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1518" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1107" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1125" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1128" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1132" />
-      <source>Show Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1135" />
+      <source>Show Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Convert To UF2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1136" />
-      <source>Flash UF2 Device</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1139" />
-      <source>Manage Unknown Devices</source>
+      <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
-      <source>Ignored Serial Devices</source>
+      <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
-      <source>Configure</source>
-      <translation type="unfinished">Configura</translation>
+      <source>Ignored Serial Devices</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
+      <source>Configure</source>
+      <translation type="unfinished">Configura</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Quit</source>
       <translation type="unfinished">Esci</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1157" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1160" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1168" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1164" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1171" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1167" />
       <source>Device Version Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1172" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1202" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1215" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1206" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1218" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1209" />
       <source>Device Implementation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1207" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1210" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1216" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1219" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1272" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1299" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1302" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1315" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1318" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1327" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
       <source>Local Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1369" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1352" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1372" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1355" />
       <source>Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1353" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1356" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1370" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1373" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1394" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1397" />
       <source>Error handling device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1395" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1398" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1437" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1440" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1463" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1466" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished">File Python (*.py);;Tutti i File (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1473" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1476" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1483" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1486" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1515" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1519" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1607" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1611" />
       <source>Add Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1608" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1657" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1709" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1714" />
       <source>Package '{0}' was installed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1724" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1729" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -56155,237 +56170,237 @@
   <context>
     <name>MultiProject</name>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="338" />
-      <location filename="../MultiProject/MultiProject.py" line="324" />
+      <location filename="../MultiProject/MultiProject.py" line="341" />
+      <location filename="../MultiProject/MultiProject.py" line="327" />
       <source>Copy Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="325" />
+      <location filename="../MultiProject/MultiProject.py" line="328" />
       <source>Enter directory for the new project (must not exist already):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="339" />
+      <location filename="../MultiProject/MultiProject.py" line="342" />
       <source>&lt;p&gt;The source project &lt;b&gt;{0}&lt;/b&gt; could not be copied to its destination &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="349" />
+      <location filename="../MultiProject/MultiProject.py" line="352" />
       <source>{0} - Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="499" />
+      <location filename="../MultiProject/MultiProject.py" line="502" />
       <source>Open Multi Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="556" />
-      <location filename="../MultiProject/MultiProject.py" line="546" />
-      <location filename="../MultiProject/MultiProject.py" line="501" />
+      <location filename="../MultiProject/MultiProject.py" line="559" />
+      <location filename="../MultiProject/MultiProject.py" line="549" />
+      <location filename="../MultiProject/MultiProject.py" line="504" />
       <source>Multi Project Files (*.emj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="554" />
+      <location filename="../MultiProject/MultiProject.py" line="557" />
       <source>Save Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="570" />
+      <location filename="../MultiProject/MultiProject.py" line="573" />
       <source>Save File</source>
       <translation>Salva file</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="571" />
+      <location filename="../MultiProject/MultiProject.py" line="574" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="598" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
       <source>Close Multiproject</source>
       <translation>Chiudi Multiprogetto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="599" />
+      <location filename="../MultiProject/MultiProject.py" line="602" />
       <source>The current multiproject has unsaved changes.</source>
       <translation>Il multiprogetto corrente ha delle modifiche non salvata.</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="653" />
+      <location filename="../MultiProject/MultiProject.py" line="656" />
       <source>New multiproject</source>
       <translation>Nuovo multiprogetto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="655" />
+      <location filename="../MultiProject/MultiProject.py" line="658" />
       <source>&amp;New...</source>
       <translation>&amp;Nuovo...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="661" />
+      <location filename="../MultiProject/MultiProject.py" line="664" />
       <source>Generate a new multiproject</source>
       <translation>Genera un nuovo multiprogetto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="663" />
+      <location filename="../MultiProject/MultiProject.py" line="666" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nuovo...&lt;/b&gt;&lt;p&gt;Apre un dialogo per l'inserimento delle informazioni per un nuovo multiprogetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="673" />
+      <location filename="../MultiProject/MultiProject.py" line="676" />
       <source>Open multiproject</source>
       <translation>Apri multiprogetto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="675" />
+      <location filename="../MultiProject/MultiProject.py" line="678" />
       <source>&amp;Open...</source>
       <translation>&amp;Apri...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="681" />
+      <location filename="../MultiProject/MultiProject.py" line="684" />
       <source>Open an existing multiproject</source>
       <translation>Apri un multiprogetto esistente</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="683" />
+      <location filename="../MultiProject/MultiProject.py" line="686" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Apri...&lt;/b&gt;&lt;p&gt;Apre un multiprogetto esistente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="689" />
+      <location filename="../MultiProject/MultiProject.py" line="692" />
       <source>Close multiproject</source>
       <translation>Chiudi multiprogetto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="691" />
+      <location filename="../MultiProject/MultiProject.py" line="694" />
       <source>&amp;Close</source>
       <translation>&amp;Chiudi</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="697" />
+      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>Close the current multiproject</source>
       <translation>Chiudi il multiprogetto corrente</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="699" />
+      <location filename="../MultiProject/MultiProject.py" line="702" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Chiudi&lt;/b&gt;&lt;p&gt;Chiude l'attuale multiprogetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="705" />
+      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>Save multiproject</source>
       <translation>Salva multiprogetto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="707" />
+      <location filename="../MultiProject/MultiProject.py" line="710" />
       <source>&amp;Save</source>
       <translation>&amp;Salva</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="713" />
+      <location filename="../MultiProject/MultiProject.py" line="716" />
       <source>Save the current multiproject</source>
       <translation>Salva il multiprogetto corrente</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="715" />
+      <location filename="../MultiProject/MultiProject.py" line="718" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Salva&lt;/b&gt;&lt;p&gt;Salva l'attuale multiprogetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="721" />
+      <location filename="../MultiProject/MultiProject.py" line="724" />
       <source>Save multiproject as</source>
       <translation>Salva multiprogetto come</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="723" />
+      <location filename="../MultiProject/MultiProject.py" line="726" />
       <source>Save &amp;as...</source>
       <translation>S&amp;alva come...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="730" />
-      <source>Save the current multiproject to a new file</source>
-      <translation>Salva il multiprogetto attuale come un nuovo file</translation>
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="733" />
+      <source>Save the current multiproject to a new file</source>
+      <translation>Salva il multiprogetto attuale come un nuovo file</translation>
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Salva as &lt;/b&gt;&lt;p&gt;Salva l'attuale multiprogetto come nuovo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="742" />
+      <location filename="../MultiProject/MultiProject.py" line="745" />
       <source>Add project to multiproject</source>
       <translation>Aggiungi un progetto al multiprogetto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
+      <location filename="../MultiProject/MultiProject.py" line="747" />
       <source>Add &amp;project...</source>
       <translation>Aggiungi &amp;progetto...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="751" />
-      <source>Add a project to the current multiproject</source>
-      <translation>Aggiunti un progetto al multiprogetto corrente</translation>
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="754" />
+      <source>Add a project to the current multiproject</source>
+      <translation>Aggiunti un progetto al multiprogetto corrente</translation>
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="757" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aggiungi progetto...&lt;/b&gt;&lt;p&gt;Apre un dialogo per aggiungere un progetto al corrente multiprogetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <location filename="../MultiProject/MultiProject.py" line="767" />
       <source>Multiproject properties</source>
       <translation>Proprietà multiprogetto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="766" />
+      <location filename="../MultiProject/MultiProject.py" line="769" />
       <source>&amp;Properties...</source>
       <translation>&amp;Proprietà...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="772" />
+      <location filename="../MultiProject/MultiProject.py" line="775" />
       <source>Show the multiproject properties</source>
       <translation>Mostra le proprietà del multiprogetto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="774" />
+      <location filename="../MultiProject/MultiProject.py" line="777" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Proprietà...&lt;/b&gt;&lt;p&gt;Mosta un dialogo per modificare le proprietà di un multiprogetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="786" />
-      <location filename="../MultiProject/MultiProject.py" line="784" />
+      <location filename="../MultiProject/MultiProject.py" line="789" />
+      <location filename="../MultiProject/MultiProject.py" line="787" />
       <source>Clear Out</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="793" />
-      <source>Remove all projects marked as removed</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="796" />
+      <source>Remove all projects marked as removed</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="799" />
       <source>&lt;b&gt;Clear Out...&lt;/b&gt;&lt;p&gt;This removes all projects marked as removed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="818" />
+      <location filename="../MultiProject/MultiProject.py" line="821" />
       <source>&amp;Multiproject</source>
       <translation>&amp;Multiprogetto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
+      <location filename="../MultiProject/MultiProject.py" line="822" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation>Apri un multiprogetto &amp;recente</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="862" />
-      <location filename="../MultiProject/MultiProject.py" line="860" />
+      <location filename="../MultiProject/MultiProject.py" line="865" />
+      <location filename="../MultiProject/MultiProject.py" line="863" />
       <source>Multiproject</source>
       <translation>Multiprogetto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="918" />
+      <location filename="../MultiProject/MultiProject.py" line="921" />
       <source>&amp;Clear</source>
       <translation>Pulis&amp;ci</translation>
     </message>
@@ -59440,108 +59455,108 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="562" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="583" />
+      <location filename="../PipInterface/Pip.py" line="585" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="618" />
-      <location filename="../PipInterface/Pip.py" line="608" />
+      <location filename="../PipInterface/Pip.py" line="620" />
+      <location filename="../PipInterface/Pip.py" line="610" />
       <source>Install 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="739" />
-      <location filename="../PipInterface/Pip.py" line="609" />
+      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="611" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="619" />
+      <location filename="../PipInterface/Pip.py" line="621" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="638" />
+      <location filename="../PipInterface/Pip.py" line="641" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="766" />
-      <location filename="../PipInterface/Pip.py" line="695" />
-      <location filename="../PipInterface/Pip.py" line="667" />
-      <location filename="../PipInterface/Pip.py" line="658" />
+      <location filename="../PipInterface/Pip.py" line="775" />
+      <location filename="../PipInterface/Pip.py" line="701" />
+      <location filename="../PipInterface/Pip.py" line="671" />
+      <location filename="../PipInterface/Pip.py" line="662" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="767" />
-      <location filename="../PipInterface/Pip.py" line="696" />
-      <location filename="../PipInterface/Pip.py" line="659" />
+      <location filename="../PipInterface/Pip.py" line="776" />
+      <location filename="../PipInterface/Pip.py" line="702" />
+      <location filename="../PipInterface/Pip.py" line="663" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="712" />
+      <location filename="../PipInterface/Pip.py" line="719" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="738" />
+      <location filename="../PipInterface/Pip.py" line="758" />
+      <location filename="../PipInterface/Pip.py" line="747" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="750" />
+      <location filename="../PipInterface/Pip.py" line="759" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
+      <location filename="../PipInterface/Pip.py" line="786" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1185" />
+      <location filename="../PipInterface/Pip.py" line="1195" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1211" />
-      <location filename="../PipInterface/Pip.py" line="1202" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
+      <location filename="../PipInterface/Pip.py" line="1212" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1203" />
+      <location filename="../PipInterface/Pip.py" line="1213" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1235" />
-      <location filename="../PipInterface/Pip.py" line="1228" />
+      <location filename="../PipInterface/Pip.py" line="1245" />
+      <location filename="../PipInterface/Pip.py" line="1238" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1239" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1260" />
-      <location filename="../PipInterface/Pip.py" line="1252" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
+      <location filename="../PipInterface/Pip.py" line="1262" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1263" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -62129,18 +62144,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1904" />
+      <location filename="../Preferences/__init__.py" line="1905" />
       <source>Export Preferences</source>
       <translation>Esporta Preferenze</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1933" />
-      <location filename="../Preferences/__init__.py" line="1906" />
+      <location filename="../Preferences/__init__.py" line="1934" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>File proprietà (*.ini);;Tutti i file(*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1931" />
+      <location filename="../Preferences/__init__.py" line="1932" />
       <source>Import Preferences</source>
       <translation>Importa Preferenze</translation>
     </message>
@@ -62161,7 +62176,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="509" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="520" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -62788,430 +62803,430 @@
   <context>
     <name>Project</name>
     <message>
-      <location filename="../Project/Project.py" line="187" />
+      <location filename="../Project/Project.py" line="188" />
       <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source>
       <translation>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="250" />
-      <source>Add File Category</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="251" />
+      <source>Add File Category</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="252" />
       <source>&lt;p&gt;The file category &lt;b&gt;{0}&lt;/b&gt; has already been added. This attempt will be ignored.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="336" />
-      <source>PyQt5 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="337" />
-      <source>PyQt5 Console</source>
+      <source>PyQt5 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="338" />
-      <source>PyQt6 GUI</source>
+      <source>PyQt5 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="339" />
-      <source>PyQt6 Console</source>
+      <source>PyQt6 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="340" />
-      <source>Eric7 Plugin</source>
+      <source>PyQt6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="341" />
-      <source>Console</source>
-      <translation>Console</translation>
+      <source>Eric7 Plugin</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="342" />
+      <source>Console</source>
+      <translation>Console</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="343" />
       <source>Other</source>
       <translation>Altro</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="361" />
-      <source>PySide2 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="362" />
+      <source>PySide2 GUI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="363" />
       <source>PySide2 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="366" />
-      <source>PySide6 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="367" />
+      <source>PySide6 GUI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="465" />
-      <location filename="../Project/Project.py" line="453" />
-      <location filename="../Project/Project.py" line="442" />
-      <source>Registering Project Type</source>
-      <translation>Registrazione tipo progetto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="443" />
-      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="454" />
-      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="466" />
+      <location filename="../Project/Project.py" line="454" />
+      <location filename="../Project/Project.py" line="443" />
+      <source>Registering Project Type</source>
+      <translation>Registrazione tipo progetto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="444" />
+      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="455" />
+      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="467" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="771" />
+      <location filename="../Project/Project.py" line="772" />
       <source>All Files (*)</source>
       <translation type="unfinished">Tutti i file (*)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1332" />
+      <location filename="../Project/Project.py" line="1333" />
       <source>Read Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1578" />
-      <location filename="../Project/Project.py" line="1552" />
-      <location filename="../Project/Project.py" line="1516" />
-      <location filename="../Project/Project.py" line="1434" />
-      <location filename="../Project/Project.py" line="1395" />
-      <location filename="../Project/Project.py" line="1370" />
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1579" />
+      <location filename="../Project/Project.py" line="1553" />
+      <location filename="../Project/Project.py" line="1517" />
+      <location filename="../Project/Project.py" line="1435" />
+      <location filename="../Project/Project.py" line="1396" />
+      <location filename="../Project/Project.py" line="1371" />
+      <location filename="../Project/Project.py" line="1334" />
       <source>Please save the project first.</source>
       <translation>Prima salvare il progetto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1369" />
+      <location filename="../Project/Project.py" line="1370" />
       <source>Save Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1411" />
-      <location filename="../Project/Project.py" line="1394" />
+      <location filename="../Project/Project.py" line="1412" />
+      <location filename="../Project/Project.py" line="1395" />
       <source>Delete Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1401" />
+      <location filename="../Project/Project.py" line="1402" />
       <source>Delete Remote Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1420" />
+      <location filename="../Project/Project.py" line="1421" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La sessione del progetto &lt;b&gt;{0}&lt;/b&gt; non può essere cancellato.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1433" />
+      <location filename="../Project/Project.py" line="1434" />
       <source>Read Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1515" />
+      <location filename="../Project/Project.py" line="1516" />
       <source>Read Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1551" />
+      <location filename="../Project/Project.py" line="1552" />
       <source>Save Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1594" />
-      <location filename="../Project/Project.py" line="1577" />
+      <location filename="../Project/Project.py" line="1595" />
+      <location filename="../Project/Project.py" line="1578" />
       <source>Delete Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1584" />
+      <location filename="../Project/Project.py" line="1585" />
       <source>Delete Remote Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1603" />
+      <location filename="../Project/Project.py" line="1604" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file delle proprietà del debugger del progetto&lt;b&gt;{0}&lt;/b&gt; non può essere cancellato.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1774" />
+      <location filename="../Project/Project.py" line="1777" />
       <source>Add Language</source>
       <translation>Aggiungi Lingua</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1775" />
+      <location filename="../Project/Project.py" line="1778" />
       <source>You have to specify a translation pattern first.</source>
       <translation>Devi prima specificare un pattern di traduzione.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1916" />
+      <location filename="../Project/Project.py" line="1919" />
       <source>Delete Translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1943" />
-      <location filename="../Project/Project.py" line="1917" />
+      <location filename="../Project/Project.py" line="1946" />
+      <location filename="../Project/Project.py" line="1920" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1942" />
+      <location filename="../Project/Project.py" line="1945" />
       <source>Delete translation</source>
       <translation>Cancella traduzione</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2093" />
-      <location filename="../Project/Project.py" line="2076" />
+      <location filename="../Project/Project.py" line="2098" />
+      <location filename="../Project/Project.py" line="2081" />
       <source>Add File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2195" />
-      <location filename="../Project/Project.py" line="2077" />
+      <location filename="../Project/Project.py" line="2200" />
+      <location filename="../Project/Project.py" line="2082" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già.&lt;/p&gt;&lt;p&gt;Sovrascriverlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2094" />
+      <location filename="../Project/Project.py" line="2099" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file selezionato &lt;b&gt;{0}&lt;/b&gt; non può essere aggiunto a &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Motivo: {2}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2106" />
+      <location filename="../Project/Project.py" line="2111" />
       <source>Add file</source>
       <translation>Aggiungi file</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2289" />
-      <location filename="../Project/Project.py" line="2107" />
+      <location filename="../Project/Project.py" line="2296" />
+      <location filename="../Project/Project.py" line="2112" />
       <source>The target directory must not be empty.</source>
       <translation>La directory di destinazione non deve essere vuota.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2194" />
-      <location filename="../Project/Project.py" line="2167" />
-      <location filename="../Project/Project.py" line="2147" />
+      <location filename="../Project/Project.py" line="2199" />
+      <location filename="../Project/Project.py" line="2172" />
+      <location filename="../Project/Project.py" line="2152" />
       <source>Add Directory</source>
       <translation type="unfinished">Aggiungi Cartella</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2148" />
+      <location filename="../Project/Project.py" line="2153" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La directory di partenza non contiene nessun file appartenente alla categoria selezionata.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2168" />
+      <location filename="../Project/Project.py" line="2173" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;La directory di destinazione&lt;b&gt;{0}&lt;/b&gt; non può essere creata.&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2300" />
-      <location filename="../Project/Project.py" line="2288" />
+      <location filename="../Project/Project.py" line="2307" />
+      <location filename="../Project/Project.py" line="2295" />
       <source>Add directory</source>
       <translation>Aggiungi directory</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2301" />
+      <location filename="../Project/Project.py" line="2308" />
       <source>The source directory must not be empty.</source>
       <translation>La directory sorgente non deve essere vuota.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2415" />
-      <location filename="../Project/Project.py" line="2397" />
+      <location filename="../Project/Project.py" line="2422" />
+      <location filename="../Project/Project.py" line="2404" />
+      <location filename="../Project/Project.py" line="2388" />
       <location filename="../Project/Project.py" line="2381" />
-      <location filename="../Project/Project.py" line="2374" />
       <source>Rename File</source>
       <translation>Rinomina File</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8055" />
-      <location filename="../Project/Project.py" line="3898" />
-      <location filename="../Project/Project.py" line="2398" />
+      <location filename="../Project/Project.py" line="8089" />
+      <location filename="../Project/Project.py" line="3909" />
+      <location filename="../Project/Project.py" line="2405" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2416" />
+      <location filename="../Project/Project.py" line="2423" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere rinominato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2683" />
+      <location filename="../Project/Project.py" line="2690" />
       <source>Delete File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2684" />
+      <location filename="../Project/Project.py" line="2691" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2712" />
+      <location filename="../Project/Project.py" line="2719" />
       <source>Delete Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2713" />
+      <location filename="../Project/Project.py" line="2720" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2846" />
+      <location filename="../Project/Project.py" line="2853" />
       <source>Create project directory</source>
       <translation>Crea la directory del progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2847" />
+      <location filename="../Project/Project.py" line="2854" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La directory del progetto &lt;b&gt;{0}&lt;/b&gt; non può essere creata.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3671" />
-      <location filename="../Project/Project.py" line="2947" />
+      <location filename="../Project/Project.py" line="3682" />
+      <location filename="../Project/Project.py" line="2954" />
       <source>Create project management directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3672" />
-      <location filename="../Project/Project.py" line="2948" />
+      <location filename="../Project/Project.py" line="3683" />
+      <location filename="../Project/Project.py" line="2955" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2988" />
+      <location filename="../Project/Project.py" line="2995" />
       <source>Create main script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2989" />
+      <location filename="../Project/Project.py" line="2996" />
       <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3454" />
-      <location filename="../Project/Project.py" line="3013" />
+      <location filename="../Project/Project.py" line="3463" />
+      <location filename="../Project/Project.py" line="3020" />
       <source>Create Makefile</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3455" />
-      <location filename="../Project/Project.py" line="3014" />
+      <location filename="../Project/Project.py" line="3464" />
+      <location filename="../Project/Project.py" line="3021" />
       <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3701" />
-      <location filename="../Project/Project.py" line="3164" />
-      <location filename="../Project/Project.py" line="3135" />
-      <location filename="../Project/Project.py" line="3103" />
-      <location filename="../Project/Project.py" line="3087" />
-      <location filename="../Project/Project.py" line="3062" />
-      <location filename="../Project/Project.py" line="3024" />
+      <location filename="../Project/Project.py" line="3712" />
+      <location filename="../Project/Project.py" line="3173" />
+      <location filename="../Project/Project.py" line="3144" />
+      <location filename="../Project/Project.py" line="3112" />
+      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="3069" />
+      <location filename="../Project/Project.py" line="3031" />
       <source>New Project</source>
       <translation>Nuovo Progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3025" />
+      <location filename="../Project/Project.py" line="3032" />
       <source>Add existing files to the project?</source>
       <translation>Aggiungi file esistenti al progetto ?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3702" />
-      <location filename="../Project/Project.py" line="3063" />
+      <location filename="../Project/Project.py" line="3713" />
+      <location filename="../Project/Project.py" line="3070" />
       <source>Select Version Control System</source>
       <translation>Selezione il Sistema di Controllo della Versione (VCS)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3165" />
-      <location filename="../Project/Project.py" line="3088" />
+      <location filename="../Project/Project.py" line="3174" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Would you like to edit the VCS command options?</source>
       <translation>Vuoi modificare le opzioni del comando VCS ?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3104" />
+      <location filename="../Project/Project.py" line="3113" />
       <source>Shall the project file be added to the repository?</source>
       <translation>Il file progetto deve essere aggiunto al repository ?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3141" />
-      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3150" />
+      <location filename="../Project/Project.py" line="3139" />
       <source>None</source>
       <translation>Nessuno</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3145" />
       <source>Select version control system for the project</source>
       <translation>Seleziona il version control system per il progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3347" />
+      <location filename="../Project/Project.py" line="3356" />
       <source>Translation Pattern</source>
       <translation>Pattern di traduzione</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3348" />
+      <location filename="../Project/Project.py" line="3357" />
       <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
       <translation>Inserisci il path per il file di traduzione (usa '%language% al posto del codice lingua):</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3650" />
+      <location filename="../Project/Project.py" line="3661" />
       <source>Open Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8041" />
-      <location filename="../Project/Project.py" line="8035" />
-      <location filename="../Project/Project.py" line="8025" />
-      <location filename="../Project/Project.py" line="3883" />
-      <location filename="../Project/Project.py" line="3873" />
-      <location filename="../Project/Project.py" line="3652" />
+      <location filename="../Project/Project.py" line="8075" />
+      <location filename="../Project/Project.py" line="8069" />
+      <location filename="../Project/Project.py" line="8059" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3884" />
+      <location filename="../Project/Project.py" line="3663" />
       <source>Project Files (*.epj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3897" />
-      <location filename="../Project/Project.py" line="3881" />
+      <location filename="../Project/Project.py" line="3908" />
+      <location filename="../Project/Project.py" line="3892" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3936" />
+      <location filename="../Project/Project.py" line="3947" />
       <source>Close Project</source>
       <translation>Chiudi progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3937" />
+      <location filename="../Project/Project.py" line="3948" />
       <source>The current project has unsaved changes.</source>
       <translation>Il progetto attuale ha delle modifiche non salvate.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4137" />
-      <location filename="../Project/Project.py" line="4101" />
+      <location filename="../Project/Project.py" line="4148" />
+      <location filename="../Project/Project.py" line="4112" />
       <source>Syntax Errors Detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4138" />
-      <location filename="../Project/Project.py" line="4102" />
+      <location filename="../Project/Project.py" line="4149" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>Il progetto contiene %n file con errori di sintassi.</numerusform>
@@ -63219,1268 +63234,1268 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4796" />
+      <location filename="../Project/Project.py" line="4807" />
       <source>New project</source>
       <translation>Nuovo progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4798" />
+      <location filename="../Project/Project.py" line="4809" />
       <source>&amp;New...</source>
       <translation>&amp;Nuovo...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4804" />
+      <location filename="../Project/Project.py" line="4815" />
       <source>Generate a new project</source>
       <translation>Genera un nuovo progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4806" />
+      <location filename="../Project/Project.py" line="4817" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nuovo...&lt;/b&gt;&lt;p&gt;Apre un dialogo per l'inserimento delle informazioni per un nuovo progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4816" />
+      <location filename="../Project/Project.py" line="4827" />
       <source>Open project</source>
       <translation>Apri progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4818" />
+      <location filename="../Project/Project.py" line="4829" />
       <source>&amp;Open...</source>
       <translation>&amp;Apri...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4824" />
+      <location filename="../Project/Project.py" line="4835" />
       <source>Open an existing project</source>
       <translation>Apri un progetto esistente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4826" />
+      <location filename="../Project/Project.py" line="4837" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Apri...&lt;/b&gt;&lt;p&gt;Apre un progetto esistente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4832" />
+      <location filename="../Project/Project.py" line="4843" />
       <source>Open remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4834" />
+      <location filename="../Project/Project.py" line="4845" />
       <source>Open (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4840" />
-      <source>Open an existing remote project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4842" />
-      <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4851" />
-      <source>Reload project</source>
+      <source>Open an existing remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4853" />
+      <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4862" />
+      <source>Reload project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4864" />
       <source>Re&amp;load</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4859" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>Reload the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4861" />
+      <location filename="../Project/Project.py" line="4872" />
       <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4867" />
+      <location filename="../Project/Project.py" line="4878" />
       <source>Close project</source>
       <translation>Chiudi progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4869" />
+      <location filename="../Project/Project.py" line="4880" />
       <source>&amp;Close</source>
       <translation>&amp;Chiudi</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4875" />
+      <location filename="../Project/Project.py" line="4886" />
       <source>Close the current project</source>
       <translation>Chiudi il progetto corrente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4877" />
+      <location filename="../Project/Project.py" line="4888" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Chiudi&lt;/b&gt;&lt;p&gt;Chiude l'attuale progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4883" />
+      <location filename="../Project/Project.py" line="4894" />
       <source>Save project</source>
       <translation>Salva progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5180" />
-      <location filename="../Project/Project.py" line="4885" />
+      <location filename="../Project/Project.py" line="5191" />
+      <location filename="../Project/Project.py" line="4896" />
       <source>&amp;Save</source>
       <translation>&amp;Salva</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4891" />
+      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation>Salva il progetto corrente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4893" />
+      <location filename="../Project/Project.py" line="4904" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Salva&lt;/b&gt;&lt;p&gt;Salva l'attuale progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4899" />
+      <location filename="../Project/Project.py" line="4910" />
       <source>Save project as</source>
       <translation>Salva progetto come</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4901" />
+      <location filename="../Project/Project.py" line="4912" />
       <source>Save &amp;as...</source>
       <translation>S&amp;alva come...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4907" />
-      <source>Save the current project to a new file</source>
-      <translation>Salva il progetto attuale come un nuovo file</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4909" />
-      <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Salva as &lt;/b&gt;&lt;p&gt;Salva l'attuale progetto come nuovo.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4918" />
-      <source>Save project as (Remote)</source>
-      <translation type="unfinished" />
+      <source>Save the current project to a new file</source>
+      <translation>Salva il progetto attuale come un nuovo file</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4920" />
+      <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Salva as &lt;/b&gt;&lt;p&gt;Salva l'attuale progetto come nuovo.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4929" />
+      <source>Save project as (Remote)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4931" />
       <source>Save as (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4927" />
+      <location filename="../Project/Project.py" line="4938" />
       <source>Save the current project to a new remote file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4930" />
+      <location filename="../Project/Project.py" line="4941" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4946" />
+      <location filename="../Project/Project.py" line="4957" />
       <source>Add files to project</source>
       <translation>Aggiungi file al progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4948" />
+      <location filename="../Project/Project.py" line="4959" />
       <source>Add &amp;files...</source>
       <translation>Aggiungi &amp;files...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4954" />
+      <location filename="../Project/Project.py" line="4965" />
       <source>Add files to the current project</source>
       <translation>Aggiungi file al progetto corrente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4956" />
-      <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Aggiungi files...&lt;/b&gt;&lt;p&gt;Apre un dialogo per aggiungere file al progetto corrente. Il posto dove aggiungerli è determinato dall'estensione.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4967" />
+      <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Aggiungi files...&lt;/b&gt;&lt;p&gt;Apre un dialogo per aggiungere file al progetto corrente. Il posto dove aggiungerli è determinato dall'estensione.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4978" />
       <source>Add directory to project</source>
       <translation>Aggiungi directory al progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4969" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Add directory...</source>
       <translation>Aggiungi directory...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4976" />
+      <location filename="../Project/Project.py" line="4987" />
       <source>Add a directory to the current project</source>
       <translation>Aggiungi una directory al progetto corrente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4979" />
+      <location filename="../Project/Project.py" line="4990" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aggiungi directory...&lt;/b&gt;&lt;p&gt;Apre un dialogo per aggiungere una directory al progetto corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4989" />
+      <location filename="../Project/Project.py" line="5000" />
       <source>Add translation to project</source>
       <translation>Aggiungi le traduzioni al progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4991" />
+      <location filename="../Project/Project.py" line="5002" />
       <source>Add &amp;translation...</source>
       <translation>Aggiungi &amp;traduzione...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4998" />
+      <location filename="../Project/Project.py" line="5009" />
       <source>Add a translation to the current project</source>
       <translation>Aggiungi le traduzioni al progetto corrente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5001" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Aggiungi traduzione...&lt;/b&gt;&lt;p&gt;Apre un dialogo per aggiungere una traduzione al progetto corrente.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5011" />
-      <source>Search new files</source>
-      <translation>Cerca nuovi file</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5012" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Aggiungi traduzione...&lt;/b&gt;&lt;p&gt;Apre un dialogo per aggiungere una traduzione al progetto corrente.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5022" />
+      <source>Search new files</source>
+      <translation>Cerca nuovi file</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation>Cerca &amp;nuovi file...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5018" />
+      <location filename="../Project/Project.py" line="5029" />
       <source>Search new files in the project directory.</source>
       <translation>Cerca nei file nella directory del progetto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5020" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5030" />
-      <source>Search Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5031" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5041" />
+      <source>Search Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5042" />
       <source>Search Project File...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5032" />
+      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5037" />
-      <source>Search for a file in the project list of files.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5039" />
-      <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5048" />
-      <source>Project properties</source>
-      <translation>Proprietà del progetto</translation>
+      <source>Search for a file in the project list of files.</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5050" />
+      <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5059" />
+      <source>Project properties</source>
+      <translation>Proprietà del progetto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5061" />
       <source>&amp;Properties...</source>
       <translation>&amp;Proprietà...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5056" />
-      <source>Show the project properties</source>
-      <translation>Mostra le proprietà del progetto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5058" />
-      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Proprietà...&lt;/b&gt;&lt;p&gt;Mosta un dialogo per modificare le proprietà di un progetto.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5067" />
-      <source>User project properties</source>
-      <translation>Proprietà utente del progetto</translation>
+      <source>Show the project properties</source>
+      <translation>Mostra le proprietà del progetto</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5069" />
+      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Proprietà...&lt;/b&gt;&lt;p&gt;Mosta un dialogo per modificare le proprietà di un progetto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5078" />
+      <source>User project properties</source>
+      <translation>Proprietà utente del progetto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5080" />
       <source>&amp;User Properties...</source>
       <translation>Proprietà &amp;utente...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5076" />
+      <location filename="../Project/Project.py" line="5087" />
       <source>Show the user specific project properties</source>
       <translation>Mostra le proprietà del multiprogetto specifiche dell'utente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5079" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Proprietà utente...&lt;/b&gt;&lt;p&gt;Mosta un dialogo per modificare le proprietà utente di un progetto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5089" />
-      <source>Filetype Associations</source>
-      <translation>Associazione tipi file</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5090" />
-      <source>Filetype Associations...</source>
-      <translation>Associazione tipi file...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5097" />
-      <source>Show the project file type associations</source>
-      <translation type="unfinished" />
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Proprietà utente...&lt;/b&gt;&lt;p&gt;Mosta un dialogo per modificare le proprietà utente di un progetto.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5100" />
+      <source>Filetype Associations</source>
+      <translation>Associazione tipi file</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5101" />
+      <source>Filetype Associations...</source>
+      <translation>Associazione tipi file...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5108" />
+      <source>Show the project file type associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5111" />
       <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5113" />
-      <source>Lexer Associations</source>
-      <translation>Associazioni analizzatore lessicale</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5114" />
-      <source>Lexer Associations...</source>
-      <translation>Associazioni analizzatore lessicale...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5121" />
-      <source>Show the project lexer associations (overriding defaults)</source>
-      <translation>Mostra le associazioni degli analizzatori lessicali del progetto (sovrascrivendo i default)</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5124" />
+      <source>Lexer Associations</source>
+      <translation>Associazioni analizzatore lessicale</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5125" />
+      <source>Lexer Associations...</source>
+      <translation>Associazioni analizzatore lessicale...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5132" />
+      <source>Show the project lexer associations (overriding defaults)</source>
+      <translation>Mostra le associazioni degli analizzatori lessicali del progetto (sovrascrivendo i default)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5135" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Associazioni analizzatore lessicale...&lt;/b&gt;&lt;p&gt;Mostra un dialogo per modificare le associazioni degli analizzatori lessicali dei progetti. Queste associazioni sovrascrivono the impostazioni globali. Gli analizzatori lessicali sono utilizzati per l'evidenziazione del testo nell'editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5142" />
+      <location filename="../Project/Project.py" line="5153" />
       <source>Debugger Properties</source>
       <translation>Proprietà Debugger</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5143" />
+      <location filename="../Project/Project.py" line="5154" />
       <source>Debugger &amp;Properties...</source>
       <translation>&amp;Proprietà Debugger...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5149" />
+      <location filename="../Project/Project.py" line="5160" />
       <source>Show the debugger properties</source>
       <translation>Mostra le proprietàd el debugger</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Proprietà debugger...&lt;/b&gt;&lt;p&gt;Mostra un dialogo per modificare le impostazioni specifiche per il progetto del debugger.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5161" />
-      <source>Load</source>
-      <translation>Carica</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5162" />
+      <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Proprietà debugger...&lt;/b&gt;&lt;p&gt;Mostra un dialogo per modificare le impostazioni specifiche per il progetto del debugger.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Load</source>
+      <translation>Carica</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
       <source>&amp;Load</source>
       <translation>&amp;Carica</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5168" />
-      <source>Load the debugger properties</source>
-      <translation>Carica le proprietàd el debugger</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5170" />
-      <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Carica le proprietà del debugger&lt;/b&gt;&lt;p&gt;Carica le proprietà del debugger specifiche per il progetto.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5179" />
+      <source>Load the debugger properties</source>
+      <translation>Carica le proprietàd el debugger</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5181" />
+      <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Carica le proprietà del debugger&lt;/b&gt;&lt;p&gt;Carica le proprietà del debugger specifiche per il progetto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5190" />
       <source>Save</source>
       <translation>Salva</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5186" />
-      <source>Save the debugger properties</source>
-      <translation>Salva le proprietà del debugger</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5188" />
-      <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Salva le proprietà del debugger&lt;/b&gt;&lt;p&gt;Salva le proprietà del debugger specifiche per il progetto.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5197" />
+      <source>Save the debugger properties</source>
+      <translation>Salva le proprietà del debugger</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5199" />
+      <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Salva le proprietà del debugger&lt;/b&gt;&lt;p&gt;Salva le proprietà del debugger specifiche per il progetto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5208" />
       <source>Delete</source>
       <translation>Cancella</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5198" />
+      <location filename="../Project/Project.py" line="5209" />
       <source>&amp;Delete</source>
       <translation>&amp;Cancella</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5204" />
+      <location filename="../Project/Project.py" line="5215" />
       <source>Delete the debugger properties</source>
       <translation>Cancella le proprietà del debugger</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5206" />
-      <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Cancella le proprietà del debugger&lt;/b&gt;&lt;p&gt;Cancella il file che contiene le proprietà del debugger specifiche per il progetto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5216" />
-      <source>Reset</source>
-      <translation>Resetta</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5217" />
+      <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Cancella le proprietà del debugger&lt;/b&gt;&lt;p&gt;Cancella il file che contiene le proprietà del debugger specifiche per il progetto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5227" />
+      <source>Reset</source>
+      <translation>Resetta</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5228" />
       <source>&amp;Reset</source>
       <translation>&amp;Resetta</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5223" />
+      <location filename="../Project/Project.py" line="5234" />
       <source>Reset the debugger properties</source>
       <translation>Resetta le proprietà del debugger</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5225" />
+      <location filename="../Project/Project.py" line="5236" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Azzera le proprietà del debugger&lt;/b&gt;&lt;p&gt;Azzera le proprietà del debugger specifiche per il progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5241" />
-      <location filename="../Project/Project.py" line="5240" />
+      <location filename="../Project/Project.py" line="5252" />
+      <location filename="../Project/Project.py" line="5251" />
       <source>Load session</source>
       <translation>Carica sessione</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5247" />
+      <location filename="../Project/Project.py" line="5258" />
       <source>Load the projects session file.</source>
       <translation>Carica il file di sessione del progetto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5249" />
+      <location filename="../Project/Project.py" line="5260" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Carica sessione&lt;/b&gt;&lt;p&gt;Questo carica la sessione del progetto.La sessione è composta dai seguenti dati.&lt;br&gt;- tutti i file sorgente aperti&lt;br&gt;- tutti i breakpoint&lt;br&gt;- gli argomenti alla riga di comango&lt;br&gt;- la directory di lavoro&lt;br&gt;- il flag di segnalazione delle eccezioni&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5265" />
-      <location filename="../Project/Project.py" line="5264" />
+      <location filename="../Project/Project.py" line="5276" />
+      <location filename="../Project/Project.py" line="5275" />
       <source>Save session</source>
       <translation>Salva sessione</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5271" />
+      <location filename="../Project/Project.py" line="5282" />
       <source>Save the projects session file.</source>
       <translation>Salva il file sessione del progetto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5273" />
+      <location filename="../Project/Project.py" line="5284" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Salva sessione&lt;/b&gt;&lt;p&gt;Questo carica la sessione del progetto.La sessione è composta dai seguenti dati.&lt;br&gt;- tutti i file sorgente aperti&lt;br&gt;- tutti i breakpoint&lt;br&gt;- gli argomenti alla riga di comango&lt;br&gt;- la directory di lavoro&lt;br&gt;- il flag di segnalazione delle eccezioni&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5289" />
-      <location filename="../Project/Project.py" line="5288" />
+      <location filename="../Project/Project.py" line="5300" />
+      <location filename="../Project/Project.py" line="5299" />
       <source>Delete session</source>
       <translation>Cancella sessione</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5295" />
+      <location filename="../Project/Project.py" line="5306" />
       <source>Delete the projects session file.</source>
       <translation>Cancella il file di sessione del progetto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5297" />
+      <location filename="../Project/Project.py" line="5308" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cancella sessione&lt;/b&gt;&lt;p&gt;Cancella la sessione del progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5312" />
-      <source>Code Metrics</source>
-      <translation>Statistiche codice</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5313" />
-      <source>&amp;Code Metrics...</source>
-      <translation>Statistiche &amp;codice...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5320" />
-      <source>Show some code metrics for the project.</source>
-      <translation>Mostra alcune statistiche del codice per il progetto.</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5323" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Statistiche codice...&lt;/b&gt;&lt;p&gt;Mostra alcune statistiche di tutti i file Python nel progetto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5333" />
-      <source>Python Code Coverage</source>
-      <translation>Analisi codice Python</translation>
+      <source>Code Metrics</source>
+      <translation>Statistiche codice</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5324" />
+      <source>&amp;Code Metrics...</source>
+      <translation>Statistiche &amp;codice...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5331" />
+      <source>Show some code metrics for the project.</source>
+      <translation>Mostra alcune statistiche del codice per il progetto.</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5334" />
-      <source>Code Co&amp;verage...</source>
-      <translation>A&amp;nalisi codice...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5341" />
-      <source>Show code coverage information for the project.</source>
-      <translation>Mostra le informazioni dell'analisi del codice del progetto.</translation>
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Statistiche codice...&lt;/b&gt;&lt;p&gt;Mostra alcune statistiche di tutti i file Python nel progetto.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5344" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Analisi codice...&lt;/b&gt;&lt;p&gt;Mostra le analisi  del codice di tutti i file Python nel progetto.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6778" />
-      <location filename="../Project/Project.py" line="6765" />
-      <location filename="../Project/Project.py" line="5354" />
-      <source>Profile Data</source>
-      <translation>Profilazione dati</translation>
+      <source>Python Code Coverage</source>
+      <translation>Analisi codice Python</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5345" />
+      <source>Code Co&amp;verage...</source>
+      <translation>A&amp;nalisi codice...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5352" />
+      <source>Show code coverage information for the project.</source>
+      <translation>Mostra le informazioni dell'analisi del codice del progetto.</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5355" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Analisi codice...&lt;/b&gt;&lt;p&gt;Mostra le analisi  del codice di tutti i file Python nel progetto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6789" />
+      <location filename="../Project/Project.py" line="6776" />
+      <location filename="../Project/Project.py" line="5365" />
+      <source>Profile Data</source>
+      <translation>Profilazione dati</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation>&amp;Profilazione dati...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5362" />
+      <location filename="../Project/Project.py" line="5373" />
       <source>Show profiling data for the project.</source>
       <translation>Mostra la profilazione dei dati per il progetto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5365" />
+      <location filename="../Project/Project.py" line="5376" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Profilazione dati...&lt;/b&gt;&lt;p&gt;Mostra la profilazione dei dati per il progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6830" />
-      <location filename="../Project/Project.py" line="5380" />
+      <location filename="../Project/Project.py" line="6841" />
+      <location filename="../Project/Project.py" line="5391" />
       <source>Application Diagram</source>
       <translation>Diagrammi dell'applicazione</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5381" />
+      <location filename="../Project/Project.py" line="5392" />
       <source>&amp;Application Diagram...</source>
       <translation>Diagramma dell' &amp;Applicazione...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5388" />
+      <location filename="../Project/Project.py" line="5399" />
       <source>Show a diagram of the project.</source>
       <translation>Mostra un diagramma del progetto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="5402" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diagrammi dell'applicazione...&lt;/b&gt;&lt;p&gt;Mostra un diagramma del progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5400" />
+      <location filename="../Project/Project.py" line="5411" />
       <source>Load Diagram</source>
       <translation type="unfinished">Carico Diagramma</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5401" />
+      <location filename="../Project/Project.py" line="5412" />
       <source>&amp;Load Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5407" />
+      <location filename="../Project/Project.py" line="5418" />
       <source>Load a diagram from file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5409" />
+      <location filename="../Project/Project.py" line="5420" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6998" />
-      <location filename="../Project/Project.py" line="6943" />
-      <location filename="../Project/Project.py" line="5424" />
+      <location filename="../Project/Project.py" line="7009" />
+      <location filename="../Project/Project.py" line="6954" />
+      <location filename="../Project/Project.py" line="5435" />
       <source>Create Package List</source>
       <translation>Crea lista del package</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5426" />
+      <location filename="../Project/Project.py" line="5437" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished">Crea un &amp;archivio per il plugin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5433" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5436" />
+      <location filename="../Project/Project.py" line="5447" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7068" />
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="7080" />
+      <location filename="../Project/Project.py" line="5458" />
       <source>Create Plugin Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5449" />
+      <location filename="../Project/Project.py" line="5460" />
       <source>Create Plugin &amp;Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5455" />
+      <location filename="../Project/Project.py" line="5466" />
       <source>Create eric plugin archive files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5457" />
+      <location filename="../Project/Project.py" line="5468" />
       <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5469" />
+      <location filename="../Project/Project.py" line="5480" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5471" />
+      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5478" />
+      <location filename="../Project/Project.py" line="5489" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5481" />
+      <location filename="../Project/Project.py" line="5492" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7510" />
-      <location filename="../Project/Project.py" line="7481" />
-      <location filename="../Project/Project.py" line="7435" />
-      <location filename="../Project/Project.py" line="7387" />
-      <location filename="../Project/Project.py" line="5500" />
+      <location filename="../Project/Project.py" line="7536" />
+      <location filename="../Project/Project.py" line="7507" />
+      <location filename="../Project/Project.py" line="7461" />
+      <location filename="../Project/Project.py" line="7413" />
+      <location filename="../Project/Project.py" line="5511" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5501" />
+      <location filename="../Project/Project.py" line="5512" />
       <source>&amp;Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5507" />
+      <location filename="../Project/Project.py" line="5518" />
       <source>Perform a 'make' run.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5509" />
-      <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7487" />
-      <location filename="../Project/Project.py" line="5519" />
-      <source>Test for Changes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5520" />
+      <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7513" />
+      <location filename="../Project/Project.py" line="5530" />
+      <source>Test for Changes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5531" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5527" />
+      <location filename="../Project/Project.py" line="5538" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="5541" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5548" />
-      <source>Create SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5549" />
-      <source>Create &amp;SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5556" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5559" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <source>Create SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5560" />
+      <source>Create &amp;SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5567" />
+      <source>Create a SBOM file of the project dependencies.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5570" />
-      <source>Clear Byte Code Caches</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5571" />
-      <source>Clear Byte Code &amp;Caches</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5578" />
-      <source>Clear the byte code caches of the project.</source>
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5581" />
+      <source>Clear Byte Code Caches</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5582" />
+      <source>Clear Byte Code &amp;Caches</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5589" />
+      <source>Clear the byte code caches of the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5592" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5597" />
+      <location filename="../Project/Project.py" line="5608" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5598" />
+      <location filename="../Project/Project.py" line="5609" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5604" />
+      <location filename="../Project/Project.py" line="5615" />
       <source>Show some information about 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5606" />
+      <location filename="../Project/Project.py" line="5617" />
       <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5618" />
-      <source>Format Code</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5619" />
-      <source>&amp;Format Code</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5626" />
-      <source>Format the project sources with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5629" />
+      <source>Format Code</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5630" />
+      <source>&amp;Format Code</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5637" />
+      <source>Format the project sources with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5640" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5641" />
+      <location filename="../Project/Project.py" line="5652" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5642" />
+      <location filename="../Project/Project.py" line="5653" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5649" />
+      <location filename="../Project/Project.py" line="5660" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5654" />
+      <location filename="../Project/Project.py" line="5665" />
       <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5667" />
+      <location filename="../Project/Project.py" line="5678" />
       <source>Code Formatting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5668" />
+      <location filename="../Project/Project.py" line="5679" />
       <source>Code Formatting &amp;Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5686" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5681" />
+      <location filename="../Project/Project.py" line="5692" />
       <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5846" />
-      <location filename="../Project/Project.py" line="5796" />
-      <location filename="../Project/Project.py" line="5795" />
-      <location filename="../Project/Project.py" line="5695" />
-      <location filename="../Project/Project.py" line="5694" />
+      <location filename="../Project/Project.py" line="5857" />
+      <location filename="../Project/Project.py" line="5807" />
+      <location filename="../Project/Project.py" line="5806" />
+      <location filename="../Project/Project.py" line="5706" />
+      <location filename="../Project/Project.py" line="5705" />
       <source>Configure</source>
       <translation type="unfinished">Configura</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5702" />
+      <location filename="../Project/Project.py" line="5713" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5707" />
+      <location filename="../Project/Project.py" line="5718" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5723" />
+      <location filename="../Project/Project.py" line="5734" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5724" />
+      <location filename="../Project/Project.py" line="5735" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5730" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5732" />
+      <location filename="../Project/Project.py" line="5743" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5745" />
-      <location filename="../Project/Project.py" line="5744" />
-      <source>Sort Imports</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5752" />
-      <source>Sort the import statements of the project sources with 'isort'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <location filename="../Project/Project.py" line="5756" />
       <location filename="../Project/Project.py" line="5755" />
+      <source>Sort Imports</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5763" />
+      <source>Sort the import statements of the project sources with 'isort'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5766" />
       <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5769" />
-      <location filename="../Project/Project.py" line="5768" />
+      <location filename="../Project/Project.py" line="5780" />
+      <location filename="../Project/Project.py" line="5779" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5776" />
+      <location filename="../Project/Project.py" line="5787" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5782" />
+      <location filename="../Project/Project.py" line="5793" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5803" />
+      <location filename="../Project/Project.py" line="5814" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5809" />
+      <location filename="../Project/Project.py" line="5820" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5825" />
-      <source>Install Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5826" />
-      <source>&amp;Install Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5833" />
-      <source>Install the project into the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5836" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <source>Install Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5837" />
+      <source>&amp;Install Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5844" />
+      <source>Install the project into the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5847" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5854" />
+      <location filename="../Project/Project.py" line="5865" />
       <source>Configure the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5857" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5867" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5868" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5878" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5874" />
+      <location filename="../Project/Project.py" line="5885" />
       <source>Upgrade the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5876" />
+      <location filename="../Project/Project.py" line="5887" />
       <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5888" />
+      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5889" />
+      <location filename="../Project/Project.py" line="5900" />
       <source>&amp;Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5895" />
+      <location filename="../Project/Project.py" line="5906" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5897" />
+      <location filename="../Project/Project.py" line="5908" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5929" />
+      <location filename="../Project/Project.py" line="5940" />
       <source>&amp;Project</source>
       <translation>&amp;Progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5930" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Apri un progetto &amp;recente</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5932" />
-      <source>Session</source>
-      <translation>Sessione</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5933" />
-      <source>Debugger</source>
-      <translation>Debugger</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5934" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5936" />
-      <source>Project-T&amp;ools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5937" />
-      <source>&amp;Version Control</source>
-      <translation>Controllo di &amp;Versione</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5941" />
-      <source>Chec&amp;k</source>
-      <translation>&amp;Controlla</translation>
+      <source>Open &amp;Recent Projects</source>
+      <translation>Apri un progetto &amp;recente</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
+      <source>Session</source>
+      <translation>Sessione</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5944" />
+      <source>Debugger</source>
+      <translation>Debugger</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Sho&amp;w</source>
-      <translation>&amp;Mostra</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5946" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Diagrammi</translation>
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Pac&amp;kagers</source>
-      <translation>Pac&amp;kagers</translation>
+      <source>Project-T&amp;ools</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
+      <source>&amp;Version Control</source>
+      <translation>Controllo di &amp;Versione</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5952" />
+      <source>Chec&amp;k</source>
+      <translation>&amp;Controlla</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5954" />
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5956" />
+      <source>Sho&amp;w</source>
+      <translation>&amp;Mostra</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5957" />
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Diagrammi</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5958" />
+      <source>Pac&amp;kagers</source>
+      <translation>Pac&amp;kagers</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5959" />
       <source>Source &amp;Documentation</source>
       <translation>&amp;Documentazione sorgenti</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5950" />
+      <location filename="../Project/Project.py" line="5961" />
       <source>Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5951" />
+      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6113" />
-      <location filename="../Project/Project.py" line="6111" />
+      <location filename="../Project/Project.py" line="6124" />
+      <location filename="../Project/Project.py" line="6122" />
       <source>Project</source>
       <translation>Progetto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6195" />
+      <location filename="../Project/Project.py" line="6206" />
       <source>&amp;Clear</source>
       <translation>Pulis&amp;ci</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6392" />
+      <location filename="../Project/Project.py" line="6403" />
       <source>Search New Files</source>
       <translation>Cerca Nuovi File</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6393" />
+      <location filename="../Project/Project.py" line="6404" />
       <source>There were no new files found to be added.</source>
       <translation>Non sono stati trovati file da aggiungere.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6554" />
-      <location filename="../Project/Project.py" line="6541" />
+      <location filename="../Project/Project.py" line="6565" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>Version Control System</source>
       <translation>Version Control System</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6542" />
+      <location filename="../Project/Project.py" line="6553" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6555" />
+      <location filename="../Project/Project.py" line="6566" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;VCS selezionato &lt;b&gt;{0}&lt;/b&gt;non trovato.&lt;br&gt;Disabilito il controllo di versione.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6712" />
+      <location filename="../Project/Project.py" line="6723" />
       <source>Coverage Data</source>
       <translation>Dati Analisi</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6766" />
-      <location filename="../Project/Project.py" line="6713" />
+      <location filename="../Project/Project.py" line="6777" />
+      <location filename="../Project/Project.py" line="6724" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>Non c'è uno script principale definito per il progetto. Esco</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6725" />
+      <location filename="../Project/Project.py" line="6736" />
       <source>Code Coverage</source>
       <translation>Analisi codice</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6726" />
+      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation>Per favore seleziona un file per l'analisi</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6779" />
+      <location filename="../Project/Project.py" line="6790" />
       <source>Please select a profile file</source>
       <translation>Per favore seleziona un file per la profilazione</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6831" />
+      <location filename="../Project/Project.py" line="6842" />
       <source>Include module names?</source>
       <translation>Includi i nomi dei moduli ?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6944" />
+      <location filename="../Project/Project.py" line="6955" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;PKGLIST&lt;/b&gt; esiste già.&lt;/p&gt;&lt;p&gt;Sovrascriverlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6999" />
+      <location filename="../Project/Project.py" line="7010" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;PKGLIST&lt;/b&gt; non può essere creato.&lt;br /&gt;Motivo: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7295" />
-      <location filename="../Project/Project.py" line="7251" />
-      <location filename="../Project/Project.py" line="7201" />
-      <location filename="../Project/Project.py" line="7190" />
-      <location filename="../Project/Project.py" line="7172" />
-      <location filename="../Project/Project.py" line="7139" />
-      <location filename="../Project/Project.py" line="7109" />
-      <location filename="../Project/Project.py" line="7081" />
-      <location filename="../Project/Project.py" line="7051" />
-      <location filename="../Project/Project.py" line="7037" />
-      <location filename="../Project/Project.py" line="7020" />
+      <location filename="../Project/Project.py" line="7321" />
+      <location filename="../Project/Project.py" line="7277" />
+      <location filename="../Project/Project.py" line="7227" />
+      <location filename="../Project/Project.py" line="7216" />
+      <location filename="../Project/Project.py" line="7198" />
+      <location filename="../Project/Project.py" line="7151" />
+      <location filename="../Project/Project.py" line="7121" />
+      <location filename="../Project/Project.py" line="7093" />
+      <location filename="../Project/Project.py" line="7063" />
+      <location filename="../Project/Project.py" line="7048" />
+      <location filename="../Project/Project.py" line="7031" />
       <source>Create Plugin Archive</source>
       <translation>Crea un archivio per il plugin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7021" />
+      <location filename="../Project/Project.py" line="7032" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation>Non c'è uno script principale definito per il progetto. Esco...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7038" />
+      <location filename="../Project/Project.py" line="7049" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7052" />
-      <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7060" />
-      <source>Creating plugin archives...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7061" />
-      <source>Abort</source>
-      <translation type="unfinished">Termina</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="7064" />
+      <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7072" />
+      <source>Creating plugin archives...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7073" />
+      <source>Abort</source>
+      <translation type="unfinished">Termina</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7076" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7082" />
+      <location filename="../Project/Project.py" line="7094" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7110" />
+      <location filename="../Project/Project.py" line="7122" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7140" />
+      <location filename="../Project/Project.py" line="7152" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7199" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere aggiunto all'archivio.Lo ignoro.&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7191" />
+      <location filename="../Project/Project.py" line="7217" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7228" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7252" />
+      <location filename="../Project/Project.py" line="7278" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file plugin &lt;b&gt;{0}&lt;/b&gt; non può essere salvato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7296" />
+      <location filename="../Project/Project.py" line="7322" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7388" />
+      <location filename="../Project/Project.py" line="7414" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7436" />
+      <location filename="../Project/Project.py" line="7462" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7482" />
+      <location filename="../Project/Project.py" line="7508" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7490" />
+      <location filename="../Project/Project.py" line="7516" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7495" />
+      <location filename="../Project/Project.py" line="7521" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7511" />
+      <location filename="../Project/Project.py" line="7537" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7941" />
+      <location filename="../Project/Project.py" line="7975" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7942" />
+      <location filename="../Project/Project.py" line="7976" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8023" />
+      <location filename="../Project/Project.py" line="8057" />
       <source>Open Remote Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8054" />
-      <location filename="../Project/Project.py" line="8039" />
+      <location filename="../Project/Project.py" line="8088" />
+      <location filename="../Project/Project.py" line="8073" />
       <source>Save Remote Project</source>
       <translation type="unfinished" />
     </message>
@@ -65267,50 +65282,50 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="527" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="511" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="529" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="513" />
       <source>New directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="512" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="514" />
       <source>&lt;p&gt;A file or directory named &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="528" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="530" />
       <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="625" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="596" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="577" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="627" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="598" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="579" />
       <source>New file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="578" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="580" />
       <source>Enter the path of the new file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="597" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="599" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="626" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="628" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="716" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="718" />
       <source>Delete files/directories</source>
       <translation>Cancella file/directory</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="717" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="719" />
       <source>Do you really want to delete these entries from the project?</source>
       <translation>Vuoi veramente cancellare questi elementi dal progetto ?</translation>
     </message>
@@ -67053,22 +67068,22 @@
   <context>
     <name>Purge</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="74" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="76" />
       <source>Purge All Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="75" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="77" />
       <source>Do really want to delete all files not tracked by Mercurial (including ignored ones)?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="80" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="82" />
       <source>Purge Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="81" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="83" />
       <source>Do really want to delete files not tracked by Mercurial?</source>
       <translation type="unfinished" />
     </message>
@@ -67176,7 +67191,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="453" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="455" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="235" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -67192,7 +67207,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="433" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="246" />
       <source>Flash MicroPython Firmware</source>
       <translation type="unfinished" />
@@ -67248,7 +67263,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="431" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="390" />
       <source>'dfu-util' Output</source>
       <translation type="unfinished" />
@@ -67259,37 +67274,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="416" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="417" />
       <source>Flash MicroPython/CircuitPython Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="419" />
       <source>MicroPython Firmware Files (*.dfu);;CircuitPython Firmware Files (*.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="454" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="456" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="484" />
       <source>unknown</source>
       <translation type="unfinished">sconosciuto</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="488" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="490" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="496" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="498" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="500" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="502" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -69416,12 +69431,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="139" />
+      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="141" />
       <source>No current editor</source>
       <translation type="unfinished">Nessun editor corrente</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="140" />
+      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="142" />
       <source>Please open or create a file first.</source>
       <translation type="unfinished">Per favore prima apri o crea un file.</translation>
     </message>
@@ -71203,7 +71218,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="122" />
+      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="124" />
       <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="82" />
       <source>Add Documentation</source>
       <translation type="unfinished">Aggiungi documento</translation>
@@ -71214,7 +71229,7 @@
       <translation type="unfinished">Qt Compressed Help Files (*.qch)</translation>
     </message>
     <message>
-      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="123" />
+      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="125" />
       <source>The file &lt;b&gt;{0}&lt;/b&gt; could not be added.</source>
       <translation type="unfinished" />
     </message>
@@ -71472,191 +71487,191 @@
   <context>
     <name>Queues</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="226" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="228" />
       <source>New Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="277" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="279" />
       <source>Update Current Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="335" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="337" />
       <source>Pop Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="339" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="341" />
       <source>Push Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="343" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="345" />
       <source>Go to Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="437" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="369" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="356" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="441" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="371" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="358" />
       <source>Select Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="359" />
       <source>Select the target patch name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="372" />
       <source>No patches to select from.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="399" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="401" />
       <source>Finish Applied Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="423" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="427" />
       <source>Rename Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="438" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="442" />
       <source>Select the patch to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="446" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="450" />
       <source>Delete Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="488" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="482" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="475" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="492" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="486" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="479" />
       <source>Fold Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="483" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="487" />
       <source>No patches selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="493" />
       <source>No patches available to be folded.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="510" />
       <source>List Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="507" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="511" />
       <source>No patches available to list guards for.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="536" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="540" />
       <source>Define Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="537" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="541" />
       <source>No patches available to define guards for.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="568" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="548" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="552" />
       <source>Drop All Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="549" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="553" />
       <source>Select the patch to drop guards for (leave empty for the current patch):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="597" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="590" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="606" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598" />
       <source>Set Active Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="607" />
       <source>No guards available to select from.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="618" />
       <source>Deactivate Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649" />
       <source>Create New Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649" />
       <source>Rename Active Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="658" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="673" />
       <source>Error while creating a new queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="660" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="675" />
       <source>Error while renaming the active queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="693" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="708" />
       <source>Purge Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="710" />
       <source>Delete Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="697" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="712" />
       <source>Activate Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="717" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="736" />
       <source>Error while purging the queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="738" />
       <source>Error while deleting the queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="721" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="740" />
       <source>Error while setting the active queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="743" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="762" />
       <source>Available Queues</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="757" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="777" />
       <source>Initializing new queue repository</source>
       <translation>Inizializza una nuova coda del repository</translation>
     </message>
@@ -72797,17 +72812,17 @@
   <context>
     <name>Rebase</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="83" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="86" />
       <source>Rebase Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="106" />
       <source>Rebase Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="121" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="127" />
       <source>Rebase Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
@@ -73058,7 +73073,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="421" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="423" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -73112,37 +73127,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="402" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="403" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="403" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="404" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="424" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
       <source>unknown</source>
       <translation type="unfinished">sconosciuto</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="456" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="466" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="468" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="470" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -76066,49 +76081,49 @@
   <context>
     <name>Shelve</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="105" />
       <source>Shelve current changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="144" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="151" />
       <source>Restore shelved changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="162" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="170" />
       <source>Abort restore operation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="182" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="191" />
       <source>Continue restore operation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="201" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211" />
       <source>Select the shelves to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="220" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="222" />
       <source>Delete shelves</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="212" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="223" />
       <source>Do you really want to delete these shelves?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="238" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="249" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="242" />
       <source>Delete all shelves</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="232" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="243" />
       <source>Do you really want to delete all shelved changes?</source>
       <translation type="unfinished" />
     </message>
@@ -78921,7 +78936,7 @@
   <context>
     <name>Strip</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="64" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="68" />
       <source>Stripping changesets from repository</source>
       <translation type="unfinished" />
     </message>
@@ -79037,7 +79052,7 @@
       <translation>Il processo svn è terminato con codice di uscita {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2138" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2173" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="185" />
       <source>The svn process did not finish within 30s.</source>
       <translation>Il processo svn non è finito entro i 30s.</translation>
@@ -79073,338 +79088,338 @@
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="320" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="334" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="335" />
       <source>Importing project into Subversion repository</source>
       <translation>Importazione del progetto nel repository Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="379" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="375" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="378" />
       <source>Subversion Checkout</source>
       <translation>Subversion Checkout</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="450" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="436" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="376" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="452" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="381" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="442" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="379" />
       <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
       <translation>Il tag deve essere un tag normale (tags) o un tag branch (branch). Selezionarlo dalla lista.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="402" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="402" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="406" />
       <source>Checking project out of Subversion repository</source>
       <translation>Checking del progetto dal repository subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="449" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="435" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="441" />
       <source>Subversion Export</source>
       <translation>Subversion Export</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="471" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="459" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="473" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="466" />
       <source>Exporting project from Subversion repository</source>
       <translation>Esportazione del progetto dal repository Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="554" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="541" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="533" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="558" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="542" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="597" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="600" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="592" />
       <source>Commiting changes to Subversion repository</source>
       <translation>Convalida delle modifiche nel repository Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="670" />
       <source>Synchronizing with the Subversion repository</source>
       <translation>Sincronizzazione con il repository Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="816" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="774" />
       <source>Adding files/directories to the Subversion repository</source>
       <translation>Aggiunta di file/directory al repository subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="927" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="852" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="933" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="869" />
       <source>Adding directory trees to the Subversion repository</source>
       <translation>Aggiunta di alberi di directory al repository subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="968" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="975" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="908" />
       <source>Removing files/directories from the Subversion repository</source>
       <translation>Rimozione di file/directory al repository subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1032" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="953" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1042" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="973" />
       <source>Moving {0}</source>
       <translation>Spostamento di {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1331" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1302" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1162" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1132" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1216" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1187" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1035" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1351" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1319" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1176" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1143" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1243" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1211" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1087" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1055" />
       <source>Subversion Error</source>
       <translation>Subversion Error</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1133" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1036" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1144" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1056" />
       <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
       <translation>L'URL del repository del progetto non può essere recuperato dalla copia di lavoro. L'operazione di etichettatura verrà interrotta</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1065" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1177" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1088" />
       <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
       <translation>L'URL del repository del progetto a un formato non valido. L'operazione di etichettatura verrà interrotta</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1214" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1185" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1099" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1122" />
       <source>Tagging {0} in the Subversion repository</source>
       <translation>Tag di{0} nel repository subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1246" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1235" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1143" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1132" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1262" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1251" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1167" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1156" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1236" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1133" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1252" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1157" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1247" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1144" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1168" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1255" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1271" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1174" />
       <source>Reverting changes</source>
       <translation>Annullamento modifiche</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1303" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1188" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1320" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1212" />
       <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
       <translation>L'URL del repository del progetto non può essere recuperato dalla copia di lavoro. L'operazione di switch verrà interrotta</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1332" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1217" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1352" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1244" />
       <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
       <translation>L'URL del repository del progetto ha un formato non valido. L'operazione di switch verrà interrotta</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1355" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1246" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1375" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273" />
       <source>Switching to {0}</source>
       <translation>Switch a {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1456" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1313" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1481" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1344" />
       <source>Merging {0}</source>
       <translation>Merge di {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1787" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1602" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1813" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633" />
       <source>Cleaning up {0}</source>
       <translation>Pulizia di {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1828" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1859" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1666" />
       <source>Subversion command</source>
       <translation>comando Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1960" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1991" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1849" />
       <source>Resolving conficts</source>
       <translation>Risoluzione conflitti</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1852" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2036" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1885" />
       <source>Copying {0}</source>
       <translation>copia di {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2084" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2067" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1923" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1902" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2117" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2100" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1956" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1935" />
       <source>Subversion Set Property</source>
       <translation>Subversion Set Property</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2131" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2068" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1951" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1903" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2101" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1936" />
       <source>You have to supply a property name. Aborting.</source>
       <translation>Devi fornire un nome per la proprietà. Interrompo.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2147" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2130" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1968" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1950" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1939" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2181" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2164" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2001" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1983" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1972" />
       <source>Subversion Delete Property</source>
       <translation>Subversion Delete Property</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1973" />
       <source>Enter property name</source>
       <translation>Inserisci nome proprietà</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2140" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2175" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2403" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2391" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2382" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2206" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2194" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2185" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2440" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2428" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2419" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2241" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2229" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220" />
       <source>Subversion Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2404" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2207" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2242" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2466" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2260" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2503" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2295" />
       <source>Locking in the Subversion repository</source>
       <translation>Blocco nel repository Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2508" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2545" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2324" />
       <source>Unlocking in the Subversion repository</source>
       <translation>Sblocco del repository Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2558" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2314" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2595" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2351" />
       <source>Relocating</source>
       <translation>Movimentazione</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2584" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2333" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2621" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2370" />
       <source>Repository Browser</source>
       <translation>Visualizzatore del Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2585" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2334" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2371" />
       <source>Enter the repository URL.</source>
       <translation>Inserisci l'URL del repository.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2610" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2647" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2441" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2404" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2367" />
       <source>Remove from changelist</source>
       <translation>Rimuovi dalla changelist</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2649" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2638" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2383" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2687" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2676" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2420" />
       <source>Add to changelist</source>
       <translation>Aggiungi alla changelist</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2639" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2384" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2677" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2421" />
       <source>Enter name of the changelist:</source>
       <translation>Inserisci il nome della changelist:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2706" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2474" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2746" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2511" />
       <source>Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="338" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="339" />
       <source>Imported revision {0}.
 </source>
       <translation>importata revisione {0}.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="635" />
       <source>Committed revision {0}.</source>
       <translation>Committata la revisione {0}.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1363" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1384" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1226" />
       <source>Revision {0}.
 </source>
       <translation>Revisione {0}.
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2107" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2141" />
       <source>Property set.</source>
       <translation>Proprietà impostata.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2200" />
       <source>Property deleted.</source>
       <translation>Proprietà cancellata.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2448" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2485" />
       <source>Subversion Lock</source>
       <translation>Lock Subversion</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2449" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2486" />
       <source>Enter lock comment</source>
       <translation>Inserico commento del lock</translation>
     </message>
@@ -89765,133 +89780,133 @@
   <context>
     <name>UF2FlashDialog</name>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="722" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="732" />
       <source>&lt;h3&gt;CircuitPython Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Switch your device to 'bootloader' mode by double-pressing the reset button.&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;(If this does not happen, then try shorter or longer pauses between presses.)&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="748" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="758" />
       <source>&lt;h3&gt;Pi Pico (RP2040/RP2350) Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Enter 'bootloader' mode (board &lt;b&gt;without&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;Plug in your board while holding the BOOTSEL button.&lt;/li&gt;&lt;/ul&gt;Enter 'bootloader' mode (board &lt;b&gt;with&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;hold down RESET&lt;/li&gt;&lt;li&gt;hold down BOOTSEL&lt;/li&gt;&lt;li&gt;release RESET&lt;/li&gt;&lt;li&gt;release BOOTSEL&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/UF2FlashDialog.ui" line="0" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1248" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1256" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1258" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1266" />
       <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1257" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1267" />
       <source>Select the Boot Volume of the device:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="861" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="871" />
       <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="928" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="920" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="904" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="938" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="930" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="914" />
       <source>Manual Select</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1032" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1000" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="977" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1042" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1010" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="987" />
       <source>Reset Instructions:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="979" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="989" />
       <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the appropriate instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1003" />
-      <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/UF2FlashDialog.py" line="1013" />
+      <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1023" />
       <source>&lt;h4&gt;Potentially UF2 capable devices found&lt;/h4&gt;&lt;p&gt;Found these potentially UF2 capable devices:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1034" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1044" />
       <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1046" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1056" />
       <source>Flash Instructions:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1048" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1058" />
       <source>&lt;h4&gt;Flash method 'manual' selected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to flash a device by entering the data manually.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Change the device to 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it) and select its path.&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1073" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1083" />
       <source>Boot Volume not found:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1075" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1085" />
       <source>&lt;h4&gt;No Boot Volume detected.&lt;/h4&gt;&lt;p&gt;Please ensure that the boot volume of the device to be flashed is available. </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1081" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1091" />
       <source>This volume should be named &lt;b&gt;{0}&lt;/b&gt;. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1086" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1096" />
       <source>This volume should have one of these names.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1093" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1103" />
       <source>&lt;h4&gt;Reset Instructions&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set the board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1112" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1122" />
       <source>Multiple Boot Volumes found:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1114" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1124" />
       <source>&lt;h4&gt;Multiple Boot Volumes were found&lt;/h4&gt;&lt;p&gt;These volume paths were found.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please ensure that only one device of a type is ready for flashing. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1133" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1143" />
       <source>Flashing Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1135" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1145" />
       <source>&lt;p&gt;Flashing the selected firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1142" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1152" />
       <source>Flashing {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1144" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1154" />
       <source>&lt;p&gt;Flashing the {0} firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1249" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1259" />
       <source>No UF2 device 'boot' volumes found.</source>
       <translation type="unfinished" />
     </message>
@@ -90457,24 +90472,24 @@
       <translation>Grafica</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="405" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="392" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="375" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="409" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="396" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="379" />
       <source>Save Diagram</source>
       <translation>Salva diagramma</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="377" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="381" />
       <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
       <translation>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="393" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="397" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="406" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="410" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere salvato.&lt;/p&gt;</translation>
     </message>
@@ -90652,44 +90667,44 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="95" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="97" />
       <source>{0} (*)</source>
       <comment>list entry is modified</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="179" />
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="158" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="181" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="160" />
       <source>Delete Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="159" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="161" />
       <source>The selected entries contain some with modified data. Shall they really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="180" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="182" />
       <source>The list contains some devices with modified data. Shall they really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="198" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="200" />
       <source>Restore Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="199" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="201" />
       <source>Restoring the list of unknown devices will overwrite all changes made. Do you really want to restore the list?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="263" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="265" />
       <source>Unsaved Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="264" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="266" />
       <source>The list of devices contains some with modified data.</source>
       <translation type="unfinished" />
     </message>
@@ -91202,7 +91217,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7883" />
+      <location filename="../UI/UserInterface.py" line="7890" />
       <location filename="../UI/UserInterface.py" line="1955" />
       <location filename="../UI/UserInterface.py" line="1948" />
       <source>Load session</source>
@@ -92293,7 +92308,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6626" />
+      <location filename="../UI/UserInterface.py" line="6630" />
       <location filename="../UI/UserInterface.py" line="3172" />
       <source>Snapshot</source>
       <translation type="unfinished" />
@@ -92530,8 +92545,8 @@
       <translation>&lt;b&gt;Scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Imposta le scorciatoie da tastiera dell'applicazione con i valori personalizzati.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7591" />
-      <location filename="../UI/UserInterface.py" line="7572" />
+      <location filename="../UI/UserInterface.py" line="7598" />
+      <location filename="../UI/UserInterface.py" line="7579" />
       <location filename="../UI/UserInterface.py" line="3402" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Esporta scorciatoie da tastiera</translation>
@@ -92552,7 +92567,7 @@
       <translation>&lt;b&gt;Esporta scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Esporta le scorciatoie da tastiera dell'applicazione.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7610" />
+      <location filename="../UI/UserInterface.py" line="7617" />
       <location filename="../UI/UserInterface.py" line="3421" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Importa scorciatoie da tastiera</translation>
@@ -92961,7 +92976,7 @@
       <translation>Impostazioni</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6354" />
+      <location filename="../UI/UserInterface.py" line="6358" />
       <location filename="../UI/UserInterface.py" line="4194" />
       <location filename="../UI/UserInterface.py" line="4179" />
       <source>Help</source>
@@ -93133,314 +93148,314 @@
       <translation>Nascondi &amp;tutti</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6491" />
-      <location filename="../UI/UserInterface.py" line="6480" />
-      <location filename="../UI/UserInterface.py" line="6432" />
-      <location filename="../UI/UserInterface.py" line="6422" />
-      <location filename="../UI/UserInterface.py" line="6245" />
-      <location filename="../UI/UserInterface.py" line="6235" />
-      <location filename="../UI/UserInterface.py" line="6177" />
-      <location filename="../UI/UserInterface.py" line="6167" />
+      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6484" />
+      <location filename="../UI/UserInterface.py" line="6436" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6239" />
+      <location filename="../UI/UserInterface.py" line="6181" />
+      <location filename="../UI/UserInterface.py" line="6171" />
       <source>Problem</source>
       <translation>Problema</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6492" />
-      <location filename="../UI/UserInterface.py" line="6481" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <location filename="../UI/UserInterface.py" line="6423" />
-      <location filename="../UI/UserInterface.py" line="6246" />
-      <location filename="../UI/UserInterface.py" line="6236" />
-      <location filename="../UI/UserInterface.py" line="6178" />
-      <location filename="../UI/UserInterface.py" line="6168" />
+      <location filename="../UI/UserInterface.py" line="6496" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6437" />
+      <location filename="../UI/UserInterface.py" line="6427" />
+      <location filename="../UI/UserInterface.py" line="6250" />
+      <location filename="../UI/UserInterface.py" line="6240" />
+      <location filename="../UI/UserInterface.py" line="6182" />
+      <location filename="../UI/UserInterface.py" line="6172" />
       <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="6735" />
-      <location filename="../UI/UserInterface.py" line="6646" />
-      <location filename="../UI/UserInterface.py" line="6527" />
-      <location filename="../UI/UserInterface.py" line="6504" />
-      <location filename="../UI/UserInterface.py" line="6445" />
-      <location filename="../UI/UserInterface.py" line="6392" />
-      <location filename="../UI/UserInterface.py" line="6370" />
-      <location filename="../UI/UserInterface.py" line="6321" />
-      <location filename="../UI/UserInterface.py" line="6312" />
-      <location filename="../UI/UserInterface.py" line="6277" />
-      <location filename="../UI/UserInterface.py" line="6268" />
-      <location filename="../UI/UserInterface.py" line="6209" />
-      <location filename="../UI/UserInterface.py" line="6200" />
+      <location filename="../UI/UserInterface.py" line="6739" />
+      <location filename="../UI/UserInterface.py" line="6650" />
+      <location filename="../UI/UserInterface.py" line="6531" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6449" />
+      <location filename="../UI/UserInterface.py" line="6396" />
+      <location filename="../UI/UserInterface.py" line="6374" />
+      <location filename="../UI/UserInterface.py" line="6325" />
+      <location filename="../UI/UserInterface.py" line="6316" />
+      <location filename="../UI/UserInterface.py" line="6281" />
+      <location filename="../UI/UserInterface.py" line="6272" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6204" />
       <source>Process Generation Error</source>
       <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6201" />
+      <location filename="../UI/UserInterface.py" line="6205" />
       <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="6210" />
+      <location filename="../UI/UserInterface.py" line="6214" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6269" />
+      <location filename="../UI/UserInterface.py" line="6273" />
       <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="6278" />
+      <location filename="../UI/UserInterface.py" line="6282" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6313" />
+      <location filename="../UI/UserInterface.py" line="6317" />
       <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="6322" />
+      <location filename="../UI/UserInterface.py" line="6326" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6355" />
+      <location filename="../UI/UserInterface.py" line="6359" />
       <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="6371" />
+      <location filename="../UI/UserInterface.py" line="6375" />
       <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="6393" />
+      <location filename="../UI/UserInterface.py" line="6397" />
       <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>
     <message>
-      <location filename="../UI/UserInterface.py" line="6446" />
+      <location filename="../UI/UserInterface.py" line="6450" />
       <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="6505" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <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'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="6528" />
+      <location filename="../UI/UserInterface.py" line="6532" />
       <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="6627" />
+      <location filename="../UI/UserInterface.py" line="6631" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6647" />
+      <location filename="../UI/UserInterface.py" line="6651" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6680" />
-      <location filename="../UI/UserInterface.py" line="6670" />
+      <location filename="../UI/UserInterface.py" line="6684" />
+      <location filename="../UI/UserInterface.py" line="6674" />
       <source>External Tools</source>
       <translation>Tool esterni</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6671" />
+      <location filename="../UI/UserInterface.py" line="6675" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation>Nessun elemento per il tool esterno '{0}' trovato nel gruppo '{1}'.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6681" />
+      <location filename="../UI/UserInterface.py" line="6685" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation>Nessun gruppo '{0}' trovato.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6718" />
+      <location filename="../UI/UserInterface.py" line="6722" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>Avvio processo '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6736" />
+      <location filename="../UI/UserInterface.py" line="6740" />
       <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'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="6815" />
+      <location filename="../UI/UserInterface.py" line="6819" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Il processo '{0}' è terminato.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7102" />
-      <location filename="../UI/UserInterface.py" line="7040" />
-      <location filename="../UI/UserInterface.py" line="6996" />
-      <location filename="../UI/UserInterface.py" line="6922" />
-      <location filename="../UI/UserInterface.py" line="6858" />
+      <location filename="../UI/UserInterface.py" line="7106" />
+      <location filename="../UI/UserInterface.py" line="7044" />
+      <location filename="../UI/UserInterface.py" line="7000" />
+      <location filename="../UI/UserInterface.py" line="6926" />
+      <location filename="../UI/UserInterface.py" line="6862" />
       <source>Documentation Missing</source>
       <translation>Documentazione mancante</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7103" />
-      <location filename="../UI/UserInterface.py" line="7041" />
-      <location filename="../UI/UserInterface.py" line="6997" />
-      <location filename="../UI/UserInterface.py" line="6923" />
-      <location filename="../UI/UserInterface.py" line="6859" />
+      <location filename="../UI/UserInterface.py" line="7107" />
+      <location filename="../UI/UserInterface.py" line="7045" />
+      <location filename="../UI/UserInterface.py" line="7001" />
+      <location filename="../UI/UserInterface.py" line="6927" />
+      <location filename="../UI/UserInterface.py" line="6863" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'inizio della documentazione "&lt;b&gt;{0}&lt;/b&gt;" non viene trovato.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7084" />
-      <location filename="../UI/UserInterface.py" line="6966" />
+      <location filename="../UI/UserInterface.py" line="7088" />
+      <location filename="../UI/UserInterface.py" line="6970" />
       <source>Documentation</source>
       <translation>Documentazione</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6967" />
+      <location filename="../UI/UserInterface.py" line="6971" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7085" />
+      <location filename="../UI/UserInterface.py" line="7089" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7264" />
-      <location filename="../UI/UserInterface.py" line="7200" />
+      <location filename="../UI/UserInterface.py" line="7268" />
+      <location filename="../UI/UserInterface.py" line="7204" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7201" />
+      <location filename="../UI/UserInterface.py" line="7205" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7265" />
+      <location filename="../UI/UserInterface.py" line="7269" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7311" />
+      <location filename="../UI/UserInterface.py" line="7315" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7311" />
+      <location filename="../UI/UserInterface.py" line="7315" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7612" />
-      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7619" />
+      <location filename="../UI/UserInterface.py" line="7581" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7592" />
+      <location filename="../UI/UserInterface.py" line="7599" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7796" />
+      <location filename="../UI/UserInterface.py" line="7803" />
       <source>Load crash session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7799" />
+      <location filename="../UI/UserInterface.py" line="7806" />
       <source>Clean crash sessions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7836" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7837" />
+      <location filename="../UI/UserInterface.py" line="7844" />
       <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="7860" />
+      <location filename="../UI/UserInterface.py" line="7867" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7885" />
-      <location filename="../UI/UserInterface.py" line="7862" />
+      <location filename="../UI/UserInterface.py" line="7892" />
+      <location filename="../UI/UserInterface.py" line="7869" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7954" />
+      <location filename="../UI/UserInterface.py" line="7961" />
       <source>Found Crash Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7955" />
+      <location filename="../UI/UserInterface.py" line="7962" />
       <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8028" />
+      <location filename="../UI/UserInterface.py" line="8035" />
       <source>Clean stale crash sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8029" />
+      <location filename="../UI/UserInterface.py" line="8036" />
       <source>Do you really want to delete these stale crash session files?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8405" />
+      <location filename="../UI/UserInterface.py" line="8412" />
       <source>Drop Error</source>
       <translation>Errore Drop</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8406" />
+      <location filename="../UI/UserInterface.py" line="8413" />
       <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="8594" />
+      <location filename="../UI/UserInterface.py" line="8605" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8595" />
+      <location filename="../UI/UserInterface.py" line="8606" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8640" />
+      <location filename="../UI/UserInterface.py" line="8651" />
       <source>First time usage</source>
       <translation>Primo avvio</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8641" />
+      <location filename="../UI/UserInterface.py" line="8652" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8663" />
+      <location filename="../UI/UserInterface.py" line="8674" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished">Seleziona cartella di lavoro</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8831" />
+      <location filename="../UI/UserInterface.py" line="8842" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8832" />
+      <location filename="../UI/UserInterface.py" line="8843" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -94151,8 +94166,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginVcsGit.py" line="134" />
-      <location filename="../Plugins/PluginVcsGit.py" line="98" />
+      <location filename="../Plugins/PluginVcsGit.py" line="133" />
+      <location filename="../Plugins/PluginVcsGit.py" line="97" />
       <source>Git</source>
       <translation type="unfinished" />
     </message>
@@ -94366,156 +94381,156 @@
   <context>
     <name>VcsProjectHelper</name>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="76" />
+      <location filename="../VCS/ProjectHelper.py" line="77" />
       <source>New from repository</source>
       <translation>Nuovo dal repository</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="78" />
+      <location filename="../VCS/ProjectHelper.py" line="79" />
       <source>&amp;New from repository...</source>
       <translation>&amp;Nuovo dal repository...</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="85" />
+      <location filename="../VCS/ProjectHelper.py" line="86" />
       <source>Create a new project from the VCS repository</source>
       <translation>Crea nuovo progetto dal repository VCS</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="90" />
+      <location filename="../VCS/ProjectHelper.py" line="91" />
       <source>&lt;b&gt;New from repository&lt;/b&gt;&lt;p&gt;This creates a new local project from the VCS repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;New from repository&lt;/b&gt;&lt;p&gt;Crea un nuovo progetto locale dal repository VCS.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="101" />
+      <location filename="../VCS/ProjectHelper.py" line="102" />
       <source>Export from repository</source>
       <translation>Esporta dal repository</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="103" />
+      <location filename="../VCS/ProjectHelper.py" line="104" />
       <source>&amp;Export from repository...</source>
       <translation>&amp;Esporta dal repository...</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="112" />
+      <location filename="../VCS/ProjectHelper.py" line="113" />
       <source>Export a project from the repository</source>
       <translation>Esporta un progetto dal repository</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="117" />
+      <location filename="../VCS/ProjectHelper.py" line="118" />
       <source>&lt;b&gt;Export from repository&lt;/b&gt;&lt;p&gt;This exports a project from the repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Esporta dal repository&lt;/b&gt;&lt;p&gt;Esporta un progetto dal repository.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="127" />
+      <location filename="../VCS/ProjectHelper.py" line="128" />
       <source>Add to repository</source>
       <translation>Aggiungi al repository</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="129" />
+      <location filename="../VCS/ProjectHelper.py" line="130" />
       <source>&amp;Add to repository...</source>
       <translation>&amp;Aggiungi al repository...</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="136" />
+      <location filename="../VCS/ProjectHelper.py" line="137" />
       <source>Add the local project to the VCS repository</source>
       <translation>Aggiungi il progetto locale al repository VCS</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="141" />
+      <location filename="../VCS/ProjectHelper.py" line="142" />
       <source>&lt;b&gt;Add to repository&lt;/b&gt;&lt;p&gt;This adds (imports) the local project to the VCS repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aggiungi al repository&lt;/b&gt;&lt;p&gt;Aggiungi (importa) il progetto locale al repository VCS.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="192" />
-      <location filename="../VCS/ProjectHelper.py" line="190" />
+      <location filename="../VCS/ProjectHelper.py" line="193" />
+      <location filename="../VCS/ProjectHelper.py" line="191" />
       <source>VCS</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="265" />
-      <location filename="../VCS/ProjectHelper.py" line="236" />
+      <location filename="../VCS/ProjectHelper.py" line="266" />
+      <location filename="../VCS/ProjectHelper.py" line="237" />
       <source>New Project</source>
       <translation>Nuovo progetto</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="462" />
-      <location filename="../VCS/ProjectHelper.py" line="237" />
+      <location filename="../VCS/ProjectHelper.py" line="465" />
+      <location filename="../VCS/ProjectHelper.py" line="238" />
       <source>Select version control system for the project</source>
       <translation>Seleziona il version control system per il progetto</translation>
     </message>
     <message>
+      <location filename="../VCS/ProjectHelper.py" line="497" />
+      <location filename="../VCS/ProjectHelper.py" line="267" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation>Vuoi modificare le opzioni del comando VCS ?</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="287" />
+      <source>Create project directory</source>
+      <translation>Crea la directory del progetto</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="290" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;La directory del progetto &lt;b&gt;{0}&lt;/b&gt; non può essere creata.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="396" />
+      <location filename="../VCS/ProjectHelper.py" line="380" />
+      <location filename="../VCS/ProjectHelper.py" line="336" />
+      <location filename="../VCS/ProjectHelper.py" line="316" />
+      <source>New project from repository</source>
+      <translation>Nuovo progetto dal repository</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="319" />
+      <source>Select a project file to open.</source>
+      <translation>Seleziona un file progetto da aprire.</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="339" />
+      <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="384" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation>Il file progetto deve essere aggiunto al repository ?</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="399" />
+      <source>The project could not be retrieved from the repository.</source>
+      <translation>Il progetto non può essere scaricato dal repository.</translation>
+    </message>
+    <message>
       <location filename="../VCS/ProjectHelper.py" line="494" />
-      <location filename="../VCS/ProjectHelper.py" line="266" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation>Vuoi modificare le opzioni del comando VCS ?</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="286" />
-      <source>Create project directory</source>
-      <translation>Crea la directory del progetto</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="289" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;La directory del progetto &lt;b&gt;{0}&lt;/b&gt; non può essere creata.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="393" />
-      <location filename="../VCS/ProjectHelper.py" line="377" />
-      <location filename="../VCS/ProjectHelper.py" line="335" />
-      <location filename="../VCS/ProjectHelper.py" line="315" />
-      <source>New project from repository</source>
-      <translation>Nuovo progetto dal repository</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="318" />
-      <source>Select a project file to open.</source>
-      <translation>Seleziona un file progetto da aprire.</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="338" />
-      <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="381" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation>Il file progetto deve essere aggiunto al repository ?</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="396" />
-      <source>The project could not be retrieved from the repository.</source>
-      <translation>Il progetto non può essere scaricato dal repository.</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="491" />
-      <location filename="../VCS/ProjectHelper.py" line="461" />
+      <location filename="../VCS/ProjectHelper.py" line="464" />
       <source>Import Project</source>
       <translation>Importa progetto</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="535" />
+      <location filename="../VCS/ProjectHelper.py" line="540" />
       <source>Update</source>
       <translation>Aggiorna</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="669" />
-      <location filename="../VCS/ProjectHelper.py" line="536" />
+      <location filename="../VCS/ProjectHelper.py" line="674" />
+      <location filename="../VCS/ProjectHelper.py" line="541" />
       <source>The project should be reread. Do this now?</source>
       <translation>Il progetto deve essere riletto. Farlo ora ?</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="572" />
+      <location filename="../VCS/ProjectHelper.py" line="577" />
       <source>Remove project from repository</source>
       <translation>Rimuovi progetto dal repository</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="575" />
+      <location filename="../VCS/ProjectHelper.py" line="580" />
       <source>Dou you really want to remove this project from the repository (and disk)?</source>
       <translation>Vuoi veramente rimuovere questo progetto dal repository (e dal disco) ?</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="668" />
+      <location filename="../VCS/ProjectHelper.py" line="673" />
       <source>Switch</source>
       <translation>Commutare</translation>
     </message>
@@ -99506,54 +99521,54 @@
   <context>
     <name>VirtualenvManager</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="318" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="322" />
       <source>Add Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="319" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="323" />
       <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="356" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="362" />
       <source>Change Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="389" />
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="357" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="395" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="363" />
       <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="388" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="394" />
       <source>Rename Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="480" />
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="413" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="486" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="419" />
       <source>{0} - {1}</source>
       <translation type="unfinished">{0} - {1}</translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="420" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="426" />
       <source>Delete Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="421" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="427" />
       <source>Do you really want to delete these virtual environments?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="487" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="493" />
       <source>Remove Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="488" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="494" />
       <source>Do you really want to remove these virtual environments?</source>
       <translation type="unfinished" />
     </message>
@@ -99561,7 +99576,7 @@
   <context>
     <name>VirtualenvManagerDialog</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" />
+      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="449" />
       <source>Manage Virtual Environments</source>
       <translation type="unfinished" />
     </message>
@@ -99684,7 +99699,7 @@
   <context>
     <name>VirtualenvManagerWindow</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" />
+      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="489" />
       <source>Manage Virtual Environments</source>
       <translation type="unfinished" />
     </message>
@@ -104788,22 +104803,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="125" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="117" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="127" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="119" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="49" />
       <source>Connect WiFi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="173" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="167" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="175" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="169" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="50" />
       <source>Check Internet Connection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="147" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="141" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="149" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="143" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="51" />
       <source>Disconnect WiFi</source>
       <translation type="unfinished" />
@@ -104814,40 +104829,40 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="244" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="235" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="225" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="215" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="249" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="240" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="230" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="220" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="55" />
       <source>Write WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="282" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="272" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="261" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="287" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="277" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="266" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="56" />
       <source>Remove WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="495" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="486" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="500" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="491" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="58" />
       <source>Enable WebREPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="529" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="520" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="512" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="534" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="525" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="517" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="59" />
       <source>Disable WebREPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="313" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="329" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="318" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="61" />
       <source>Start WiFi Access Point</source>
       <translation type="unfinished" />
@@ -104858,14 +104873,14 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="378" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="383" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="66" />
       <source>Show Connected Clients</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="345" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="359" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="350" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="68" />
       <source>Stop WiFi Access Point</source>
       <translation type="unfinished" />
@@ -104881,186 +104896,186 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="464" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="448" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="428" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="419" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="469" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="433" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="424" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="79" />
       <source>Set Network Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="118" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="120" />
       <source>&lt;p&gt;The device was connected to &lt;b&gt;{0}&lt;/b&gt; successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="126" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="128" />
       <source>&lt;p&gt;The device could not connect to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="533" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="499" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="286" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="248" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="150" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="129" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="538" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="504" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="291" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="253" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="178" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="152" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="131" />
       <source>unknown</source>
       <translation type="unfinished">sconosciuto</translation>
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="142" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="144" />
       <source>&lt;p&gt;The device was disconnected from the WiFi network.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="148" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="150" />
       <source>&lt;p&gt;The device could not be disconnected.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="161" />
-      <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="163" />
+      <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="165" />
       <source>&lt;p&gt;The internet connection is &lt;b&gt;not available&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="174" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176" />
       <source>&lt;p&gt;The internet is not available.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="236" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="216" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="241" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="221" />
       <source>&lt;p&gt;The WiFi credentials were saved on the device. The device will connect to the WiFi network at boot time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="226" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="231" />
       <source>&lt;p&gt;The WiFi credentials and a connect script were saved on the device. Use the script by simply importing it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="245" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="250" />
       <source>&lt;p&gt;The WiFi credentials could not be saved on the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="262" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="267" />
       <source>Shall the saved WiFi credentials really be removed from the connected device?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="273" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="278" />
       <source>&lt;p&gt;The WiFi credentials were removed from the device. The device will not connect to the WiFi network at boot time anymore.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="283" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="288" />
       <source>&lt;p&gt;The WiFi credentials could not be removed from the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="314" />
-      <source>The WiFi Access Point interface was started successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="319" />
+      <source>The WiFi Access Point interface was started successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324" />
       <source>&lt;p&gt;The WiFi Access Point could not be started.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="405" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="356" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="326" />
+      <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351" />
+      <source>The WiFi Access Point interface was stopped successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354" />
+      <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="384" />
+      <source>No clients are connected to the access point.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="408" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="399" />
+      <source>Deactivate WiFi Interface</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="400" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="321" />
-      <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="346" />
-      <source>The WiFi Access Point interface was stopped successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="349" />
-      <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="379" />
-      <source>No clients are connected to the access point.</source>
+      <source>The WiFi interface was deactivated successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="403" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="394" />
-      <source>Deactivate WiFi Interface</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="395" />
-      <source>The WiFi interface was deactivated successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="398" />
       <source>&lt;p&gt;The WiFi interface could not be deactivated.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="420" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="425" />
       <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;adafruit_ntp&lt;/b&gt; is not installed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="429" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="434" />
       <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;ntptime&lt;/b&gt; is not available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="449" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="454" />
       <source>The device time was synchronized successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453" />
-      <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="458" />
+      <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="463" />
       <source>&lt;p&gt;The device time could not be synchronized. Is the device connected to a WiFi network?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="487" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="492" />
       <source>&lt;p&gt;The WebREPL server of the device will be activated after a reboot.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="496" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="501" />
       <source>&lt;p&gt;The WebREPL server of the device could not be enabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="513" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="518" />
       <source>Shall the WebREPL server of the device really be disabled?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="521" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="526" />
       <source>&lt;p&gt;The WebREPL server of the device will not be enabled at boot time anymore.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="530" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="535" />
       <source>&lt;p&gt;The WebREPL server of the device could not be disabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -105623,32 +105638,32 @@
   <context>
     <name>mercurial</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1349" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1383" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Origine #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1913" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1955" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1391" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1919" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1363" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1961" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1397" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Segnalibri&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1370" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1968" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1404" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1376" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1410" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
@@ -105657,7 +105672,7 @@
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1429" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -105674,36 +105689,36 @@
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1887" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1929" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1894" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1936" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1901" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1943" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1906" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1948" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1933" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1975" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Origini&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1981" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -106366,17 +106381,17 @@
   <context>
     <name>subversion</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1736" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1769" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Informazioni Repository&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revisione corrente &lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revisione committata&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Data della commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Ora della commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Ultimo autore&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1888" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1919" />
       <source>unknown</source>
       <translation>sconosciuto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1892" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1923" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Informazioni Repository&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revisione corrente&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revisione Committata&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Data della commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Ora della commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Ultimo autore&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_pt.ts	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/i18n/eric7_pt.ts	Fri Nov 01 18:12:30 2024 +0100
@@ -2021,47 +2021,47 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="281" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="284" />
       <source>Formatting Failure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="282" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="285" />
       <source>&lt;p&gt;Formatting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="545" />
-      <source>would reformat</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../CodeFormatting/BlackFormattingDialog.py" line="548" />
+      <source>would reformat</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="551" />
       <source>reformatted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="553" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="556" />
       <source>unchanged</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="557" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="560" />
       <source>unmodified</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="561" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="564" />
       <source>ignored</source>
       <translation type="unfinished">ignorado</translation>
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="565" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="568" />
       <source>failed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="570" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="573" />
       <source>invalid status ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -4418,16 +4418,16 @@
   <context>
     <name>CircuitPythonUpdaterInterface</name>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="600" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="592" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="579" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="546" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="516" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="506" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="486" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="469" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="460" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="446" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="615" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="607" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="594" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="561" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="531" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="521" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="501" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="484" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="475" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="54" />
       <source>Install Modules</source>
       <translation type="unfinished" />
@@ -4463,10 +4463,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="385" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="375" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="365" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="346" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="396" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="355" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="95" />
       <source>Update Modules</source>
       <translation type="unfinished" />
@@ -4487,8 +4487,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="642" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="621" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="658" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="636" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="108" />
       <source>Uninstall Modules</source>
       <translation type="unfinished" />
@@ -4509,25 +4509,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="249" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="236" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="225" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="213" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="201" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="188" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="251" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="238" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="227" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="215" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="203" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="190" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="118" />
       <source>Add Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="284" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="269" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="287" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="271" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="119" />
       <source>Remove Bundles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="671" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="689" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="121" />
       <source>Show Local Cache Path</source>
       <translation type="unfinished" />
@@ -4548,132 +4548,132 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="189" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="191" />
       <source>Enter Bundle by 'User/Repo' Github String:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="202" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="204" />
       <source>&lt;p&gt;The bundle &lt;b&gt;{0}&lt;/b&gt; is already in the list.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="214" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="216" />
       <source>&lt;p&gt;The bundle string is invalid, expecting github URL or 'user/repository' string.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="226" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="228" />
       <source>&lt;p&gt;The bundle string is invalid. The repository doesn't exist (error code 404).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="237" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="239" />
       <source>&lt;p&gt;The bundle string is invalid. Is the repository a valid circup bundle?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="250" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="252" />
       <source>&lt;p&gt;Added bundle &lt;b&gt;{0}&lt;/b&gt; ({1}).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="270" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="272" />
       <source>Select the bundles to be removed:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="285" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="288" />
       <source>&lt;p&gt;These bundles were removed from the local bundles list.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="347" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="356" />
       <source>All modules are already up-to-date.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="366" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="377" />
       <source>&lt;p&gt;There was an error updating &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="387" />
       <source>&lt;p&gt;These modules were updated on the connected device.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="397" />
       <source>No modules could be updated.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="448" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="463" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation type="unfinished">Ficheiros de Texto (*.txt);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="476" />
       <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not contain valid modules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="470" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="485" />
       <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="488" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="503" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished">Ficheiros Python (*.py);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="507" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="522" />
       <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not contain valid import statements or does not import external modules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="517" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="532" />
       <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="547" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="562" />
       <source>&lt;p&gt;Ready to install these modules?{0}{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="552" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="567" />
       <source>Dependencies:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="580" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="595" />
       <source>&lt;p&gt;Installation complete. These modules were installed successfully.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="593" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="608" />
       <source>&lt;p&gt;Installation complete. No modules were installed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="601" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="616" />
       <source>&lt;p&gt;No modules installation is required.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="622" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="637" />
       <source>Select the modules/packages to be uninstalled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="643" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="659" />
       <source>&lt;p&gt;These modules/packages were uninstalled from the connected device.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="672" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="690" />
       <source>&lt;p&gt;&lt;b&gt;circup&lt;/b&gt; stores the downloaded CircuitPython bundles in this directory.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -4681,44 +4681,44 @@
   <context>
     <name>CircupFunctions</name>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="75" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="84" />
       <source>Find Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="76" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="85" />
       <source>&lt;p&gt;There was an error: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="148" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="109" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="157" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="118" />
       <source>Download Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="110" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="119" />
       <source>&lt;p&gt;There was a problem downloading the bundle. Please try again in a moment.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="149" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="158" />
       <source>&lt;p&gt;Missing file &lt;b&gt;boot_out.txt&lt;/b&gt; on the device: wrong path or drive corrupted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="243" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="232" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="252" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="241" />
       <source>Install Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="233" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="242" />
       <source>&lt;p&gt;The compiled version of module &lt;b&gt;{0}&lt;/b&gt; cannot be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="244" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="253" />
       <source>&lt;p&gt;The module name &lt;b&gt;{0}&lt;/b&gt; is not known.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -4842,17 +4842,17 @@
   <context>
     <name>Closehead</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="52" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54" />
       <source>Revision &lt;{0}&gt; closed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="56" />
       <source>Revisions &lt;{0}&gt; closed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="61" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="63" />
       <source>Closing Heads</source>
       <translation type="unfinished" />
     </message>
@@ -6182,19 +6182,19 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1650" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1609" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1652" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1611" />
       <source>{0} - {1}</source>
       <comment>issue code, message</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2995" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2997" />
       <source>Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2996" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2998" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
@@ -7461,7 +7461,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="713" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="715" />
       <location filename="../CondaInterface/CondaPackagesWidget.py" line="181" />
       <source>Delete Environment</source>
       <translation type="unfinished" />
@@ -7508,22 +7508,22 @@
       <translation type="unfinished">Ficheiros de Texto (*.txt);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="686" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="687" />
       <source>Create Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="714" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="716" />
       <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="739" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="741" />
       <source>Edit Configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="740" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="742" />
       <source>The configuration file "{0}" does not exist or is not writable.</source>
       <translation type="unfinished" />
     </message>
@@ -8868,30 +8868,30 @@
   <context>
     <name>CycloneDX</name>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="190" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="182" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="151" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="115" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="192" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="184" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="153" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="117" />
       <source>CycloneDX - SBOM Creation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="118" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="120" />
       <source>&lt;p&gt;The configured input file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="152" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="154" />
       <source>&lt;p&gt;Some of the dependencies do not have pinned version numbers.&lt;ul&gt;{0}&lt;/ul&gt;The above listed packages will NOT be included in the generated CycloneDX SBOM file as version is a mandatory field.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="183" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="185" />
       <source>&lt;p&gt;The SBOM data was written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="191" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="193" />
       <source>&lt;p&gt;The SBOM file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9233,23 +9233,23 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1355" />
-      <location filename="../Debugger/DebugServer.py" line="1272" />
-      <location filename="../Debugger/DebugServer.py" line="1188" />
-      <location filename="../Debugger/DebugServer.py" line="1098" />
+      <location filename="../Debugger/DebugServer.py" line="1358" />
+      <location filename="../Debugger/DebugServer.py" line="1275" />
+      <location filename="../Debugger/DebugServer.py" line="1191" />
+      <location filename="../Debugger/DebugServer.py" line="1101" />
       <source>Start Debugger</source>
       <translation type="unfinished">Iniciar o Depurador</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1356" />
-      <location filename="../Debugger/DebugServer.py" line="1273" />
-      <location filename="../Debugger/DebugServer.py" line="1189" />
-      <location filename="../Debugger/DebugServer.py" line="1099" />
+      <location filename="../Debugger/DebugServer.py" line="1359" />
+      <location filename="../Debugger/DebugServer.py" line="1276" />
+      <location filename="../Debugger/DebugServer.py" line="1192" />
+      <location filename="../Debugger/DebugServer.py" line="1102" />
       <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1945" />
+      <location filename="../Debugger/DebugServer.py" line="1948" />
       <source>
 Not connected
 </source>
@@ -9258,37 +9258,37 @@
 </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2110" />
+      <location filename="../Debugger/DebugServer.py" line="2113" />
       <source>Passive debug connection received
 </source>
       <translation>Conexão de depuração passiva recebida
 </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2119" />
+      <location filename="../Debugger/DebugServer.py" line="2122" />
       <source>Passive debug connection received while not in passive mode.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2125" />
+      <location filename="../Debugger/DebugServer.py" line="2128" />
       <source>Debug Client Connection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2126" />
+      <location filename="../Debugger/DebugServer.py" line="2129" />
       <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2141" />
+      <location filename="../Debugger/DebugServer.py" line="2144" />
       <source>Passive debug connection closed
 </source>
       <translation>Conexão de depuração passiva fechada
 </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2272" />
+      <location filename="../Debugger/DebugServer.py" line="2275" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9301,7 +9301,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2374" />
+      <location filename="../Debugger/DebugUI.py" line="2380" />
       <location filename="../Debugger/DebugUI.py" line="234" />
       <source>Run Script</source>
       <translation>Executar Script</translation>
@@ -9322,8 +9322,8 @@
       <translation>&lt;b&gt;Executar Script&lt;/b&gt;&lt;p&gt;Definir os argumentos da linha de comandos e executar o script fora do depurador. Poderão gravar-se primeiro as alterações que estejam por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="2386" />
       <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="2374" />
       <location filename="../Debugger/DebugUI.py" line="255" />
       <source>Run Project</source>
       <translation>Executar Projeto</translation>
@@ -9424,7 +9424,7 @@
       <translation>&lt;b&gt;Perfilar Projeto&lt;/b&gt;&lt;p&gt;Define os argumentos da linha de comandos e perfila o projeto atual. Poderá gravar antes os ficheiros alterados por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2567" />
+      <location filename="../Debugger/DebugUI.py" line="2573" />
       <location filename="../Debugger/DebugUI.py" line="365" />
       <source>Debug Script</source>
       <translation>Depurar Script</translation>
@@ -9445,8 +9445,8 @@
       <translation>&lt;b&gt;Depurar Script&lt;/b&gt;&lt;p&gt;Definir os argumentos da linha de comandos e definir a linha atual para que seja a primeira instrução Python executável da janela do editor atual. Poderão gravar-se primeiro as alterações que estejam por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="2579" />
       <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="2567" />
       <location filename="../Debugger/DebugUI.py" line="387" />
       <source>Debug Project</source>
       <translation>Depurar projeto</translation>
@@ -9467,7 +9467,7 @@
       <translation>&lt;b&gt;Depurar Projeto&lt;/b&gt;&lt;p&gt;Definir os argumentos da linha de comandos e definir a linha atual para que seja a primeira instrução Python executável do script principal do projeto atual. Poderão gravar-se primeiro as alterações dos ficheiros do projeto que estejam por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2889" />
+      <location filename="../Debugger/DebugUI.py" line="2895" />
       <location filename="../Debugger/DebugUI.py" line="411" />
       <location filename="../Debugger/DebugUI.py" line="409" />
       <source>Restart</source>
@@ -9906,66 +9906,66 @@
       <translation>&lt;p&gt;A condição do ponto de interrupção &lt;b&gt;{0}, {1}&lt;/b&gt;tem um erro de sintaxe.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1775" />
+      <location filename="../Debugger/DebugUI.py" line="1779" />
       <source>Watch Expression Error</source>
       <translation>Observar Erro de Expressão</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1776" />
+      <location filename="../Debugger/DebugUI.py" line="1780" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1804" />
+      <location filename="../Debugger/DebugUI.py" line="1810" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1809" />
-      <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="1815" />
+      <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="1821" />
       <source>Watch expression already exists</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1980" />
-      <location filename="../Debugger/DebugUI.py" line="1971" />
+      <location filename="../Debugger/DebugUI.py" line="1986" />
+      <location filename="../Debugger/DebugUI.py" line="1977" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1973" />
+      <location filename="../Debugger/DebugUI.py" line="1979" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2381" />
-      <location filename="../Debugger/DebugUI.py" line="2183" />
-      <location filename="../Debugger/DebugUI.py" line="1981" />
+      <location filename="../Debugger/DebugUI.py" line="2387" />
+      <location filename="../Debugger/DebugUI.py" line="2189" />
+      <location filename="../Debugger/DebugUI.py" line="1987" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>O projeto atual não tem um script principal definido. A cancelar</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2182" />
-      <location filename="../Debugger/DebugUI.py" line="2173" />
+      <location filename="../Debugger/DebugUI.py" line="2188" />
+      <location filename="../Debugger/DebugUI.py" line="2179" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2175" />
+      <location filename="../Debugger/DebugUI.py" line="2181" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2574" />
+      <location filename="../Debugger/DebugUI.py" line="2580" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>O projeto atual não tem um script principal definido. Impossível depurar.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3246" />
+      <location filename="../Debugger/DebugUI.py" line="3252" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -10128,26 +10128,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="325" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="312" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="336" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="323" />
       <source>Add allowed host</source>
       <translation>Adicionar anfitrião permitido</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="349" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="313" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="360" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="324" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Introduzir a direção IP de um anfitrião permitido</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="363" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="326" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="374" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="337" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;A direção &lt;b&gt;{0}&lt;/b&gt; não é um direção IP v4 ou IP v6 válida. A cancelar...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="362" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="348" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="373" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="359" />
       <source>Edit allowed host</source>
       <translation>Editar anfitrião permitido</translation>
     </message>
@@ -10244,13 +10244,8 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debugger Type:</source>
-      <translation>Tipo de Depurador:</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Select the debugger type of the backend</source>
-      <translation>Selecionar o tipo de instalação de retaguarda do depurador</translation>
+      <source>Debug Server Port:</source>
+      <translation>Porto de Depuração do Servidor:</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
@@ -10266,8 +10261,28 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debug Server Port:</source>
-      <translation>Porto de Depuração do Servidor:</translation>
+      <source>Debugger Type:</source>
+      <translation>Tipo de Depurador:</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select the debugger type of the backend</source>
+      <translation>Selecionar o tipo de instalação de retaguarda do depurador</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select to not stop the debugger at the first executable line.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>&lt;b&gt;Don't stop at first line&lt;/b&gt;&lt;p&gt;This prevents the debugger from stopping at the first executable line.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Don't stop at first line</source>
+      <translation type="unfinished">Não parar na primeira linha</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
@@ -10617,46 +10632,46 @@
   <context>
     <name>DebuggerInterfacePython</name>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="728" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="705" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="609" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="563" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="445" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="422" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="345" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="321" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="258" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="747" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="724" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="628" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="582" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="464" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="441" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="364" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="340" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="277" />
       <source>Start Debugger</source>
       <translation type="unfinished">Iniciar o Depurador</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="564" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="259" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="583" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="278" />
       <source>&lt;p&gt;No suitable Python3 environment configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="729" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="706" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="610" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="446" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="423" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="322" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="748" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="725" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="629" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="465" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="442" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="341" />
       <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="346" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="365" />
       <source>&lt;p&gt;Remote debugging is configured but no command for remote login was given.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1691" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1692" />
       <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;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -11668,8 +11683,8 @@
   <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="450" />
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="420" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421" />
       <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.ui" line="0" />
       <source>.desktop Wizard</source>
       <translation type="unfinished" />
@@ -12026,8 +12041,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451" />
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="452" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="422" />
       <source>Only one of 'Only Show In' or  'Not Show In' allowed.</source>
       <translation type="unfinished" />
     </message>
@@ -15182,12 +15197,12 @@
       <translation>Cursor pode mover-se dentro do espaço virtual</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="287" />
+      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288" />
       <source>Tab and Indent Override</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288" />
+      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="289" />
       <source>Shall the selected entries really be removed?</source>
       <translation type="unfinished" />
     </message>
@@ -15522,27 +15537,27 @@
       <translation>Importar Estilos de Realce</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="803" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="805" />
       <source>Delete Sub-Style</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="804" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="806" />
       <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="840" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="842" />
       <source>{0} - Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="867" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="869" />
       <source>Reset Sub-Styles to Default</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="868" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="870" />
       <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -21865,14 +21880,14 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="395" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="193" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1775" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1759" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1782" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1766" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="197" />
       <source>Erase Flash</source>
       <translation type="unfinished" />
@@ -21883,7 +21898,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1864" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1877" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="204" />
       <source>Flash Additional Firmware</source>
       <translation type="unfinished" />
@@ -21895,25 +21910,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="367" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="368" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="211" />
       <source>Restore Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="465" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="467" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="215" />
       <source>Show Chip ID</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="488" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="491" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="218" />
       <source>Show Flash ID</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="511" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="515" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="221" />
       <source>Show MAC Address</source>
       <translation type="unfinished" />
@@ -21934,139 +21949,139 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1863" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1820" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="366" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1876" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1830" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="367" />
       <source>'esptool write_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="396" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="425" />
       <source>unknown</source>
       <translation type="unfinished">desconhecido</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="434" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="436" />
       <source>&lt;h4&gt;{0} Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="442" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="444" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="448" />
       <source>{0} Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="466" />
       <source>'esptool chip_id' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="487" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="490" />
       <source>'esptool flash_id' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="510" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="514" />
       <source>'esptool read_mac' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="641" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="646" />
       <source>Set Country</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="642" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="647" />
       <source>Reset Country</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="965" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="970" />
       <source>Error saving credentials: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="976" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="981" />
       <source>Error saving auto-connect script: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="980" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="985" />
       <source>Error modifying 'boot.py': {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1017" />
       <source>Error deleting credentials: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1096" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1101" />
       <source>unknown ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1475" />
-      <source>Active</source>
-      <translation type="unfinished">Ativo</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1476" />
-      <source>Name</source>
-      <translation type="unfinished">Nome</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1477" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/EspDevices.py" line="1480" />
-      <source>Address Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1481" />
-      <source>Public</source>
-      <translation type="unfinished">Público</translation>
+      <source>Active</source>
+      <translation type="unfinished">Ativo</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/EspDevices.py" line="1481" />
+      <source>Name</source>
+      <translation type="unfinished">Nome</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1482" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1485" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1486" />
+      <source>Public</source>
+      <translation type="unfinished">Público</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1486" />
       <source>Random</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1484" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1489" />
       <source>MTU</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1484" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1489" />
       <source>{0} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1760" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1767" />
       <source>Shall the flash of the selected device really be erased?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1774" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1781" />
       <source>'esptool erase_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1821" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1831" />
       <source>Flash µPy/CPy Firmware</source>
       <translation type="unfinished" />
     </message>
@@ -22074,7 +22089,7 @@
   <context>
     <name>EspFirmwareSelectionDialog</name>
     <message>
-      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="68" />
+      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="77" />
       <source>Firmware Files (*.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -24365,22 +24380,22 @@
   <context>
     <name>FindFileFiltersEditDialog</name>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="109" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="111" />
       <source>Delete Selected Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="110" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="112" />
       <source>Shall the selected filters really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="127" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="129" />
       <source>Default Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="128" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="130" />
       <source>Do you really want to clear the list of defined file filters and replace it with the list of default filters?</source>
       <translation type="unfinished" />
     </message>
@@ -25070,7 +25085,7 @@
   <context>
     <name>FormattingDiffWidget</name>
     <message>
-      <location filename="../CodeFormatting/FormattingDiffWidget.py" line="63" />
+      <location filename="../CodeFormatting/FormattingDiffWidget.py" line="65" />
       <source>There is no difference.</source>
       <translation type="unfinished">Não há diferenças.</translation>
     </message>
@@ -25170,7 +25185,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1715" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1747" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="219" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -25196,153 +25211,153 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="308" />
       <source>Adding files to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="316" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="321" />
       <source>Initial commit to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="348" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="357" />
       <source>Cloning project from a Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="448" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="460" />
       <source>Commit Changes</source>
       <translation type="unfinished">Aplicar Alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="449" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="461" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="518" />
       <source>Committing changes to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="584" />
       <source>Switch</source>
       <translation type="unfinished">Mudar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="585" />
       <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="597" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="614" />
       <source>Synchronizing with the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="664" />
       <source>Adding files/directories to the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="721" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="743" />
       <source>Removing files/directories from the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="814" />
       <source>Renaming {0}</source>
       <translation type="unfinished">A renomear {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="942" />
       <source>Unstage files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="968" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="957" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="996" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="985" />
       <source>Revert changes</source>
       <translation type="unfinished">Desfazer alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="958" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="986" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="969" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="997" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="975" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1003" />
       <source>Reverting changes</source>
       <translation type="unfinished">Desfazer alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1028" />
-      <source>Merging</source>
-      <translation type="unfinished">A mesclar</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1057" />
+      <source>Merging</source>
+      <translation type="unfinished">A mesclar</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1086" />
       <source>Main branch head</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1285" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1315" />
       <source>Git Command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1396" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1426" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1430" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Pais&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1406" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1436" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiquetas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1412" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1442" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Ramos&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1417" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1447" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1422" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1457" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1462" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1437" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1467" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1443" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1473" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -25352,459 +25367,459 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1553" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1554" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1574" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1621" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1604" />
       <source>Git Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1575" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1605" />
       <source>&lt;p&gt;Copying the directory &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1592" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1622" />
       <source>&lt;p&gt;Copying the file &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2845" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1717" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2920" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1749" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1788" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1775" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1764" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1822" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1809" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1798" />
       <source>Git Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1823" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; não se pôde ler.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1842" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1877" />
       <source>Fetching from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1879" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918" />
       <source>Pulling from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1919" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1962" />
       <source>Pushing to a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1948" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1994" />
       <source>Committing failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1974" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2021" />
       <source>Aborting uncommitted/failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2008" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2056" />
       <source>Applying patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2043" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2091" />
       <source>Check patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2046" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2094" />
       <source>Apply patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2130" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2181" />
       <source>Tagging in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2443" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2488" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2510" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2511" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2484" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2578" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2560" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2542" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2486" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2544" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2503" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2561" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2550" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2608" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2597" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2689" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2571" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2753" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2699" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2599" />
       <source>Git Bundle Files (*.bundle);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2580" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2627" />
       <source>List Bundle Heads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2687" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2751" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2697" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2660" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2775" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2746" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2816" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3025" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2861" />
+      <source>Git Bisect ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2919" />
+      <source>Process Generation Error</source>
+      <translation type="unfinished">Erro na Criação de Processo</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2965" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2948" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2930" />
+      <source>Create Bisect Replay File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2932" />
+      <source>Git Bisect Replay Files (*.replay)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2949" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2789" />
-      <source>Git Bisect ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2844" />
-      <source>Process Generation Error</source>
-      <translation type="unfinished">Erro na Criação de Processo</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2890" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2873" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2855" />
-      <source>Create Bisect Replay File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2857" />
-      <source>Git Bisect Replay Files (*.replay)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2874" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2891" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2966" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2911" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2940" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2913" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3015" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2988" />
       <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3013" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3299" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3121" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3378" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3200" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3181" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3260" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3182" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3261" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3323" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3402" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3384" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3417" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3497" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3442" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3468" />
-      <source>Copy Changesets (Cancel)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3549" />
+      <source>Copy Changesets (Cancel)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3630" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3763" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3844" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3673" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3845" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3802" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3751" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3674" />
+      <source>Select a stash (empty for latest stash):</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3708" />
+      <source>Restore Stash</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3721" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
-      <source>Select a stash (empty for latest stash):</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3669" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3627" />
-      <source>Restore Stash</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3683" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3720" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3801" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3790" />
       <source>Create Branch</source>
       <translation type="unfinished">Criar Ramo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3710" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3735" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3774" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3855" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3775" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3856" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3785" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3866" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3807" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3888" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3889" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3895" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3876" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3958" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished">A mostrar as definições de configuração combinadas</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3899" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3985" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3921" />
-      <source>Performing Repository Housekeeping</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3963" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3965" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3970" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3976" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3982" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3987" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3993" />
-      <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3999" />
-      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011" />
+      <source>Performing Repository Housekeeping</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4054" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4056" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4061" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4067" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4073" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4078" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4084" />
+      <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4090" />
+      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4095" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4102" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4080" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4172" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4120" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4186" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4278" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4187" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4279" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4200" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4292" />
       <source>All</source>
       <translation type="unfinished">Tudo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4204" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4296" />
       <source>Submodule Path</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4297" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4254" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4347" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4382" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4357" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4318" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4453" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4414" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4387" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4484" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4441" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4539" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -32475,101 +32490,101 @@
       <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="519" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="520" />
       <source>Add Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="537" />
-      <source>Lock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538" />
-      <source>Enter a reason for the lock:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="556" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538" />
+      <source>Lock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="539" />
+      <source>Enter a reason for the lock:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="557" />
       <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="580" />
-      <source>Unlock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="581" />
+      <source>Unlock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="582" />
       <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="616" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="599" />
-      <source>Move Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600" />
-      <source>Enter the new path for the worktree:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600" />
+      <source>Move Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="601" />
+      <source>Enter the new path for the worktree:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="618" />
       <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="637" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="638" />
       <source>Remove Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="640" />
       <source>Remove Worktree Forcefully</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="645" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="646" />
       <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="672" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="673" />
       <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="727" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="703" />
-      <source>Prune Worktree Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704" />
-      <source>Do you really want to prune the information of these worktrees?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="728" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704" />
+      <source>Prune Worktree Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="705" />
+      <source>Do you really want to prune the information of these worktrees?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="729" />
       <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="765" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="754" />
-      <source>Repair Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755" />
-      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755" />
+      <source>Repair Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="756" />
+      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="767" />
       <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -32686,12 +32701,12 @@
   <context>
     <name>Gpg</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="73" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="76" />
       <source>Verify Signatures</source>
       <translation>Verificar Assinaturas</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="124" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="128" />
       <source>Sign Revision</source>
       <translation>Revisão de Assinaturas</translation>
     </message>
@@ -35285,456 +35300,456 @@
   <context>
     <name>Hg</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="300" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="303" />
       <source>Create project repository</source>
       <translation>Criar repositorio do projeto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="301" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="304" />
       <source>The project repository could not be created.</source>
       <translation>O repositorio do projeto não se pôde criar.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="334" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="338" />
       <source>Creating Mercurial repository</source>
       <translation>A criar repositorio Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="353" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="359" />
       <source>Initial commit to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="405" />
       <source>Cloning project from a Mercurial repository</source>
       <translation>A clonar projeto dum repositorio Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="503" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="516" />
       <source>Commit Changes</source>
       <translation>Aplicar Alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="504" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="517" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="566" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="580" />
       <source>Committing changes to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="661" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="679" />
       <source>Synchronizing with the Mercurial repository</source>
       <translation>A sincronizar com o repositorio Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="692" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="713" />
       <source>Adding files/directories to the Mercurial repository</source>
       <translation>A adicionar ficheiros/diretorios ao repositorio Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="751" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="774" />
       <source>Removing files/directories from the Mercurial repository</source>
       <translation>A retirar ficheiros/diretorios do repositorio Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="829" />
       <source>Renaming {0}</source>
       <translation>A renomear {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="935" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="964" />
       <source>Tagging in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="981" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="970" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1011" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1000" />
       <source>Revert changes</source>
       <translation>Desfazer alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="971" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1001" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="982" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1012" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="988" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018" />
       <source>Reverting changes</source>
       <translation>Desfazer alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1033" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064" />
       <source>Merging</source>
       <translation>A mesclar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1072" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1103" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1095" />
       <source>Re-Merge</source>
       <translation>Remesclar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1065" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1096" />
       <source>Do you really want to re-merge these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1073" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1104" />
       <source>Do you really want to re-merge the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1076" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1108" />
       <source>Re-Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1098" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1131" />
       <source>Current branch tip</source>
       <translation>Dica de ramo atual</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1280" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1314" />
       <source>Mercurial command</source>
       <translation>Comando de Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1457" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1492" />
       <source>Copying {0}</source>
       <translation>A copiar {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1720" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1699" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1746" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737" />
       <source>Mercurial Side-by-Side Difference</source>
       <translation>Diferenças lado a lado de Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1721" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1759" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; não se pôde ler.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2391" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2380" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1797" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2457" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2446" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1835" />
       <source>Apply changegroups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1800" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1838" />
       <source>Pulling from a remote Mercurial repository</source>
       <translation>A puxar dum repositorio Mercurial remoto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1845" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1884" />
       <source>Pushing to a remote Mercurial repository</source>
       <translation>A empurrar a um repositorio Mercurial remoto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1985" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2027" />
       <source>Marking as 'unresolved'</source>
       <translation>A marcar como 'sem resolver'</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1987" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2029" />
       <source>Marking as 'resolved'</source>
       <translation>A marcar como 'resolvido'</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2009" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2051" />
       <source>Aborting uncommitted merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2032" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2075" />
       <source>Creating branch in the Mercurial repository</source>
       <translation>A criar ramo no repositorio Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2040" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2086" />
       <source>Created new branch &lt;{0}&gt;.</source>
       <translation>Criado o novo ramo &lt;{0}&gt;.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2095" />
       <source>Showing current branch</source>
       <translation>A mostrar o ramo atual</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2136" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2184" />
       <source>Verifying the integrity of the Mercurial repository</source>
       <translation>A verificar a integridade do repositorio Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2149" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2200" />
       <source>Showing the combined configuration settings</source>
       <translation>A mostrar as definições de configuração combinadas</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2160" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2215" />
       <source>Showing aliases for remote repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2171" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230" />
       <source>Recovering from interrupted transaction</source>
       <translation>A recuperar duma transação interrompida</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2182" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2245" />
       <source>Identifying project directory</source>
       <translation>A identificar o diretorio do projeto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2227" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2291" />
       <source>Create .hgignore file</source>
       <translation>Criar ficheiro .hgignore</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2292" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2329" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2303" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2285" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2351" />
       <source>Create changegroup</source>
       <translation>Criar conjunto de alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2287" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2353" />
       <source>Mercurial Changegroup Files (*.hg)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2304" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370" />
       <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2409" />
       <source>Preview changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2372" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2345" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2438" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2411" />
       <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2381" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2447" />
       <source>Shall the working directory be updated?</source>
       <translation>O diretorio de trabalho deve ser atualizado?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2413" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2479" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2433" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2501" />
       <source>Mercurial Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2527" />
       <source>Removing files from the Mercurial repository only</source>
       <translation>A retirar ficheiros apenas do repositorio Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2500" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2481" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2576" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2557" />
       <source>Backing out changeset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2482" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2558" />
       <source>No revision given. Aborting...</source>
       <translation>Não foi dada revisão. Terminando...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2516" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2511" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2593" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2587" />
       <source>Rollback last transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2512" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2588" />
       <source>Are you sure you want to rollback the last transaction?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2579" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2657" />
       <source>Import Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2627" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2707" />
       <source>Export Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2749" />
       <source>Change Phase</source>
       <translation>Mudar Fase</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2724" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2804" />
       <source>Copy Changesets</source>
       <translation type="unfinished">Copiar Conjuntos de Alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2843" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2853" />
       <source>Copy Changesets (Stop)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2783" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2863" />
       <source>Copy Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2806" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2887" />
       <source>Create Unversioned Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2820" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2902" />
       <source>Delete All Backups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2821" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2903" />
       <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2912" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2892" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2881" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2994" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2963" />
       <source>Add Sub-repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2951" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2882" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3033" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2964" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2893" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2975" />
       <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2969" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2913" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3051" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2995" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2968" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2950" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2936" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3050" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3032" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3018" />
       <source>Remove Sub-repositories</source>
       <translation>Retirar Sub Repositórios</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2937" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3019" />
       <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3056" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3296" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3138" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3057" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3139" />
       <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3207" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3297" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3329" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3420" />
       <source>Mercurial Bookmark</source>
       <translation>Marcador de Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3437" />
       <source>Delete Bookmark</source>
       <translation>Apagar Marcador</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3347" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3438" />
       <source>Select the bookmark to be deleted:</source>
       <translation>Selecionar o marcador a apagar:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3449" />
       <source>Delete Mercurial Bookmark</source>
       <translation>Apagar o Marcador de Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3382" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3476" />
       <source>Rename Mercurial Bookmark</source>
       <translation>Renomear o Marcador de Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3421" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3518" />
       <source>Move Mercurial Bookmark</source>
       <translation>Mover o Marcador de Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3502" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3600" />
       <source>Pull Bookmark</source>
       <translation>Puxar Marcador</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3503" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3601" />
       <source>Select the bookmark to be pulled:</source>
       <translation>Selecionar o marcador a puxar:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3515" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3613" />
       <source>Pulling bookmark from a remote Mercurial repository</source>
       <translation>A puxar marcador desde o repositório remoto de Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3641" />
       <source>Push Bookmark</source>
       <translation>Empurrar Marcador</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3542" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3642" />
       <source>Select the bookmark to be push:</source>
       <translation>Selecione o marcador a empurrar:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3657" />
       <source>Pushing bookmark to a remote Mercurial repository</source>
       <translation>A empurrar marcador a um repositório remoto de Mercurial</translation>
     </message>
@@ -43291,22 +43306,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="644" />
       <source>Delete Host Minimum Protocol</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="643" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="645" />
       <source>&lt;p&gt;Shall the minimum protocol entry for host &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="708" />
       <source>Edit User Configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="707" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="709" />
       <source>You will loose all changes made in this dialog. Shall the data be saved first?</source>
       <translation type="unfinished" />
     </message>
@@ -43426,22 +43441,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="79" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="108" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="164" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -49079,52 +49094,52 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="300" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="303" />
       <source>Imports Sorting Failure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="301" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="304" />
       <source>&lt;p&gt;Imports sorting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="352" />
-      <source>would resort</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../CodeFormatting/IsortFormattingDialog.py" line="355" />
+      <source>would resort</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="358" />
       <source>resorted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="360" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="363" />
       <source>unchanged</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="364" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="367" />
       <source>skipped</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="368" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="371" />
       <source>failed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="373" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="376" />
       <source>error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="374" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="377" />
       <source>Unsupported 'isort' action ({0}) given.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="381" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="384" />
       <source>invalid status ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -49261,7 +49276,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="682" />
+      <location filename="../JediInterface/JediServer.py" line="683" />
       <location filename="../JediInterface/JediServer.py" line="522" />
       <source>Rename Variable</source>
       <translation type="unfinished" />
@@ -49292,27 +49307,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="690" />
+      <location filename="../JediInterface/JediServer.py" line="692" />
       <source>Refactoring</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="691" />
+      <location filename="../JediInterface/JediServer.py" line="693" />
       <source>&lt;p&gt;The refactoring could not be performed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="749" />
+      <location filename="../JediInterface/JediServer.py" line="751" />
       <source>Apply Refactoring</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="750" />
+      <location filename="../JediInterface/JediServer.py" line="752" />
       <source>&lt;p&gt;The refactoring could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="786" />
+      <location filename="../JediInterface/JediServer.py" line="788" />
       <source>The data received from the Jedi server could not be decoded. Please report this issue with the received data to the eric bugs email address.
 Error: {0}
 Data:
@@ -49321,7 +49336,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="796" />
+      <location filename="../JediInterface/JediServer.py" line="798" />
       <source>An exception happened in the Jedi client. Please report it to the eric bugs email address.
 Exception: {0}
 Value: {1}
@@ -49330,25 +49345,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="838" />
+      <location filename="../JediInterface/JediServer.py" line="840" />
       <source>The jedi and/or parso library is not installed.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="843" />
+      <location filename="../JediInterface/JediServer.py" line="845" />
       <source>'{0}' is not supported because the configured interpreter could not be started.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="851" />
+      <location filename="../JediInterface/JediServer.py" line="853" />
       <source>'{0}' is not supported because no suitable interpreter is configured.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="953" />
+      <location filename="../JediInterface/JediServer.py" line="955" />
       <source>Jedi</source>
       <translation type="unfinished" />
     </message>
@@ -49356,37 +49371,37 @@
   <context>
     <name>Largefiles</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="72" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="75" />
       <source>Convert Project - Converting</source>
       <translation>Converter Projeto - A converter</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="88" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="92" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="89" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="93" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="100" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="104" />
       <source>Convert Project - Extracting</source>
       <translation>Converter Projeto - A extrair</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="145" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="150" />
       <source>Adding files to the Mercurial repository</source>
       <translation>A adicionar ficheiros ao repositório Mercurial</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="174" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="182" />
       <source>Pulling large files</source>
       <translation>A puxar ficheiros grandes</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="196" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="205" />
       <source>Verifying the integrity of large files</source>
       <translation>A verificar integridade dos ficheiros grandes</translation>
     </message>
@@ -50699,13 +50714,13 @@
     <name>Lexers</name>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="412" />
-      <location filename="../Preferences/__init__.py" line="596" />
+      <location filename="../Preferences/__init__.py" line="597" />
       <source>Python Files (*.py *.py3)</source>
       <translation type="unfinished">Ficheiros Python (*.py *.py3)</translation>
     </message>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="505" />
-      <location filename="../Preferences/__init__.py" line="599" />
+      <location filename="../Preferences/__init__.py" line="600" />
       <source>Python3 Files (*.py)</source>
       <translation>Ficheiros Python3 (*.py)</translation>
     </message>
@@ -52535,18 +52550,18 @@
   <context>
     <name>MicroPythonDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="356" />
+      <location filename="../MicroPython/Devices/__init__.py" line="369" />
       <source>Generic MicroPython Board</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="403" />
+      <location filename="../MicroPython/Devices/__init__.py" line="416" />
       <source>RP2040/RP2350 based</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="566" />
-      <location filename="../MicroPython/Devices/__init__.py" line="555" />
+      <location filename="../MicroPython/Devices/__init__.py" line="579" />
+      <location filename="../MicroPython/Devices/__init__.py" line="568" />
       <source>Unknown Device</source>
       <translation type="unfinished" />
     </message>
@@ -53943,343 +53958,343 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="737" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="724" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="740" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="725" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="728" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="735" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1193" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1185" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="735" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1196" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1188" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="738" />
       <source>unknown</source>
       <translation type="unfinished">desconhecido</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="796" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="787" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="799" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
       <source>Run Script</source>
       <translation type="unfinished">Executar Script</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="779" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
       <source>There is no editor open. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="788" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="797" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="800" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="836" />
       <source>Start Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="834" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="837" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="849" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="852" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="866" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="869" />
       <source>Unsaved Chart Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="867" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="870" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="915" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="918" />
       <source>Start File Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="916" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="919" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="939" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1012" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1015" />
       <source>Downloads</source>
       <translation type="unfinished">Descargas</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1059" />
-      <source>Show Version</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1062" />
-      <source>Show Implementation</source>
+      <source>Show Version</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
+      <source>Show Implementation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Board Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1268" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1271" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1073" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1073" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Show Device Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
-      <source>Show Local Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <source>Show Local Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1082" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1085" />
       <source>Show Builtin Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1094" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1086" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1689" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1097" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1089" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1723" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1720" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1090" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1725" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1093" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1497" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1501" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1103" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1523" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1514" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1104" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1527" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1518" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1107" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1125" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1128" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1132" />
-      <source>Show Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1135" />
+      <source>Show Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Convert To UF2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1136" />
-      <source>Flash UF2 Device</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1139" />
-      <source>Manage Unknown Devices</source>
+      <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
-      <source>Ignored Serial Devices</source>
+      <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
-      <source>Configure</source>
-      <translation type="unfinished">Configurar</translation>
+      <source>Ignored Serial Devices</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
+      <source>Configure</source>
+      <translation type="unfinished">Configurar</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Quit</source>
       <translation type="unfinished">Sair</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1157" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1160" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1168" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1164" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1171" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1167" />
       <source>Device Version Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1172" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1202" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1215" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1206" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1218" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1209" />
       <source>Device Implementation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1207" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1210" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1216" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1219" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1272" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1299" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1302" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1315" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1318" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1327" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
       <source>Local Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1369" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1352" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1372" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1355" />
       <source>Date and Time</source>
       <translation type="unfinished">Data e Hora</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1353" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1356" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1370" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1373" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1394" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1397" />
       <source>Error handling device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1395" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1398" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1437" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1440" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1463" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1466" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished">Ficheiros Python (*.py);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1473" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1476" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1483" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1486" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1515" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1519" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1607" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1611" />
       <source>Add Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1608" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1657" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1709" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1714" />
       <source>Package '{0}' was installed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1724" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1729" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -56161,237 +56176,237 @@
   <context>
     <name>MultiProject</name>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="338" />
-      <location filename="../MultiProject/MultiProject.py" line="324" />
+      <location filename="../MultiProject/MultiProject.py" line="341" />
+      <location filename="../MultiProject/MultiProject.py" line="327" />
       <source>Copy Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="325" />
+      <location filename="../MultiProject/MultiProject.py" line="328" />
       <source>Enter directory for the new project (must not exist already):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="339" />
+      <location filename="../MultiProject/MultiProject.py" line="342" />
       <source>&lt;p&gt;The source project &lt;b&gt;{0}&lt;/b&gt; could not be copied to its destination &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="349" />
+      <location filename="../MultiProject/MultiProject.py" line="352" />
       <source>{0} - Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="499" />
+      <location filename="../MultiProject/MultiProject.py" line="502" />
       <source>Open Multi Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="556" />
-      <location filename="../MultiProject/MultiProject.py" line="546" />
-      <location filename="../MultiProject/MultiProject.py" line="501" />
+      <location filename="../MultiProject/MultiProject.py" line="559" />
+      <location filename="../MultiProject/MultiProject.py" line="549" />
+      <location filename="../MultiProject/MultiProject.py" line="504" />
       <source>Multi Project Files (*.emj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="554" />
+      <location filename="../MultiProject/MultiProject.py" line="557" />
       <source>Save Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="570" />
+      <location filename="../MultiProject/MultiProject.py" line="573" />
       <source>Save File</source>
       <translation>Gravar Ficheiro</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="571" />
+      <location filename="../MultiProject/MultiProject.py" line="574" />
       <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="../MultiProject/MultiProject.py" line="598" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
       <source>Close Multiproject</source>
       <translation>Fechar Multiprojeto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="599" />
+      <location filename="../MultiProject/MultiProject.py" line="602" />
       <source>The current multiproject has unsaved changes.</source>
       <translation>O multiprojeto atual tem alterações por gravar.</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="653" />
+      <location filename="../MultiProject/MultiProject.py" line="656" />
       <source>New multiproject</source>
       <translation>Multiprojeto novo</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="655" />
+      <location filename="../MultiProject/MultiProject.py" line="658" />
       <source>&amp;New...</source>
       <translation>&amp;Novo...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="661" />
+      <location filename="../MultiProject/MultiProject.py" line="664" />
       <source>Generate a new multiproject</source>
       <translation>Criar um multiprojeto novo</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="663" />
+      <location filename="../MultiProject/MultiProject.py" line="666" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Novo...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para introduzir a informação para um multiprojeto novo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="673" />
+      <location filename="../MultiProject/MultiProject.py" line="676" />
       <source>Open multiproject</source>
       <translation>Abrir multiprojeto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="675" />
+      <location filename="../MultiProject/MultiProject.py" line="678" />
       <source>&amp;Open...</source>
       <translation>&amp;Abrir...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="681" />
+      <location filename="../MultiProject/MultiProject.py" line="684" />
       <source>Open an existing multiproject</source>
       <translation>Abrir um multiprojeto existente</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="683" />
+      <location filename="../MultiProject/MultiProject.py" line="686" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Abrir...&lt;/b&gt;&lt;p&gt;Isto abre um multiprojeto existente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="689" />
+      <location filename="../MultiProject/MultiProject.py" line="692" />
       <source>Close multiproject</source>
       <translation>Fechar multiprojeto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="691" />
+      <location filename="../MultiProject/MultiProject.py" line="694" />
       <source>&amp;Close</source>
       <translation>Fe&amp;char</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="697" />
+      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>Close the current multiproject</source>
       <translation>Fechar o multiprojeto atual</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="699" />
+      <location filename="../MultiProject/MultiProject.py" line="702" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Fechar&lt;/b&gt;&lt;p&gt;Fecha o multiprojeto atual&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="705" />
+      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>Save multiproject</source>
       <translation>Gravar multiprojeto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="707" />
+      <location filename="../MultiProject/MultiProject.py" line="710" />
       <source>&amp;Save</source>
       <translation>&amp;Gravar</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="713" />
+      <location filename="../MultiProject/MultiProject.py" line="716" />
       <source>Save the current multiproject</source>
       <translation>Gravar o multiprojeto actual</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="715" />
+      <location filename="../MultiProject/MultiProject.py" line="718" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gravar&lt;/b&gt;&lt;p&gt;Guarda o multiprojeto atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="721" />
+      <location filename="../MultiProject/MultiProject.py" line="724" />
       <source>Save multiproject as</source>
       <translation>Gravar multiprojeto como</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="723" />
+      <location filename="../MultiProject/MultiProject.py" line="726" />
       <source>Save &amp;as...</source>
       <translation>Gr&amp;avar como...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="730" />
-      <source>Save the current multiproject to a new file</source>
-      <translation>Gravar o multiprojeto atual num ficheiro novo</translation>
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="733" />
+      <source>Save the current multiproject to a new file</source>
+      <translation>Gravar o multiprojeto atual num ficheiro novo</translation>
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gravar como&lt;/b&gt;&lt;p&gt;Guarda o multiprojeto atual para um ficheiro novo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="742" />
+      <location filename="../MultiProject/MultiProject.py" line="745" />
       <source>Add project to multiproject</source>
       <translation>Adicionar projeto ao multiprojeto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
+      <location filename="../MultiProject/MultiProject.py" line="747" />
       <source>Add &amp;project...</source>
       <translation>Adicionar &amp;projeto...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="751" />
-      <source>Add a project to the current multiproject</source>
-      <translation>Adicionar um projeto ao multiprojeto atual</translation>
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="754" />
+      <source>Add a project to the current multiproject</source>
+      <translation>Adicionar um projeto ao multiprojeto atual</translation>
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="757" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Adicionar projeto...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para adicionar um projeto ao multiprojeto atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <location filename="../MultiProject/MultiProject.py" line="767" />
       <source>Multiproject properties</source>
       <translation>Propriedades do multiprojeto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="766" />
+      <location filename="../MultiProject/MultiProject.py" line="769" />
       <source>&amp;Properties...</source>
       <translation>&amp;Propriedades...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="772" />
+      <location filename="../MultiProject/MultiProject.py" line="775" />
       <source>Show the multiproject properties</source>
       <translation>Mostrar as propriedades do multiprojeto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="774" />
+      <location filename="../MultiProject/MultiProject.py" line="777" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Propriedades...&lt;/b&gt;&lt;p&gt;Mostra uma caixa de diálogo para editar as propriedades do multiprojeto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="786" />
-      <location filename="../MultiProject/MultiProject.py" line="784" />
+      <location filename="../MultiProject/MultiProject.py" line="789" />
+      <location filename="../MultiProject/MultiProject.py" line="787" />
       <source>Clear Out</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="793" />
-      <source>Remove all projects marked as removed</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="796" />
+      <source>Remove all projects marked as removed</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="799" />
       <source>&lt;b&gt;Clear Out...&lt;/b&gt;&lt;p&gt;This removes all projects marked as removed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="818" />
+      <location filename="../MultiProject/MultiProject.py" line="821" />
       <source>&amp;Multiproject</source>
       <translation>&amp;Multiprojeto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
+      <location filename="../MultiProject/MultiProject.py" line="822" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation>Abrir Multiprojetos &amp;Recentes</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="862" />
-      <location filename="../MultiProject/MultiProject.py" line="860" />
+      <location filename="../MultiProject/MultiProject.py" line="865" />
+      <location filename="../MultiProject/MultiProject.py" line="863" />
       <source>Multiproject</source>
       <translation>Multiprojeto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="918" />
+      <location filename="../MultiProject/MultiProject.py" line="921" />
       <source>&amp;Clear</source>
       <translation>&amp;Limpar</translation>
     </message>
@@ -59429,108 +59444,108 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="562" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="583" />
+      <location filename="../PipInterface/Pip.py" line="585" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="618" />
-      <location filename="../PipInterface/Pip.py" line="608" />
+      <location filename="../PipInterface/Pip.py" line="620" />
+      <location filename="../PipInterface/Pip.py" line="610" />
       <source>Install 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="739" />
-      <location filename="../PipInterface/Pip.py" line="609" />
+      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="611" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="619" />
+      <location filename="../PipInterface/Pip.py" line="621" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="638" />
+      <location filename="../PipInterface/Pip.py" line="641" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="766" />
-      <location filename="../PipInterface/Pip.py" line="695" />
-      <location filename="../PipInterface/Pip.py" line="667" />
-      <location filename="../PipInterface/Pip.py" line="658" />
+      <location filename="../PipInterface/Pip.py" line="775" />
+      <location filename="../PipInterface/Pip.py" line="701" />
+      <location filename="../PipInterface/Pip.py" line="671" />
+      <location filename="../PipInterface/Pip.py" line="662" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="767" />
-      <location filename="../PipInterface/Pip.py" line="696" />
-      <location filename="../PipInterface/Pip.py" line="659" />
+      <location filename="../PipInterface/Pip.py" line="776" />
+      <location filename="../PipInterface/Pip.py" line="702" />
+      <location filename="../PipInterface/Pip.py" line="663" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="712" />
+      <location filename="../PipInterface/Pip.py" line="719" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="738" />
+      <location filename="../PipInterface/Pip.py" line="758" />
+      <location filename="../PipInterface/Pip.py" line="747" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="750" />
+      <location filename="../PipInterface/Pip.py" line="759" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
+      <location filename="../PipInterface/Pip.py" line="786" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1185" />
+      <location filename="../PipInterface/Pip.py" line="1195" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1211" />
-      <location filename="../PipInterface/Pip.py" line="1202" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
+      <location filename="../PipInterface/Pip.py" line="1212" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1203" />
+      <location filename="../PipInterface/Pip.py" line="1213" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1235" />
-      <location filename="../PipInterface/Pip.py" line="1228" />
+      <location filename="../PipInterface/Pip.py" line="1245" />
+      <location filename="../PipInterface/Pip.py" line="1238" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1239" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1260" />
-      <location filename="../PipInterface/Pip.py" line="1252" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
+      <location filename="../PipInterface/Pip.py" line="1262" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1263" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -62117,18 +62132,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1904" />
+      <location filename="../Preferences/__init__.py" line="1905" />
       <source>Export Preferences</source>
       <translation>Exportar Preferências</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1933" />
-      <location filename="../Preferences/__init__.py" line="1906" />
+      <location filename="../Preferences/__init__.py" line="1934" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>Ficheiro de Propriedades (*.ini);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1931" />
+      <location filename="../Preferences/__init__.py" line="1932" />
       <source>Import Preferences</source>
       <translation>Importar Preferências</translation>
     </message>
@@ -62149,7 +62164,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="509" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="520" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -62776,430 +62791,430 @@
   <context>
     <name>Project</name>
     <message>
-      <location filename="../Project/Project.py" line="187" />
+      <location filename="../Project/Project.py" line="188" />
       <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source>
       <translation>Ficheiros Python3 (*.py *.py3);;Ficheiros GUI Python3 (*.pyw *.pyw3);;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="250" />
-      <source>Add File Category</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="251" />
+      <source>Add File Category</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="252" />
       <source>&lt;p&gt;The file category &lt;b&gt;{0}&lt;/b&gt; has already been added. This attempt will be ignored.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="336" />
-      <source>PyQt5 GUI</source>
-      <translation>GUI de PyQt5</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="337" />
-      <source>PyQt5 Console</source>
-      <translation>Consola de PyQt5</translation>
+      <source>PyQt5 GUI</source>
+      <translation>GUI de PyQt5</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="338" />
-      <source>PyQt6 GUI</source>
-      <translation type="unfinished">GUI de PyQt4 {6 ?}</translation>
+      <source>PyQt5 Console</source>
+      <translation>Consola de PyQt5</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="339" />
-      <source>PyQt6 Console</source>
-      <translation type="unfinished">Consola de PyQt4 {6 ?}</translation>
+      <source>PyQt6 GUI</source>
+      <translation type="unfinished">GUI de PyQt4 {6 ?}</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="340" />
-      <source>Eric7 Plugin</source>
-      <translation type="unfinished" />
+      <source>PyQt6 Console</source>
+      <translation type="unfinished">Consola de PyQt4 {6 ?}</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="341" />
-      <source>Console</source>
+      <source>Eric7 Plugin</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="342" />
+      <source>Console</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="343" />
       <source>Other</source>
       <translation>Outro</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="361" />
-      <source>PySide2 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="362" />
+      <source>PySide2 GUI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="363" />
       <source>PySide2 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="366" />
-      <source>PySide6 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="367" />
+      <source>PySide6 GUI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="465" />
-      <location filename="../Project/Project.py" line="453" />
-      <location filename="../Project/Project.py" line="442" />
-      <source>Registering Project Type</source>
-      <translation>A registar Tipo de Projeto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="443" />
-      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="454" />
-      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;O tipo de Projeto &lt;b&gt;{0}&lt;/b&gt; já está registado com a Linguagem de Programação &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="466" />
+      <location filename="../Project/Project.py" line="454" />
+      <location filename="../Project/Project.py" line="443" />
+      <source>Registering Project Type</source>
+      <translation>A registar Tipo de Projeto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="444" />
+      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="455" />
+      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;O tipo de Projeto &lt;b&gt;{0}&lt;/b&gt; já está registado com a Linguagem de Programação &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="467" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation>&lt;p&gt;O tipo de Projeto &lt;b&gt;{0}&lt;/b&gt; já está registado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="771" />
+      <location filename="../Project/Project.py" line="772" />
       <source>All Files (*)</source>
       <translation type="unfinished">Ficheiros Todos (*)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1332" />
+      <location filename="../Project/Project.py" line="1333" />
       <source>Read Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1578" />
-      <location filename="../Project/Project.py" line="1552" />
-      <location filename="../Project/Project.py" line="1516" />
-      <location filename="../Project/Project.py" line="1434" />
-      <location filename="../Project/Project.py" line="1395" />
-      <location filename="../Project/Project.py" line="1370" />
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1579" />
+      <location filename="../Project/Project.py" line="1553" />
+      <location filename="../Project/Project.py" line="1517" />
+      <location filename="../Project/Project.py" line="1435" />
+      <location filename="../Project/Project.py" line="1396" />
+      <location filename="../Project/Project.py" line="1371" />
+      <location filename="../Project/Project.py" line="1334" />
       <source>Please save the project first.</source>
       <translation>Guarde primeiro o projeto por favor.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1369" />
+      <location filename="../Project/Project.py" line="1370" />
       <source>Save Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1411" />
-      <location filename="../Project/Project.py" line="1394" />
+      <location filename="../Project/Project.py" line="1412" />
+      <location filename="../Project/Project.py" line="1395" />
       <source>Delete Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1401" />
+      <location filename="../Project/Project.py" line="1402" />
       <source>Delete Remote Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1420" />
+      <location filename="../Project/Project.py" line="1421" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1433" />
+      <location filename="../Project/Project.py" line="1434" />
       <source>Read Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1515" />
+      <location filename="../Project/Project.py" line="1516" />
       <source>Read Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1551" />
+      <location filename="../Project/Project.py" line="1552" />
       <source>Save Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1594" />
-      <location filename="../Project/Project.py" line="1577" />
+      <location filename="../Project/Project.py" line="1595" />
+      <location filename="../Project/Project.py" line="1578" />
       <source>Delete Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1584" />
+      <location filename="../Project/Project.py" line="1585" />
       <source>Delete Remote Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1603" />
+      <location filename="../Project/Project.py" line="1604" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1774" />
+      <location filename="../Project/Project.py" line="1777" />
       <source>Add Language</source>
       <translation>Adicionar Idioma</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1775" />
+      <location filename="../Project/Project.py" line="1778" />
       <source>You have to specify a translation pattern first.</source>
       <translation>Primeiro tem que especificar um padrão de tradução.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1916" />
+      <location filename="../Project/Project.py" line="1919" />
       <source>Delete Translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1943" />
-      <location filename="../Project/Project.py" line="1917" />
+      <location filename="../Project/Project.py" line="1946" />
+      <location filename="../Project/Project.py" line="1920" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1942" />
+      <location filename="../Project/Project.py" line="1945" />
       <source>Delete translation</source>
       <translation>Apagar a Tradução</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2093" />
-      <location filename="../Project/Project.py" line="2076" />
+      <location filename="../Project/Project.py" line="2098" />
+      <location filename="../Project/Project.py" line="2081" />
       <source>Add File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2195" />
-      <location filename="../Project/Project.py" line="2077" />
+      <location filename="../Project/Project.py" line="2200" />
+      <location filename="../Project/Project.py" line="2082" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. &lt;/p&gt;&lt;p&gt;Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2094" />
+      <location filename="../Project/Project.py" line="2099" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2106" />
+      <location filename="../Project/Project.py" line="2111" />
       <source>Add file</source>
       <translation>Adicionar ficheiro</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2289" />
-      <location filename="../Project/Project.py" line="2107" />
+      <location filename="../Project/Project.py" line="2296" />
+      <location filename="../Project/Project.py" line="2112" />
       <source>The target directory must not be empty.</source>
       <translation>O diretório de destino não pode estar vazio.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2194" />
-      <location filename="../Project/Project.py" line="2167" />
-      <location filename="../Project/Project.py" line="2147" />
+      <location filename="../Project/Project.py" line="2199" />
+      <location filename="../Project/Project.py" line="2172" />
+      <location filename="../Project/Project.py" line="2152" />
       <source>Add Directory</source>
       <translation type="unfinished">Adicionar Diretório</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2148" />
+      <location filename="../Project/Project.py" line="2153" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2168" />
+      <location filename="../Project/Project.py" line="2173" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2300" />
-      <location filename="../Project/Project.py" line="2288" />
+      <location filename="../Project/Project.py" line="2307" />
+      <location filename="../Project/Project.py" line="2295" />
       <source>Add directory</source>
       <translation>Adicionar diretório</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2301" />
+      <location filename="../Project/Project.py" line="2308" />
       <source>The source directory must not be empty.</source>
       <translation>O diretório fonte não pode estar vazio.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2415" />
-      <location filename="../Project/Project.py" line="2397" />
+      <location filename="../Project/Project.py" line="2422" />
+      <location filename="../Project/Project.py" line="2404" />
+      <location filename="../Project/Project.py" line="2388" />
       <location filename="../Project/Project.py" line="2381" />
-      <location filename="../Project/Project.py" line="2374" />
       <source>Rename File</source>
       <translation>Renomear Ficheiro</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8055" />
-      <location filename="../Project/Project.py" line="3898" />
-      <location filename="../Project/Project.py" line="2398" />
+      <location filename="../Project/Project.py" line="8089" />
+      <location filename="../Project/Project.py" line="3909" />
+      <location filename="../Project/Project.py" line="2405" />
       <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="../Project/Project.py" line="2416" />
+      <location filename="../Project/Project.py" line="2423" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2683" />
+      <location filename="../Project/Project.py" line="2690" />
       <source>Delete File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2684" />
+      <location filename="../Project/Project.py" line="2691" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2712" />
+      <location filename="../Project/Project.py" line="2719" />
       <source>Delete Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2713" />
+      <location filename="../Project/Project.py" line="2720" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2846" />
+      <location filename="../Project/Project.py" line="2853" />
       <source>Create project directory</source>
       <translation>Criar diretório de projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2847" />
+      <location filename="../Project/Project.py" line="2854" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
       <translation>&lt;p&gt;O diretorio do projeto &lt;b&gt;{0}&lt;/b&gt; não se pôde criar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3671" />
-      <location filename="../Project/Project.py" line="2947" />
+      <location filename="../Project/Project.py" line="3682" />
+      <location filename="../Project/Project.py" line="2954" />
       <source>Create project management directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3672" />
-      <location filename="../Project/Project.py" line="2948" />
+      <location filename="../Project/Project.py" line="3683" />
+      <location filename="../Project/Project.py" line="2955" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2988" />
+      <location filename="../Project/Project.py" line="2995" />
       <source>Create main script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2989" />
+      <location filename="../Project/Project.py" line="2996" />
       <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3454" />
-      <location filename="../Project/Project.py" line="3013" />
+      <location filename="../Project/Project.py" line="3463" />
+      <location filename="../Project/Project.py" line="3020" />
       <source>Create Makefile</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3455" />
-      <location filename="../Project/Project.py" line="3014" />
+      <location filename="../Project/Project.py" line="3464" />
+      <location filename="../Project/Project.py" line="3021" />
       <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3701" />
-      <location filename="../Project/Project.py" line="3164" />
-      <location filename="../Project/Project.py" line="3135" />
-      <location filename="../Project/Project.py" line="3103" />
-      <location filename="../Project/Project.py" line="3087" />
-      <location filename="../Project/Project.py" line="3062" />
-      <location filename="../Project/Project.py" line="3024" />
+      <location filename="../Project/Project.py" line="3712" />
+      <location filename="../Project/Project.py" line="3173" />
+      <location filename="../Project/Project.py" line="3144" />
+      <location filename="../Project/Project.py" line="3112" />
+      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="3069" />
+      <location filename="../Project/Project.py" line="3031" />
       <source>New Project</source>
       <translation>Projeto Novo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3025" />
+      <location filename="../Project/Project.py" line="3032" />
       <source>Add existing files to the project?</source>
       <translation>Adicionar os ficheiros existentes ao projeto?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3702" />
-      <location filename="../Project/Project.py" line="3063" />
+      <location filename="../Project/Project.py" line="3713" />
+      <location filename="../Project/Project.py" line="3070" />
       <source>Select Version Control System</source>
       <translation>Selecionar o Sistema de Control de Versão</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3165" />
-      <location filename="../Project/Project.py" line="3088" />
+      <location filename="../Project/Project.py" line="3174" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Would you like to edit the VCS command options?</source>
       <translation>Quer editar as opções de commandos VCS?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3104" />
+      <location filename="../Project/Project.py" line="3113" />
       <source>Shall the project file be added to the repository?</source>
       <translation>Deve adicionar-se o ficheiro de projeto ao repositório?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3141" />
-      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3150" />
+      <location filename="../Project/Project.py" line="3139" />
       <source>None</source>
       <translation>Nenhum</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3145" />
       <source>Select version control system for the project</source>
       <translation>Selecionar o sistema de control de versão para o projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3347" />
+      <location filename="../Project/Project.py" line="3356" />
       <source>Translation Pattern</source>
       <translation>Padrão de Tradução</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3348" />
+      <location filename="../Project/Project.py" line="3357" />
       <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
       <translation>Introduzir o padrão para os ficheiros de tradução (usar '%language%' em lugar do código de idioma):</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3650" />
+      <location filename="../Project/Project.py" line="3661" />
       <source>Open Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8041" />
-      <location filename="../Project/Project.py" line="8035" />
-      <location filename="../Project/Project.py" line="8025" />
-      <location filename="../Project/Project.py" line="3883" />
-      <location filename="../Project/Project.py" line="3873" />
-      <location filename="../Project/Project.py" line="3652" />
+      <location filename="../Project/Project.py" line="8075" />
+      <location filename="../Project/Project.py" line="8069" />
+      <location filename="../Project/Project.py" line="8059" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3884" />
+      <location filename="../Project/Project.py" line="3663" />
       <source>Project Files (*.epj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3897" />
-      <location filename="../Project/Project.py" line="3881" />
+      <location filename="../Project/Project.py" line="3908" />
+      <location filename="../Project/Project.py" line="3892" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3936" />
+      <location filename="../Project/Project.py" line="3947" />
       <source>Close Project</source>
       <translation>Fechar Projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3937" />
+      <location filename="../Project/Project.py" line="3948" />
       <source>The current project has unsaved changes.</source>
       <translation>O projeto atual tem alterações por gravar.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4137" />
-      <location filename="../Project/Project.py" line="4101" />
+      <location filename="../Project/Project.py" line="4148" />
+      <location filename="../Project/Project.py" line="4112" />
       <source>Syntax Errors Detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4138" />
-      <location filename="../Project/Project.py" line="4102" />
+      <location filename="../Project/Project.py" line="4149" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>O projeto tem um ficheiro com erros de síntaxe.</numerusform>
@@ -63207,1268 +63222,1268 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4796" />
+      <location filename="../Project/Project.py" line="4807" />
       <source>New project</source>
       <translation>Projeto novo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4798" />
+      <location filename="../Project/Project.py" line="4809" />
       <source>&amp;New...</source>
       <translation>&amp;Novo...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4804" />
+      <location filename="../Project/Project.py" line="4815" />
       <source>Generate a new project</source>
       <translation>Criar um projeto novo</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4806" />
+      <location filename="../Project/Project.py" line="4817" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Novo...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para introduzir a informação para um projeto novo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4816" />
+      <location filename="../Project/Project.py" line="4827" />
       <source>Open project</source>
       <translation>Abrir projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4818" />
+      <location filename="../Project/Project.py" line="4829" />
       <source>&amp;Open...</source>
       <translation>&amp;Abrir...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4824" />
+      <location filename="../Project/Project.py" line="4835" />
       <source>Open an existing project</source>
       <translation>Abrir um projeto existente</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4826" />
+      <location filename="../Project/Project.py" line="4837" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Abrir...&lt;/b&gt;&lt;p&gt;Isto abre um projeto existente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4832" />
+      <location filename="../Project/Project.py" line="4843" />
       <source>Open remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4834" />
+      <location filename="../Project/Project.py" line="4845" />
       <source>Open (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4840" />
-      <source>Open an existing remote project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4842" />
-      <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4851" />
-      <source>Reload project</source>
+      <source>Open an existing remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4853" />
+      <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4862" />
+      <source>Reload project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4864" />
       <source>Re&amp;load</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4859" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>Reload the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4861" />
+      <location filename="../Project/Project.py" line="4872" />
       <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4867" />
+      <location filename="../Project/Project.py" line="4878" />
       <source>Close project</source>
       <translation>Fechar projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4869" />
+      <location filename="../Project/Project.py" line="4880" />
       <source>&amp;Close</source>
       <translation>&amp;Fechar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4875" />
+      <location filename="../Project/Project.py" line="4886" />
       <source>Close the current project</source>
       <translation>Fechar o projeto atual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4877" />
+      <location filename="../Project/Project.py" line="4888" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Fechar&lt;/b&gt;&lt;p&gt;Fecha o projeto atual&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4883" />
+      <location filename="../Project/Project.py" line="4894" />
       <source>Save project</source>
       <translation>Gravar projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5180" />
-      <location filename="../Project/Project.py" line="4885" />
+      <location filename="../Project/Project.py" line="5191" />
+      <location filename="../Project/Project.py" line="4896" />
       <source>&amp;Save</source>
       <translation>&amp;Gravar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4891" />
+      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation>Gravar o projeto actual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4893" />
+      <location filename="../Project/Project.py" line="4904" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gravar&lt;/b&gt;&lt;p&gt;Guarda o projeto atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4899" />
+      <location filename="../Project/Project.py" line="4910" />
       <source>Save project as</source>
       <translation>Gravar projeto como</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4901" />
+      <location filename="../Project/Project.py" line="4912" />
       <source>Save &amp;as...</source>
       <translation>Gravar &amp;como...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4907" />
-      <source>Save the current project to a new file</source>
-      <translation>Gravar o projeto atual para um ficheiro novo</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4909" />
-      <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Gravar como&lt;/b&gt;&lt;p&gt;Guarda o projeto atual para um ficheiro novo.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4918" />
-      <source>Save project as (Remote)</source>
-      <translation type="unfinished" />
+      <source>Save the current project to a new file</source>
+      <translation>Gravar o projeto atual para um ficheiro novo</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4920" />
+      <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Gravar como&lt;/b&gt;&lt;p&gt;Guarda o projeto atual para um ficheiro novo.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4929" />
+      <source>Save project as (Remote)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4931" />
       <source>Save as (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4927" />
+      <location filename="../Project/Project.py" line="4938" />
       <source>Save the current project to a new remote file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4930" />
+      <location filename="../Project/Project.py" line="4941" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4946" />
+      <location filename="../Project/Project.py" line="4957" />
       <source>Add files to project</source>
       <translation>Adicionar ficheiros ao projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4948" />
+      <location filename="../Project/Project.py" line="4959" />
       <source>Add &amp;files...</source>
       <translation>Adicionar &amp;ficheiros...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4954" />
+      <location filename="../Project/Project.py" line="4965" />
       <source>Add files to the current project</source>
       <translation>Adicionar ficheiros ao projeto atual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4956" />
-      <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Adicionar ficheiros...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para adicionar ficheiros ao projeto atual. O lugar para adicionar determina-se pela extensão de ficheiro.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4967" />
+      <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Adicionar ficheiros...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para adicionar ficheiros ao projeto atual. O lugar para adicionar determina-se pela extensão de ficheiro.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4978" />
       <source>Add directory to project</source>
       <translation>Adicionar diretório ao projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4969" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Add directory...</source>
       <translation>Adicionar diretório...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4976" />
+      <location filename="../Project/Project.py" line="4987" />
       <source>Add a directory to the current project</source>
       <translation>Adicionar um diretório ao projeto atual</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4979" />
+      <location filename="../Project/Project.py" line="4990" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Adicionar diretório&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para adicionar um diretório ao projeto atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4989" />
+      <location filename="../Project/Project.py" line="5000" />
       <source>Add translation to project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4991" />
+      <location filename="../Project/Project.py" line="5002" />
       <source>Add &amp;translation...</source>
       <translation>Adicionar &amp;tradução...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4998" />
+      <location filename="../Project/Project.py" line="5009" />
       <source>Add a translation to the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5001" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5011" />
-      <source>Search new files</source>
-      <translation>Procurar ficheiros novos</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5012" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5022" />
+      <source>Search new files</source>
+      <translation>Procurar ficheiros novos</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation>&amp;Procurar ficheiros novos...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5018" />
+      <location filename="../Project/Project.py" line="5029" />
       <source>Search new files in the project directory.</source>
       <translation>Procurar ficheiros novos no diretório do projeto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5020" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5030" />
-      <source>Search Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5031" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5041" />
+      <source>Search Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5042" />
       <source>Search Project File...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5032" />
+      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5037" />
-      <source>Search for a file in the project list of files.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5039" />
-      <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5048" />
-      <source>Project properties</source>
-      <translation>Propriedades do projeto</translation>
+      <source>Search for a file in the project list of files.</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5050" />
+      <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5059" />
+      <source>Project properties</source>
+      <translation>Propriedades do projeto</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5061" />
       <source>&amp;Properties...</source>
       <translation>&amp;Propriedades...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5056" />
-      <source>Show the project properties</source>
-      <translation>Mostrar as propriedades do projeto</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5058" />
-      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5067" />
-      <source>User project properties</source>
-      <translation>Propriedades de projecto do usuário</translation>
+      <source>Show the project properties</source>
+      <translation>Mostrar as propriedades do projeto</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5069" />
+      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5078" />
+      <source>User project properties</source>
+      <translation>Propriedades de projecto do usuário</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5080" />
       <source>&amp;User Properties...</source>
       <translation>Propriedades de &amp;Usuário...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5076" />
+      <location filename="../Project/Project.py" line="5087" />
       <source>Show the user specific project properties</source>
       <translation>Mostrar as propriedades do projeto específicas do usuário</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5079" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5089" />
-      <source>Filetype Associations</source>
-      <translation>Associações de Tipos de Ficheiros</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5090" />
-      <source>Filetype Associations...</source>
-      <translation>Associações de Tipos de Ficheiros...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5097" />
-      <source>Show the project file type associations</source>
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5100" />
+      <source>Filetype Associations</source>
+      <translation>Associações de Tipos de Ficheiros</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5101" />
+      <source>Filetype Associations...</source>
+      <translation>Associações de Tipos de Ficheiros...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5108" />
+      <source>Show the project file type associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5111" />
       <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5113" />
-      <source>Lexer Associations</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5114" />
-      <source>Lexer Associations...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5121" />
-      <source>Show the project lexer associations (overriding defaults)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5124" />
+      <source>Lexer Associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5125" />
+      <source>Lexer Associations...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5132" />
+      <source>Show the project lexer associations (overriding defaults)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5135" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5142" />
+      <location filename="../Project/Project.py" line="5153" />
       <source>Debugger Properties</source>
       <translation>Propriedades do Depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5143" />
+      <location filename="../Project/Project.py" line="5154" />
       <source>Debugger &amp;Properties...</source>
       <translation>&amp;Propriedades do Depurador...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5149" />
+      <location filename="../Project/Project.py" line="5160" />
       <source>Show the debugger properties</source>
       <translation>Mostrar as propriedades do depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5161" />
-      <source>Load</source>
-      <translation>Carregar</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5162" />
+      <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Load</source>
+      <translation>Carregar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
       <source>&amp;Load</source>
       <translation>&amp;Carregar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5168" />
-      <source>Load the debugger properties</source>
-      <translation>Carregar propriedades do depurador</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5170" />
-      <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5179" />
+      <source>Load the debugger properties</source>
+      <translation>Carregar propriedades do depurador</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5181" />
+      <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5190" />
       <source>Save</source>
       <translation>Gravar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5186" />
-      <source>Save the debugger properties</source>
-      <translation>Gravar propriedades do depurador</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5188" />
-      <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5197" />
+      <source>Save the debugger properties</source>
+      <translation>Gravar propriedades do depurador</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5199" />
+      <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5208" />
       <source>Delete</source>
       <translation>Apagar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5198" />
+      <location filename="../Project/Project.py" line="5209" />
       <source>&amp;Delete</source>
       <translation>&amp;Apagar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5204" />
+      <location filename="../Project/Project.py" line="5215" />
       <source>Delete the debugger properties</source>
       <translation>Apagar as propriedades do depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5206" />
-      <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5216" />
-      <source>Reset</source>
-      <translation>Reinicializar</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5217" />
+      <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5227" />
+      <source>Reset</source>
+      <translation>Reinicializar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5228" />
       <source>&amp;Reset</source>
       <translation>&amp;Reinicializar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5223" />
+      <location filename="../Project/Project.py" line="5234" />
       <source>Reset the debugger properties</source>
       <translation>Reinicializar as propriedades do depurador</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5225" />
+      <location filename="../Project/Project.py" line="5236" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5241" />
-      <location filename="../Project/Project.py" line="5240" />
+      <location filename="../Project/Project.py" line="5252" />
+      <location filename="../Project/Project.py" line="5251" />
       <source>Load session</source>
       <translation>Carregar sessão</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5247" />
+      <location filename="../Project/Project.py" line="5258" />
       <source>Load the projects session file.</source>
       <translation>Carregar o ficheiro de sessão do projeto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5249" />
+      <location filename="../Project/Project.py" line="5260" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5265" />
-      <location filename="../Project/Project.py" line="5264" />
+      <location filename="../Project/Project.py" line="5276" />
+      <location filename="../Project/Project.py" line="5275" />
       <source>Save session</source>
       <translation>Guargar sessão</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5271" />
+      <location filename="../Project/Project.py" line="5282" />
       <source>Save the projects session file.</source>
       <translation>Gravar ficheiro de sessão do projeto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5273" />
+      <location filename="../Project/Project.py" line="5284" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5289" />
-      <location filename="../Project/Project.py" line="5288" />
+      <location filename="../Project/Project.py" line="5300" />
+      <location filename="../Project/Project.py" line="5299" />
       <source>Delete session</source>
       <translation>Apagar sessão</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5295" />
+      <location filename="../Project/Project.py" line="5306" />
       <source>Delete the projects session file.</source>
       <translation>Apagar o ficheiro de sessão do projeto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5297" />
+      <location filename="../Project/Project.py" line="5308" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5312" />
-      <source>Code Metrics</source>
-      <translation type="unfinished">Métricas de Código</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5313" />
-      <source>&amp;Code Metrics...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5320" />
-      <source>Show some code metrics for the project.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5323" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5333" />
-      <source>Python Code Coverage</source>
+      <source>Code Metrics</source>
+      <translation type="unfinished">Métricas de Código</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5324" />
+      <source>&amp;Code Metrics...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5331" />
+      <source>Show some code metrics for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5334" />
-      <source>Code Co&amp;verage...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5341" />
-      <source>Show code coverage information for the project.</source>
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5344" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6778" />
-      <location filename="../Project/Project.py" line="6765" />
-      <location filename="../Project/Project.py" line="5354" />
-      <source>Profile Data</source>
-      <translation type="unfinished">Dados de Perfil</translation>
+      <source>Python Code Coverage</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5345" />
+      <source>Code Co&amp;verage...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5352" />
+      <source>Show code coverage information for the project.</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5355" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6789" />
+      <location filename="../Project/Project.py" line="6776" />
+      <location filename="../Project/Project.py" line="5365" />
+      <source>Profile Data</source>
+      <translation type="unfinished">Dados de Perfil</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5362" />
+      <location filename="../Project/Project.py" line="5373" />
       <source>Show profiling data for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5365" />
+      <location filename="../Project/Project.py" line="5376" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6830" />
-      <location filename="../Project/Project.py" line="5380" />
+      <location filename="../Project/Project.py" line="6841" />
+      <location filename="../Project/Project.py" line="5391" />
       <source>Application Diagram</source>
       <translation>Diagrama da Aplicação</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5381" />
+      <location filename="../Project/Project.py" line="5392" />
       <source>&amp;Application Diagram...</source>
       <translation>Diagrama da &amp;Aplicação...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5388" />
+      <location filename="../Project/Project.py" line="5399" />
       <source>Show a diagram of the project.</source>
       <translation>Mostrar o diagrama do projeto.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="5402" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Diagrama da Aplicação...&lt;/b&gt;&lt;p&gt;Mostra um diagrama do projeto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5400" />
+      <location filename="../Project/Project.py" line="5411" />
       <source>Load Diagram</source>
       <translation>Carregar Diagrama</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5401" />
+      <location filename="../Project/Project.py" line="5412" />
       <source>&amp;Load Diagram...</source>
       <translation>&amp;Carregar Diagrama...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5407" />
+      <location filename="../Project/Project.py" line="5418" />
       <source>Load a diagram from file.</source>
       <translation>Carregar um diagrama desde um ficheiro.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5409" />
+      <location filename="../Project/Project.py" line="5420" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Carregar Diagrama...&lt;/b&gt;&lt;p&gt;Carga um diagrama desde um ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6998" />
-      <location filename="../Project/Project.py" line="6943" />
-      <location filename="../Project/Project.py" line="5424" />
+      <location filename="../Project/Project.py" line="7009" />
+      <location filename="../Project/Project.py" line="6954" />
+      <location filename="../Project/Project.py" line="5435" />
       <source>Create Package List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5426" />
+      <location filename="../Project/Project.py" line="5437" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5433" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5436" />
+      <location filename="../Project/Project.py" line="5447" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7068" />
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="7080" />
+      <location filename="../Project/Project.py" line="5458" />
       <source>Create Plugin Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5449" />
+      <location filename="../Project/Project.py" line="5460" />
       <source>Create Plugin &amp;Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5455" />
+      <location filename="../Project/Project.py" line="5466" />
       <source>Create eric plugin archive files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5457" />
+      <location filename="../Project/Project.py" line="5468" />
       <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5469" />
+      <location filename="../Project/Project.py" line="5480" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5471" />
+      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5478" />
+      <location filename="../Project/Project.py" line="5489" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5481" />
+      <location filename="../Project/Project.py" line="5492" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7510" />
-      <location filename="../Project/Project.py" line="7481" />
-      <location filename="../Project/Project.py" line="7435" />
-      <location filename="../Project/Project.py" line="7387" />
-      <location filename="../Project/Project.py" line="5500" />
+      <location filename="../Project/Project.py" line="7536" />
+      <location filename="../Project/Project.py" line="7507" />
+      <location filename="../Project/Project.py" line="7461" />
+      <location filename="../Project/Project.py" line="7413" />
+      <location filename="../Project/Project.py" line="5511" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5501" />
+      <location filename="../Project/Project.py" line="5512" />
       <source>&amp;Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5507" />
+      <location filename="../Project/Project.py" line="5518" />
       <source>Perform a 'make' run.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5509" />
-      <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7487" />
-      <location filename="../Project/Project.py" line="5519" />
-      <source>Test for Changes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5520" />
+      <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7513" />
+      <location filename="../Project/Project.py" line="5530" />
+      <source>Test for Changes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5531" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5527" />
+      <location filename="../Project/Project.py" line="5538" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="5541" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5548" />
-      <source>Create SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5549" />
-      <source>Create &amp;SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5556" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5559" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <source>Create SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5560" />
+      <source>Create &amp;SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5567" />
+      <source>Create a SBOM file of the project dependencies.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5570" />
-      <source>Clear Byte Code Caches</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5571" />
-      <source>Clear Byte Code &amp;Caches</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5578" />
-      <source>Clear the byte code caches of the project.</source>
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5581" />
+      <source>Clear Byte Code Caches</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5582" />
+      <source>Clear Byte Code &amp;Caches</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5589" />
+      <source>Clear the byte code caches of the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5592" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5597" />
+      <location filename="../Project/Project.py" line="5608" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5598" />
+      <location filename="../Project/Project.py" line="5609" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5604" />
+      <location filename="../Project/Project.py" line="5615" />
       <source>Show some information about 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5606" />
+      <location filename="../Project/Project.py" line="5617" />
       <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5618" />
-      <source>Format Code</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5619" />
-      <source>&amp;Format Code</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5626" />
-      <source>Format the project sources with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5629" />
+      <source>Format Code</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5630" />
+      <source>&amp;Format Code</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5637" />
+      <source>Format the project sources with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5640" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5641" />
+      <location filename="../Project/Project.py" line="5652" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5642" />
+      <location filename="../Project/Project.py" line="5653" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5649" />
+      <location filename="../Project/Project.py" line="5660" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5654" />
+      <location filename="../Project/Project.py" line="5665" />
       <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5667" />
+      <location filename="../Project/Project.py" line="5678" />
       <source>Code Formatting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5668" />
+      <location filename="../Project/Project.py" line="5679" />
       <source>Code Formatting &amp;Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5686" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5681" />
+      <location filename="../Project/Project.py" line="5692" />
       <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5846" />
-      <location filename="../Project/Project.py" line="5796" />
-      <location filename="../Project/Project.py" line="5795" />
-      <location filename="../Project/Project.py" line="5695" />
-      <location filename="../Project/Project.py" line="5694" />
-      <source>Configure</source>
-      <translation type="unfinished">Configurar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5702" />
-      <source>Enter the parameters for formatting the project sources with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5707" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5723" />
-      <source>About isort</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5724" />
-      <source>&amp;isort</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5730" />
-      <source>Show some information about 'isort'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5732" />
-      <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5745" />
-      <location filename="../Project/Project.py" line="5744" />
-      <source>Sort Imports</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5752" />
-      <source>Sort the import statements of the project sources with 'isort'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5755" />
-      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5769" />
-      <location filename="../Project/Project.py" line="5768" />
-      <source>Imports Sorting Diff</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5776" />
-      <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5782" />
-      <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5803" />
-      <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5809" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5825" />
-      <source>Install Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5826" />
-      <source>&amp;Install Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5833" />
-      <source>Install the project into the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5836" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5847" />
-      <source>&amp;Configure</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5854" />
-      <source>Configure the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5857" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5867" />
-      <source>Upgrade</source>
-      <translation type="unfinished">Atualizar</translation>
+      <location filename="../Project/Project.py" line="5807" />
+      <location filename="../Project/Project.py" line="5806" />
+      <location filename="../Project/Project.py" line="5706" />
+      <location filename="../Project/Project.py" line="5705" />
+      <source>Configure</source>
+      <translation type="unfinished">Configurar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5713" />
+      <source>Enter the parameters for formatting the project sources with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5718" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5734" />
+      <source>About isort</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5735" />
+      <source>&amp;isort</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5741" />
+      <source>Show some information about 'isort'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5743" />
+      <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5756" />
+      <location filename="../Project/Project.py" line="5755" />
+      <source>Sort Imports</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5763" />
+      <source>Sort the import statements of the project sources with 'isort'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5766" />
+      <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5780" />
+      <location filename="../Project/Project.py" line="5779" />
+      <source>Imports Sorting Diff</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5787" />
+      <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5793" />
+      <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5814" />
+      <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5820" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5836" />
+      <source>Install Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5837" />
+      <source>&amp;Install Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5844" />
+      <source>Install the project into the embedded environment.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5847" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5858" />
+      <source>&amp;Configure</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5865" />
+      <source>Configure the embedded environment.</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5868" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5878" />
+      <source>Upgrade</source>
+      <translation type="unfinished">Atualizar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5874" />
+      <location filename="../Project/Project.py" line="5885" />
       <source>Upgrade the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5876" />
+      <location filename="../Project/Project.py" line="5887" />
       <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5888" />
+      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5889" />
+      <location filename="../Project/Project.py" line="5900" />
       <source>&amp;Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5895" />
+      <location filename="../Project/Project.py" line="5906" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5897" />
+      <location filename="../Project/Project.py" line="5908" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5929" />
+      <location filename="../Project/Project.py" line="5940" />
       <source>&amp;Project</source>
       <translation>&amp;Projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5930" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Abrir Projetos &amp;Recentes</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5932" />
-      <source>Session</source>
-      <translation>Sessão</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5933" />
-      <source>Debugger</source>
-      <translation>Depurador</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5934" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5936" />
-      <source>Project-T&amp;ools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5937" />
-      <source>&amp;Version Control</source>
-      <translation>Contro&amp;l de Versão</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5941" />
-      <source>Chec&amp;k</source>
-      <translation>&amp;Verificar</translation>
+      <source>Open &amp;Recent Projects</source>
+      <translation>Abrir Projetos &amp;Recentes</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
+      <source>Session</source>
+      <translation>Sessão</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5944" />
+      <source>Debugger</source>
+      <translation>Depurador</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Sho&amp;w</source>
-      <translation>&amp;Mostrar</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5946" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Diagramas</translation>
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Pac&amp;kagers</source>
+      <source>Project-T&amp;ools</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
+      <source>&amp;Version Control</source>
+      <translation>Contro&amp;l de Versão</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5952" />
+      <source>Chec&amp;k</source>
+      <translation>&amp;Verificar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5954" />
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5956" />
+      <source>Sho&amp;w</source>
+      <translation>&amp;Mostrar</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5957" />
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Diagramas</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5958" />
+      <source>Pac&amp;kagers</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5959" />
       <source>Source &amp;Documentation</source>
       <translation>&amp;Documentação Fonte</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5950" />
+      <location filename="../Project/Project.py" line="5961" />
       <source>Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5951" />
+      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6113" />
-      <location filename="../Project/Project.py" line="6111" />
+      <location filename="../Project/Project.py" line="6124" />
+      <location filename="../Project/Project.py" line="6122" />
       <source>Project</source>
       <translation>Projeto</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6195" />
+      <location filename="../Project/Project.py" line="6206" />
       <source>&amp;Clear</source>
       <translation>&amp;Limpar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6392" />
+      <location filename="../Project/Project.py" line="6403" />
       <source>Search New Files</source>
       <translation>Procurar Ficheiros Novos</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6393" />
+      <location filename="../Project/Project.py" line="6404" />
       <source>There were no new files found to be added.</source>
       <translation>Não se encontraram ficheiros novos para adicionar.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6554" />
-      <location filename="../Project/Project.py" line="6541" />
+      <location filename="../Project/Project.py" line="6565" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>Version Control System</source>
       <translation>Sistema de Control de Versão</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6542" />
+      <location filename="../Project/Project.py" line="6553" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6555" />
+      <location filename="../Project/Project.py" line="6566" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6712" />
+      <location filename="../Project/Project.py" line="6723" />
       <source>Coverage Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6766" />
-      <location filename="../Project/Project.py" line="6713" />
+      <location filename="../Project/Project.py" line="6777" />
+      <location filename="../Project/Project.py" line="6724" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>O projeto atual não tem um script principal definido. A cancelar</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6725" />
+      <location filename="../Project/Project.py" line="6736" />
       <source>Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6726" />
+      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6779" />
+      <location filename="../Project/Project.py" line="6790" />
       <source>Please select a profile file</source>
       <translation>Escolha um ficheiro de perfil por favor</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6831" />
+      <location filename="../Project/Project.py" line="6842" />
       <source>Include module names?</source>
       <translation>Incluir nomes de módulos?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6944" />
+      <location filename="../Project/Project.py" line="6955" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6999" />
+      <location filename="../Project/Project.py" line="7010" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7295" />
-      <location filename="../Project/Project.py" line="7251" />
-      <location filename="../Project/Project.py" line="7201" />
-      <location filename="../Project/Project.py" line="7190" />
-      <location filename="../Project/Project.py" line="7172" />
-      <location filename="../Project/Project.py" line="7139" />
-      <location filename="../Project/Project.py" line="7109" />
-      <location filename="../Project/Project.py" line="7081" />
-      <location filename="../Project/Project.py" line="7051" />
-      <location filename="../Project/Project.py" line="7037" />
-      <location filename="../Project/Project.py" line="7020" />
+      <location filename="../Project/Project.py" line="7321" />
+      <location filename="../Project/Project.py" line="7277" />
+      <location filename="../Project/Project.py" line="7227" />
+      <location filename="../Project/Project.py" line="7216" />
+      <location filename="../Project/Project.py" line="7198" />
+      <location filename="../Project/Project.py" line="7151" />
+      <location filename="../Project/Project.py" line="7121" />
+      <location filename="../Project/Project.py" line="7093" />
+      <location filename="../Project/Project.py" line="7063" />
+      <location filename="../Project/Project.py" line="7048" />
+      <location filename="../Project/Project.py" line="7031" />
       <source>Create Plugin Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7021" />
+      <location filename="../Project/Project.py" line="7032" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation>O projeto atual não tem um script principal definido. A cancelar...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7038" />
+      <location filename="../Project/Project.py" line="7049" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7052" />
-      <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7060" />
-      <source>Creating plugin archives...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7061" />
-      <source>Abort</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="7064" />
+      <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7072" />
+      <source>Creating plugin archives...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7073" />
+      <source>Abort</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7076" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7082" />
+      <location filename="../Project/Project.py" line="7094" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; não se pôde ler. &lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7110" />
+      <location filename="../Project/Project.py" line="7122" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7140" />
+      <location filename="../Project/Project.py" line="7152" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7199" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7191" />
+      <location filename="../Project/Project.py" line="7217" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7228" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7252" />
+      <location filename="../Project/Project.py" line="7278" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7296" />
+      <location filename="../Project/Project.py" line="7322" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7388" />
+      <location filename="../Project/Project.py" line="7414" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7436" />
+      <location filename="../Project/Project.py" line="7462" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7482" />
+      <location filename="../Project/Project.py" line="7508" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7490" />
+      <location filename="../Project/Project.py" line="7516" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7495" />
+      <location filename="../Project/Project.py" line="7521" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7511" />
+      <location filename="../Project/Project.py" line="7537" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7941" />
+      <location filename="../Project/Project.py" line="7975" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7942" />
+      <location filename="../Project/Project.py" line="7976" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8023" />
+      <location filename="../Project/Project.py" line="8057" />
       <source>Open Remote Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8054" />
-      <location filename="../Project/Project.py" line="8039" />
+      <location filename="../Project/Project.py" line="8088" />
+      <location filename="../Project/Project.py" line="8073" />
       <source>Save Remote Project</source>
       <translation type="unfinished" />
     </message>
@@ -65255,50 +65270,50 @@
       <translation type="unfinished">O ficheiro tem o tipo MIME &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt;Deverá ser adicionado à lista de tipos MIME de texto?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="527" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="511" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="529" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="513" />
       <source>New directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="512" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="514" />
       <source>&lt;p&gt;A file or directory named &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="528" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="530" />
       <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="625" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="596" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="577" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="627" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="598" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="579" />
       <source>New file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="578" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="580" />
       <source>Enter the path of the new file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="597" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="599" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="626" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="628" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="716" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="718" />
       <source>Delete files/directories</source>
       <translation>Apagar ficheiros/diretórios</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="717" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="719" />
       <source>Do you really want to delete these entries from the project?</source>
       <translation>Tem a certeza de que quer apagar estas entradas do projeto?</translation>
     </message>
@@ -67042,22 +67057,22 @@
   <context>
     <name>Purge</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="74" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="76" />
       <source>Purge All Files</source>
       <translation>Purgar Todos os Ficheiros</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="75" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="77" />
       <source>Do really want to delete all files not tracked by Mercurial (including ignored ones)?</source>
       <translation>Tem a certeza de que quer apagar todos os ficheiros não rastreados por Mercurial (incluindo os ignorados)?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="80" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="82" />
       <source>Purge Files</source>
       <translation>Purgar Ficheiros</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="81" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="83" />
       <source>Do really want to delete files not tracked by Mercurial?</source>
       <translation>Tem a certeza de que quer apagar os ficheiros não rastreados por Mercurial?</translation>
     </message>
@@ -67165,7 +67180,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="453" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="455" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="235" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -67181,7 +67196,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="433" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="246" />
       <source>Flash MicroPython Firmware</source>
       <translation type="unfinished" />
@@ -67237,7 +67252,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="431" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="390" />
       <source>'dfu-util' Output</source>
       <translation type="unfinished" />
@@ -67248,37 +67263,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="416" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="417" />
       <source>Flash MicroPython/CircuitPython Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="419" />
       <source>MicroPython Firmware Files (*.dfu);;CircuitPython Firmware Files (*.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="454" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="456" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="484" />
       <source>unknown</source>
       <translation type="unfinished">desconhecido</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="488" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="490" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="496" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="498" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="500" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="502" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -69359,12 +69374,12 @@
       <translation>&lt;b&gt;Assistente para QRegularExpression&lt;/b&gt;&lt;p&gt;Este assistente abre uma caixa de diálogo para introduzir todos os parâmetros necessários para criar uma string QRegularExpression. O código gerado é inserido na posição atual do cursor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="139" />
+      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="141" />
       <source>No current editor</source>
       <translation>Não há um editor atual</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="140" />
+      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="142" />
       <source>Please open or create a file first.</source>
       <translation>Por favor, primeiro abra ou crie um ficheiro.</translation>
     </message>
@@ -71107,7 +71122,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="122" />
+      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="124" />
       <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="82" />
       <source>Add Documentation</source>
       <translation type="unfinished">Adicionar Documentação</translation>
@@ -71118,7 +71133,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="123" />
+      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="125" />
       <source>The file &lt;b&gt;{0}&lt;/b&gt; could not be added.</source>
       <translation type="unfinished" />
     </message>
@@ -71376,191 +71391,191 @@
   <context>
     <name>Queues</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="226" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="228" />
       <source>New Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="277" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="279" />
       <source>Update Current Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="335" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="337" />
       <source>Pop Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="339" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="341" />
       <source>Push Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="343" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="345" />
       <source>Go to Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="437" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="369" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="356" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="441" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="371" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="358" />
       <source>Select Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="359" />
       <source>Select the target patch name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="372" />
       <source>No patches to select from.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="399" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="401" />
       <source>Finish Applied Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="423" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="427" />
       <source>Rename Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="438" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="442" />
       <source>Select the patch to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="446" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="450" />
       <source>Delete Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="488" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="482" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="475" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="492" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="486" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="479" />
       <source>Fold Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="483" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="487" />
       <source>No patches selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="493" />
       <source>No patches available to be folded.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="510" />
       <source>List Guards</source>
       <translation type="unfinished">Listar Guardas</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="507" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="511" />
       <source>No patches available to list guards for.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="536" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="540" />
       <source>Define Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="537" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="541" />
       <source>No patches available to define guards for.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="568" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="548" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="552" />
       <source>Drop All Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="549" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="553" />
       <source>Select the patch to drop guards for (leave empty for the current patch):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="597" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="590" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="606" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598" />
       <source>Set Active Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="607" />
       <source>No guards available to select from.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="618" />
       <source>Deactivate Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649" />
       <source>Create New Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649" />
       <source>Rename Active Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="658" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="673" />
       <source>Error while creating a new queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="660" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="675" />
       <source>Error while renaming the active queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="693" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="708" />
       <source>Purge Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="710" />
       <source>Delete Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="697" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="712" />
       <source>Activate Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="717" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="736" />
       <source>Error while purging the queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="738" />
       <source>Error while deleting the queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="721" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="740" />
       <source>Error while setting the active queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="743" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="762" />
       <source>Available Queues</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="757" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="777" />
       <source>Initializing new queue repository</source>
       <translation type="unfinished" />
     </message>
@@ -72705,17 +72720,17 @@
   <context>
     <name>Rebase</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="83" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="86" />
       <source>Rebase Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="106" />
       <source>Rebase Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="121" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="127" />
       <source>Rebase Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
@@ -72966,7 +72981,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="421" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="423" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -73020,37 +73035,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="402" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="403" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="403" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="404" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="424" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
       <source>unknown</source>
       <translation type="unfinished">desconhecido</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="456" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="466" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="468" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="470" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -75973,49 +75988,49 @@
   <context>
     <name>Shelve</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="105" />
       <source>Shelve current changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="144" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="151" />
       <source>Restore shelved changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="162" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="170" />
       <source>Abort restore operation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="182" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="191" />
       <source>Continue restore operation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="201" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211" />
       <source>Select the shelves to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="220" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="222" />
       <source>Delete shelves</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="212" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="223" />
       <source>Do you really want to delete these shelves?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="238" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="249" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="242" />
       <source>Delete all shelves</source>
       <translation>Apagar todas as Pilhas</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="232" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="243" />
       <source>Do you really want to delete all shelved changes?</source>
       <translation type="unfinished" />
     </message>
@@ -78822,7 +78837,7 @@
   <context>
     <name>Strip</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="64" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="68" />
       <source>Stripping changesets from repository</source>
       <translation type="unfinished" />
     </message>
@@ -78938,7 +78953,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2138" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2173" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="185" />
       <source>The svn process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -78974,337 +78989,337 @@
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="320" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="334" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="335" />
       <source>Importing project into Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="379" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="375" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="378" />
       <source>Subversion Checkout</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="450" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="436" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="376" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="452" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="381" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="442" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="379" />
       <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="402" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="402" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="406" />
       <source>Checking project out of Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="449" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="435" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="441" />
       <source>Subversion Export</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="471" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="459" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="473" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="466" />
       <source>Exporting project from Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="554" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="541" />
       <source>Commit Changes</source>
       <translation>Aplicar Alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="533" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="558" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="542" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="597" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="600" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="592" />
       <source>Commiting changes to Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="670" />
       <source>Synchronizing with the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="816" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="774" />
       <source>Adding files/directories to the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="927" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="852" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="933" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="869" />
       <source>Adding directory trees to the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="968" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="975" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="908" />
       <source>Removing files/directories from the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1032" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="953" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1042" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="973" />
       <source>Moving {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1331" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1302" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1162" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1132" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1216" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1187" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1035" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1351" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1319" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1176" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1143" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1243" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1211" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1087" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1055" />
       <source>Subversion Error</source>
       <translation type="unfinished">Erro de Subversão</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1133" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1036" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1144" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1056" />
       <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1065" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1177" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1088" />
       <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1214" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1185" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1099" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1122" />
       <source>Tagging {0} in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1246" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1235" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1143" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1132" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1262" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1251" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1167" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1156" />
       <source>Revert changes</source>
       <translation>Desfazer alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1236" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1133" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1252" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1157" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1247" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1144" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1168" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1255" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1271" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1174" />
       <source>Reverting changes</source>
       <translation type="unfinished">Desfazer alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1303" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1188" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1320" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1212" />
       <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1332" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1217" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1352" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1244" />
       <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1355" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1246" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1375" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273" />
       <source>Switching to {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1456" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1313" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1481" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1344" />
       <source>Merging {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1787" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1602" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1813" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633" />
       <source>Cleaning up {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1828" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1859" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1666" />
       <source>Subversion command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1960" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1991" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1849" />
       <source>Resolving conficts</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1852" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2036" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1885" />
       <source>Copying {0}</source>
       <translation type="unfinished">A copiar {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2084" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2067" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1923" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1902" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2117" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2100" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1956" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1935" />
       <source>Subversion Set Property</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2131" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2068" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1951" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1903" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2101" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1936" />
       <source>You have to supply a property name. Aborting.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2147" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2130" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1968" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1950" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1939" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2181" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2164" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2001" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1983" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1972" />
       <source>Subversion Delete Property</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1973" />
       <source>Enter property name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2140" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2175" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2403" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2391" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2382" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2206" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2194" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2185" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2440" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2428" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2419" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2241" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2229" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220" />
       <source>Subversion Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2404" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2207" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2242" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; não se pôde ler.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2466" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2260" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2503" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2295" />
       <source>Locking in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2508" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2545" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2324" />
       <source>Unlocking in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2558" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2314" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2595" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2351" />
       <source>Relocating</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2584" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2333" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2621" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2370" />
       <source>Repository Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2585" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2334" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2371" />
       <source>Enter the repository URL.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2610" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2647" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2441" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2404" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2367" />
       <source>Remove from changelist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2649" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2638" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2383" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2687" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2676" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2420" />
       <source>Add to changelist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2639" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2384" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2677" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2421" />
       <source>Enter name of the changelist:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2706" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2474" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2746" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2511" />
       <source>Upgrade</source>
       <translation>Atualizar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="338" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="339" />
       <source>Imported revision {0}.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="635" />
       <source>Committed revision {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1363" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1384" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1226" />
       <source>Revision {0}.
 </source>
       <translation>Revisão {0}.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2107" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2141" />
       <source>Property set.</source>
       <translation>Propriedade definida.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2200" />
       <source>Property deleted.</source>
       <translation>Propriedade apagada.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2448" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2485" />
       <source>Subversion Lock</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2449" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2486" />
       <source>Enter lock comment</source>
       <translation type="unfinished" />
     </message>
@@ -89612,133 +89627,133 @@
   <context>
     <name>UF2FlashDialog</name>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="722" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="732" />
       <source>&lt;h3&gt;CircuitPython Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Switch your device to 'bootloader' mode by double-pressing the reset button.&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;(If this does not happen, then try shorter or longer pauses between presses.)&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="748" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="758" />
       <source>&lt;h3&gt;Pi Pico (RP2040/RP2350) Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Enter 'bootloader' mode (board &lt;b&gt;without&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;Plug in your board while holding the BOOTSEL button.&lt;/li&gt;&lt;/ul&gt;Enter 'bootloader' mode (board &lt;b&gt;with&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;hold down RESET&lt;/li&gt;&lt;li&gt;hold down BOOTSEL&lt;/li&gt;&lt;li&gt;release RESET&lt;/li&gt;&lt;li&gt;release BOOTSEL&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/UF2FlashDialog.ui" line="0" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1248" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1256" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1258" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1266" />
       <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1257" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1267" />
       <source>Select the Boot Volume of the device:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="861" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="871" />
       <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="928" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="920" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="904" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="938" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="930" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="914" />
       <source>Manual Select</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1032" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1000" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="977" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1042" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1010" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="987" />
       <source>Reset Instructions:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="979" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="989" />
       <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the appropriate instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1003" />
-      <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/UF2FlashDialog.py" line="1013" />
+      <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1023" />
       <source>&lt;h4&gt;Potentially UF2 capable devices found&lt;/h4&gt;&lt;p&gt;Found these potentially UF2 capable devices:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1034" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1044" />
       <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1046" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1056" />
       <source>Flash Instructions:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1048" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1058" />
       <source>&lt;h4&gt;Flash method 'manual' selected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to flash a device by entering the data manually.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Change the device to 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it) and select its path.&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1073" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1083" />
       <source>Boot Volume not found:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1075" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1085" />
       <source>&lt;h4&gt;No Boot Volume detected.&lt;/h4&gt;&lt;p&gt;Please ensure that the boot volume of the device to be flashed is available. </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1081" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1091" />
       <source>This volume should be named &lt;b&gt;{0}&lt;/b&gt;. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1086" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1096" />
       <source>This volume should have one of these names.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1093" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1103" />
       <source>&lt;h4&gt;Reset Instructions&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set the board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1112" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1122" />
       <source>Multiple Boot Volumes found:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1114" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1124" />
       <source>&lt;h4&gt;Multiple Boot Volumes were found&lt;/h4&gt;&lt;p&gt;These volume paths were found.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please ensure that only one device of a type is ready for flashing. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1133" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1143" />
       <source>Flashing Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1135" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1145" />
       <source>&lt;p&gt;Flashing the selected firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1142" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1152" />
       <source>Flashing {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1144" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1154" />
       <source>&lt;p&gt;Flashing the {0} firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1249" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1259" />
       <source>No UF2 device 'boot' volumes found.</source>
       <translation type="unfinished" />
     </message>
@@ -90304,24 +90319,24 @@
       <translation>Gráficos</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="405" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="392" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="375" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="409" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="396" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="379" />
       <source>Save Diagram</source>
       <translation>Gravar Diagrama</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="377" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="381" />
       <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="393" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="397" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="406" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="410" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -90499,44 +90514,44 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="95" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="97" />
       <source>{0} (*)</source>
       <comment>list entry is modified</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="179" />
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="158" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="181" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="160" />
       <source>Delete Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="159" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="161" />
       <source>The selected entries contain some with modified data. Shall they really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="180" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="182" />
       <source>The list contains some devices with modified data. Shall they really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="198" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="200" />
       <source>Restore Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="199" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="201" />
       <source>Restoring the list of unknown devices will overwrite all changes made. Do you really want to restore the list?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="263" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="265" />
       <source>Unsaved Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="264" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="266" />
       <source>The list of devices contains some with modified data.</source>
       <translation type="unfinished" />
     </message>
@@ -91049,7 +91064,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7883" />
+      <location filename="../UI/UserInterface.py" line="7890" />
       <location filename="../UI/UserInterface.py" line="1955" />
       <location filename="../UI/UserInterface.py" line="1948" />
       <source>Load session</source>
@@ -92140,7 +92155,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6626" />
+      <location filename="../UI/UserInterface.py" line="6630" />
       <location filename="../UI/UserInterface.py" line="3172" />
       <source>Snapshot</source>
       <translation type="unfinished" />
@@ -92377,8 +92392,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7591" />
-      <location filename="../UI/UserInterface.py" line="7572" />
+      <location filename="../UI/UserInterface.py" line="7598" />
+      <location filename="../UI/UserInterface.py" line="7579" />
       <location filename="../UI/UserInterface.py" line="3402" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Exportar Atalhos de Teclado</translation>
@@ -92399,7 +92414,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7610" />
+      <location filename="../UI/UserInterface.py" line="7617" />
       <location filename="../UI/UserInterface.py" line="3421" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Importar Atalhos de Teclado</translation>
@@ -92808,7 +92823,7 @@
       <translation>Definições</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6354" />
+      <location filename="../UI/UserInterface.py" line="6358" />
       <location filename="../UI/UserInterface.py" line="4194" />
       <location filename="../UI/UserInterface.py" line="4179" />
       <source>Help</source>
@@ -92980,314 +92995,314 @@
       <translation>&amp;Esconder tudo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6491" />
-      <location filename="../UI/UserInterface.py" line="6480" />
-      <location filename="../UI/UserInterface.py" line="6432" />
-      <location filename="../UI/UserInterface.py" line="6422" />
-      <location filename="../UI/UserInterface.py" line="6245" />
-      <location filename="../UI/UserInterface.py" line="6235" />
-      <location filename="../UI/UserInterface.py" line="6177" />
-      <location filename="../UI/UserInterface.py" line="6167" />
+      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6484" />
+      <location filename="../UI/UserInterface.py" line="6436" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6239" />
+      <location filename="../UI/UserInterface.py" line="6181" />
+      <location filename="../UI/UserInterface.py" line="6171" />
       <source>Problem</source>
       <translation>Problema</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6492" />
-      <location filename="../UI/UserInterface.py" line="6481" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <location filename="../UI/UserInterface.py" line="6423" />
-      <location filename="../UI/UserInterface.py" line="6246" />
-      <location filename="../UI/UserInterface.py" line="6236" />
-      <location filename="../UI/UserInterface.py" line="6178" />
-      <location filename="../UI/UserInterface.py" line="6168" />
+      <location filename="../UI/UserInterface.py" line="6496" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6437" />
+      <location filename="../UI/UserInterface.py" line="6427" />
+      <location filename="../UI/UserInterface.py" line="6250" />
+      <location filename="../UI/UserInterface.py" line="6240" />
+      <location filename="../UI/UserInterface.py" line="6182" />
+      <location filename="../UI/UserInterface.py" line="6172" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6735" />
-      <location filename="../UI/UserInterface.py" line="6646" />
-      <location filename="../UI/UserInterface.py" line="6527" />
-      <location filename="../UI/UserInterface.py" line="6504" />
-      <location filename="../UI/UserInterface.py" line="6445" />
-      <location filename="../UI/UserInterface.py" line="6392" />
-      <location filename="../UI/UserInterface.py" line="6370" />
-      <location filename="../UI/UserInterface.py" line="6321" />
-      <location filename="../UI/UserInterface.py" line="6312" />
-      <location filename="../UI/UserInterface.py" line="6277" />
-      <location filename="../UI/UserInterface.py" line="6268" />
-      <location filename="../UI/UserInterface.py" line="6209" />
-      <location filename="../UI/UserInterface.py" line="6200" />
+      <location filename="../UI/UserInterface.py" line="6739" />
+      <location filename="../UI/UserInterface.py" line="6650" />
+      <location filename="../UI/UserInterface.py" line="6531" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6449" />
+      <location filename="../UI/UserInterface.py" line="6396" />
+      <location filename="../UI/UserInterface.py" line="6374" />
+      <location filename="../UI/UserInterface.py" line="6325" />
+      <location filename="../UI/UserInterface.py" line="6316" />
+      <location filename="../UI/UserInterface.py" line="6281" />
+      <location filename="../UI/UserInterface.py" line="6272" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6204" />
       <source>Process Generation Error</source>
       <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6201" />
+      <location filename="../UI/UserInterface.py" line="6205" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6210" />
+      <location filename="../UI/UserInterface.py" line="6214" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6269" />
+      <location filename="../UI/UserInterface.py" line="6273" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6278" />
+      <location filename="../UI/UserInterface.py" line="6282" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6313" />
+      <location filename="../UI/UserInterface.py" line="6317" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6322" />
+      <location filename="../UI/UserInterface.py" line="6326" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6355" />
+      <location filename="../UI/UserInterface.py" line="6359" />
       <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
       <translation>Não há nenhum visor personalizado selecionado. Por favor use a caixa de diálogo das preferências para escolher um.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6371" />
+      <location filename="../UI/UserInterface.py" line="6375" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6393" />
+      <location filename="../UI/UserInterface.py" line="6397" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6446" />
+      <location filename="../UI/UserInterface.py" line="6450" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6505" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6528" />
+      <location filename="../UI/UserInterface.py" line="6532" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6627" />
+      <location filename="../UI/UserInterface.py" line="6631" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6647" />
+      <location filename="../UI/UserInterface.py" line="6651" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6680" />
-      <location filename="../UI/UserInterface.py" line="6670" />
+      <location filename="../UI/UserInterface.py" line="6684" />
+      <location filename="../UI/UserInterface.py" line="6674" />
       <source>External Tools</source>
       <translation>Ferramentas Externas</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6671" />
+      <location filename="../UI/UserInterface.py" line="6675" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6681" />
+      <location filename="../UI/UserInterface.py" line="6685" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6718" />
+      <location filename="../UI/UserInterface.py" line="6722" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>A iniciar processo '{0} {1}'.
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6736" />
+      <location filename="../UI/UserInterface.py" line="6740" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6815" />
+      <location filename="../UI/UserInterface.py" line="6819" />
       <source>Process '{0}' has exited.
 </source>
       <translation>Processo '{0}' saiu.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7102" />
-      <location filename="../UI/UserInterface.py" line="7040" />
-      <location filename="../UI/UserInterface.py" line="6996" />
-      <location filename="../UI/UserInterface.py" line="6922" />
-      <location filename="../UI/UserInterface.py" line="6858" />
+      <location filename="../UI/UserInterface.py" line="7106" />
+      <location filename="../UI/UserInterface.py" line="7044" />
+      <location filename="../UI/UserInterface.py" line="7000" />
+      <location filename="../UI/UserInterface.py" line="6926" />
+      <location filename="../UI/UserInterface.py" line="6862" />
       <source>Documentation Missing</source>
       <translation>Falta a Documentação</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7103" />
-      <location filename="../UI/UserInterface.py" line="7041" />
-      <location filename="../UI/UserInterface.py" line="6997" />
-      <location filename="../UI/UserInterface.py" line="6923" />
-      <location filename="../UI/UserInterface.py" line="6859" />
+      <location filename="../UI/UserInterface.py" line="7107" />
+      <location filename="../UI/UserInterface.py" line="7045" />
+      <location filename="../UI/UserInterface.py" line="7001" />
+      <location filename="../UI/UserInterface.py" line="6927" />
+      <location filename="../UI/UserInterface.py" line="6863" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7084" />
-      <location filename="../UI/UserInterface.py" line="6966" />
+      <location filename="../UI/UserInterface.py" line="7088" />
+      <location filename="../UI/UserInterface.py" line="6970" />
       <source>Documentation</source>
       <translation>Documentação</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6967" />
+      <location filename="../UI/UserInterface.py" line="6971" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7085" />
+      <location filename="../UI/UserInterface.py" line="7089" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7264" />
-      <location filename="../UI/UserInterface.py" line="7200" />
+      <location filename="../UI/UserInterface.py" line="7268" />
+      <location filename="../UI/UserInterface.py" line="7204" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7201" />
+      <location filename="../UI/UserInterface.py" line="7205" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7265" />
+      <location filename="../UI/UserInterface.py" line="7269" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7311" />
+      <location filename="../UI/UserInterface.py" line="7315" />
       <source>Open Browser</source>
       <translation>Abrir Navegador</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7311" />
+      <location filename="../UI/UserInterface.py" line="7315" />
       <source>Could not start a web browser</source>
       <translation>Não se pôde iniciar um navegador web</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7612" />
-      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7619" />
+      <location filename="../UI/UserInterface.py" line="7581" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7592" />
+      <location filename="../UI/UserInterface.py" line="7599" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7796" />
+      <location filename="../UI/UserInterface.py" line="7803" />
       <source>Load crash session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7799" />
+      <location filename="../UI/UserInterface.py" line="7806" />
       <source>Clean crash sessions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7836" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7837" />
+      <location filename="../UI/UserInterface.py" line="7844" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7860" />
+      <location filename="../UI/UserInterface.py" line="7867" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7885" />
-      <location filename="../UI/UserInterface.py" line="7862" />
+      <location filename="../UI/UserInterface.py" line="7892" />
+      <location filename="../UI/UserInterface.py" line="7869" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7954" />
+      <location filename="../UI/UserInterface.py" line="7961" />
       <source>Found Crash Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7955" />
+      <location filename="../UI/UserInterface.py" line="7962" />
       <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8028" />
+      <location filename="../UI/UserInterface.py" line="8035" />
       <source>Clean stale crash sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8029" />
+      <location filename="../UI/UserInterface.py" line="8036" />
       <source>Do you really want to delete these stale crash session files?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8405" />
+      <location filename="../UI/UserInterface.py" line="8412" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8406" />
+      <location filename="../UI/UserInterface.py" line="8413" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; não é um ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8594" />
+      <location filename="../UI/UserInterface.py" line="8605" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8595" />
+      <location filename="../UI/UserInterface.py" line="8606" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8640" />
+      <location filename="../UI/UserInterface.py" line="8651" />
       <source>First time usage</source>
       <translation>Usado a primeira vez</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8641" />
+      <location filename="../UI/UserInterface.py" line="8652" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8663" />
+      <location filename="../UI/UserInterface.py" line="8674" />
       <source>Select Workspace Directory</source>
       <translation>Selecionar o Diretório de Trabalho</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8831" />
+      <location filename="../UI/UserInterface.py" line="8842" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8832" />
+      <location filename="../UI/UserInterface.py" line="8843" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -93978,8 +93993,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginVcsGit.py" line="134" />
-      <location filename="../Plugins/PluginVcsGit.py" line="98" />
+      <location filename="../Plugins/PluginVcsGit.py" line="133" />
+      <location filename="../Plugins/PluginVcsGit.py" line="97" />
       <source>Git</source>
       <translation type="unfinished" />
     </message>
@@ -94193,156 +94208,156 @@
   <context>
     <name>VcsProjectHelper</name>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="76" />
+      <location filename="../VCS/ProjectHelper.py" line="77" />
       <source>New from repository</source>
       <translation>Novo desde repositorio</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="78" />
+      <location filename="../VCS/ProjectHelper.py" line="79" />
       <source>&amp;New from repository...</source>
       <translation>&amp;Novo desde repositorio...</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="85" />
+      <location filename="../VCS/ProjectHelper.py" line="86" />
       <source>Create a new project from the VCS repository</source>
       <translation>Criar um projeto novo desde o repositorio VCS</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="90" />
+      <location filename="../VCS/ProjectHelper.py" line="91" />
       <source>&lt;b&gt;New from repository&lt;/b&gt;&lt;p&gt;This creates a new local project from the VCS repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Novo desde repositorio&lt;/b&gt;&lt;p&gt;Cria um projeto local novo desde o repositorio VCS.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="101" />
+      <location filename="../VCS/ProjectHelper.py" line="102" />
       <source>Export from repository</source>
       <translation>Exportar do repositório</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="103" />
+      <location filename="../VCS/ProjectHelper.py" line="104" />
       <source>&amp;Export from repository...</source>
       <translation>&amp;Exportar do repositório...</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="112" />
+      <location filename="../VCS/ProjectHelper.py" line="113" />
       <source>Export a project from the repository</source>
       <translation>Exportar um projeto desde o repositorio</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="117" />
+      <location filename="../VCS/ProjectHelper.py" line="118" />
       <source>&lt;b&gt;Export from repository&lt;/b&gt;&lt;p&gt;This exports a project from the repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Exportar do repositorio&lt;/b&gt;&lt;p&gt;Exporta um projeto do repositorio.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="127" />
+      <location filename="../VCS/ProjectHelper.py" line="128" />
       <source>Add to repository</source>
       <translation>Adicionar ao repositorio</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="129" />
+      <location filename="../VCS/ProjectHelper.py" line="130" />
       <source>&amp;Add to repository...</source>
       <translation>&amp;Adicionar ao repositorio...</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="136" />
+      <location filename="../VCS/ProjectHelper.py" line="137" />
       <source>Add the local project to the VCS repository</source>
       <translation>Adicionar o projeto local ao repositorio VCS</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="141" />
+      <location filename="../VCS/ProjectHelper.py" line="142" />
       <source>&lt;b&gt;Add to repository&lt;/b&gt;&lt;p&gt;This adds (imports) the local project to the VCS repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Adicionar ao repositorio&lt;/b&gt;&lt;p&gt;Adiciona (importa) o projeto local ao repositorio VCS.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="192" />
-      <location filename="../VCS/ProjectHelper.py" line="190" />
+      <location filename="../VCS/ProjectHelper.py" line="193" />
+      <location filename="../VCS/ProjectHelper.py" line="191" />
       <source>VCS</source>
       <translation>VCS</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="265" />
-      <location filename="../VCS/ProjectHelper.py" line="236" />
+      <location filename="../VCS/ProjectHelper.py" line="266" />
+      <location filename="../VCS/ProjectHelper.py" line="237" />
       <source>New Project</source>
       <translation>Projeto Novo</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="462" />
-      <location filename="../VCS/ProjectHelper.py" line="237" />
+      <location filename="../VCS/ProjectHelper.py" line="465" />
+      <location filename="../VCS/ProjectHelper.py" line="238" />
       <source>Select version control system for the project</source>
       <translation>Selecionar o sistema de control de versão para o projeto</translation>
     </message>
     <message>
+      <location filename="../VCS/ProjectHelper.py" line="497" />
+      <location filename="../VCS/ProjectHelper.py" line="267" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation>Quer editar as opções de commandos VCS?</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="287" />
+      <source>Create project directory</source>
+      <translation>Criar diretório de projeto</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="290" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;O diretorio do projeto &lt;b&gt;{0}&lt;/b&gt; não se pôde criar.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="396" />
+      <location filename="../VCS/ProjectHelper.py" line="380" />
+      <location filename="../VCS/ProjectHelper.py" line="336" />
+      <location filename="../VCS/ProjectHelper.py" line="316" />
+      <source>New project from repository</source>
+      <translation>Projeto novo desde Repositorio</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="319" />
+      <source>Select a project file to open.</source>
+      <translation>Selecionar um ficheiro de projeto a abrir.</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="339" />
+      <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="384" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation>Deve adicionar-se o ficheiro de projeto ao repositório?</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="399" />
+      <source>The project could not be retrieved from the repository.</source>
+      <translation>Não se pode recuperar o projeto do repositorio.</translation>
+    </message>
+    <message>
       <location filename="../VCS/ProjectHelper.py" line="494" />
-      <location filename="../VCS/ProjectHelper.py" line="266" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation>Quer editar as opções de commandos VCS?</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="286" />
-      <source>Create project directory</source>
-      <translation>Criar diretório de projeto</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="289" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;O diretorio do projeto &lt;b&gt;{0}&lt;/b&gt; não se pôde criar.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="393" />
-      <location filename="../VCS/ProjectHelper.py" line="377" />
-      <location filename="../VCS/ProjectHelper.py" line="335" />
-      <location filename="../VCS/ProjectHelper.py" line="315" />
-      <source>New project from repository</source>
-      <translation>Projeto novo desde Repositorio</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="318" />
-      <source>Select a project file to open.</source>
-      <translation>Selecionar um ficheiro de projeto a abrir.</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="338" />
-      <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="381" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation>Deve adicionar-se o ficheiro de projeto ao repositório?</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="396" />
-      <source>The project could not be retrieved from the repository.</source>
-      <translation>Não se pode recuperar o projeto do repositorio.</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="491" />
-      <location filename="../VCS/ProjectHelper.py" line="461" />
+      <location filename="../VCS/ProjectHelper.py" line="464" />
       <source>Import Project</source>
       <translation>Importar Projeto</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="535" />
+      <location filename="../VCS/ProjectHelper.py" line="540" />
       <source>Update</source>
       <translation>Atualizar</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="669" />
-      <location filename="../VCS/ProjectHelper.py" line="536" />
+      <location filename="../VCS/ProjectHelper.py" line="674" />
+      <location filename="../VCS/ProjectHelper.py" line="541" />
       <source>The project should be reread. Do this now?</source>
       <translation>O projecto deve ser recarregado. Fazer-lo agora?</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="572" />
+      <location filename="../VCS/ProjectHelper.py" line="577" />
       <source>Remove project from repository</source>
       <translation>Retirar o projeto do repositorio</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="575" />
+      <location filename="../VCS/ProjectHelper.py" line="580" />
       <source>Dou you really want to remove this project from the repository (and disk)?</source>
       <translation>Tem a certeza de que quer retirar este projeto do repositório (e disco)?</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="668" />
+      <location filename="../VCS/ProjectHelper.py" line="673" />
       <source>Switch</source>
       <translation>Mudar</translation>
     </message>
@@ -99333,54 +99348,54 @@
   <context>
     <name>VirtualenvManager</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="318" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="322" />
       <source>Add Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="319" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="323" />
       <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="356" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="362" />
       <source>Change Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="389" />
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="357" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="395" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="363" />
       <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="388" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="394" />
       <source>Rename Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="480" />
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="413" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="486" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="419" />
       <source>{0} - {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="420" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="426" />
       <source>Delete Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="421" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="427" />
       <source>Do you really want to delete these virtual environments?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="487" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="493" />
       <source>Remove Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="488" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="494" />
       <source>Do you really want to remove these virtual environments?</source>
       <translation type="unfinished" />
     </message>
@@ -99388,7 +99403,7 @@
   <context>
     <name>VirtualenvManagerDialog</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" />
+      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="449" />
       <source>Manage Virtual Environments</source>
       <translation type="unfinished" />
     </message>
@@ -99511,7 +99526,7 @@
   <context>
     <name>VirtualenvManagerWindow</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" />
+      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="489" />
       <source>Manage Virtual Environments</source>
       <translation type="unfinished" />
     </message>
@@ -104615,22 +104630,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="125" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="117" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="127" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="119" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="49" />
       <source>Connect WiFi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="173" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="167" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="175" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="169" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="50" />
       <source>Check Internet Connection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="147" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="141" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="149" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="143" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="51" />
       <source>Disconnect WiFi</source>
       <translation type="unfinished" />
@@ -104641,40 +104656,40 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="244" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="235" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="225" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="215" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="249" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="240" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="230" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="220" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="55" />
       <source>Write WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="282" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="272" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="261" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="287" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="277" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="266" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="56" />
       <source>Remove WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="495" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="486" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="500" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="491" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="58" />
       <source>Enable WebREPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="529" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="520" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="512" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="534" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="525" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="517" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="59" />
       <source>Disable WebREPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="313" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="329" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="318" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="61" />
       <source>Start WiFi Access Point</source>
       <translation type="unfinished" />
@@ -104685,14 +104700,14 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="378" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="383" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="66" />
       <source>Show Connected Clients</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="345" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="359" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="350" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="68" />
       <source>Stop WiFi Access Point</source>
       <translation type="unfinished" />
@@ -104708,186 +104723,186 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="464" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="448" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="428" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="419" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="469" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="433" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="424" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="79" />
       <source>Set Network Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="118" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="120" />
       <source>&lt;p&gt;The device was connected to &lt;b&gt;{0}&lt;/b&gt; successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="126" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="128" />
       <source>&lt;p&gt;The device could not connect to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="533" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="499" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="286" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="248" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="150" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="129" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="538" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="504" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="291" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="253" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="178" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="152" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="131" />
       <source>unknown</source>
       <translation type="unfinished">desconhecido</translation>
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="142" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="144" />
       <source>&lt;p&gt;The device was disconnected from the WiFi network.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="148" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="150" />
       <source>&lt;p&gt;The device could not be disconnected.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="161" />
-      <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="163" />
+      <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="165" />
       <source>&lt;p&gt;The internet connection is &lt;b&gt;not available&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="174" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176" />
       <source>&lt;p&gt;The internet is not available.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="236" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="216" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="241" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="221" />
       <source>&lt;p&gt;The WiFi credentials were saved on the device. The device will connect to the WiFi network at boot time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="226" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="231" />
       <source>&lt;p&gt;The WiFi credentials and a connect script were saved on the device. Use the script by simply importing it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="245" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="250" />
       <source>&lt;p&gt;The WiFi credentials could not be saved on the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="262" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="267" />
       <source>Shall the saved WiFi credentials really be removed from the connected device?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="273" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="278" />
       <source>&lt;p&gt;The WiFi credentials were removed from the device. The device will not connect to the WiFi network at boot time anymore.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="283" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="288" />
       <source>&lt;p&gt;The WiFi credentials could not be removed from the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="314" />
-      <source>The WiFi Access Point interface was started successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="319" />
+      <source>The WiFi Access Point interface was started successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324" />
       <source>&lt;p&gt;The WiFi Access Point could not be started.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="405" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="356" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="326" />
+      <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351" />
+      <source>The WiFi Access Point interface was stopped successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354" />
+      <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="384" />
+      <source>No clients are connected to the access point.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="408" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="399" />
+      <source>Deactivate WiFi Interface</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="400" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="321" />
-      <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="346" />
-      <source>The WiFi Access Point interface was stopped successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="349" />
-      <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="379" />
-      <source>No clients are connected to the access point.</source>
+      <source>The WiFi interface was deactivated successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="403" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="394" />
-      <source>Deactivate WiFi Interface</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="395" />
-      <source>The WiFi interface was deactivated successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="398" />
       <source>&lt;p&gt;The WiFi interface could not be deactivated.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="420" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="425" />
       <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;adafruit_ntp&lt;/b&gt; is not installed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="429" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="434" />
       <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;ntptime&lt;/b&gt; is not available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="449" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="454" />
       <source>The device time was synchronized successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453" />
-      <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="458" />
+      <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="463" />
       <source>&lt;p&gt;The device time could not be synchronized. Is the device connected to a WiFi network?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="487" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="492" />
       <source>&lt;p&gt;The WebREPL server of the device will be activated after a reboot.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="496" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="501" />
       <source>&lt;p&gt;The WebREPL server of the device could not be enabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="513" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="518" />
       <source>Shall the WebREPL server of the device really be disabled?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="521" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="526" />
       <source>&lt;p&gt;The WebREPL server of the device will not be enabled at boot time anymore.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="530" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="535" />
       <source>&lt;p&gt;The WebREPL server of the device could not be disabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -105451,32 +105466,32 @@
   <context>
     <name>mercurial</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1349" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1383" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Pai #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Conjunto de Alterações&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1913" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1955" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1391" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiquetas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1919" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1363" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1961" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1397" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Marcadores&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1370" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1968" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1404" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Ramos&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1376" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1410" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
@@ -105485,7 +105500,7 @@
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Hora do Cometido&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1429" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -105502,36 +105517,36 @@
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1887" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1929" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1894" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1936" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1901" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1943" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Dica&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1906" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1948" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Conjunto de Alterações&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1933" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1975" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Pais&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1981" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -106195,17 +106210,17 @@
   <context>
     <name>subversion</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1736" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1769" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1888" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1919" />
       <source>unknown</source>
       <translation>desconhecido</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1892" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1923" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_ru.ts	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/i18n/eric7_ru.ts	Fri Nov 01 18:12:30 2024 +0100
@@ -9224,23 +9224,23 @@
       <translation>&lt;p&gt;Попытка соединения с неизвестного компьютора &lt;b&gt;{0}&lt;/b&gt;. Разрешить соединение?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1355" />
-      <location filename="../Debugger/DebugServer.py" line="1272" />
-      <location filename="../Debugger/DebugServer.py" line="1188" />
-      <location filename="../Debugger/DebugServer.py" line="1098" />
+      <location filename="../Debugger/DebugServer.py" line="1358" />
+      <location filename="../Debugger/DebugServer.py" line="1275" />
+      <location filename="../Debugger/DebugServer.py" line="1191" />
+      <location filename="../Debugger/DebugServer.py" line="1101" />
       <source>Start Debugger</source>
       <translation>Запуск отладчика</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1356" />
-      <location filename="../Debugger/DebugServer.py" line="1273" />
-      <location filename="../Debugger/DebugServer.py" line="1189" />
-      <location filename="../Debugger/DebugServer.py" line="1099" />
+      <location filename="../Debugger/DebugServer.py" line="1359" />
+      <location filename="../Debugger/DebugServer.py" line="1276" />
+      <location filename="../Debugger/DebugServer.py" line="1192" />
+      <location filename="../Debugger/DebugServer.py" line="1102" />
       <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Отладчик типа &lt;b&gt;{0}&lt;/b&gt; не поддерживается или не настроен.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1945" />
+      <location filename="../Debugger/DebugServer.py" line="1948" />
       <source>
 Not connected
 </source>
@@ -9249,37 +9249,37 @@
 </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2110" />
+      <location filename="../Debugger/DebugServer.py" line="2113" />
       <source>Passive debug connection received
 </source>
       <translation>Получено соединение для пассивной отладки
 </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2119" />
+      <location filename="../Debugger/DebugServer.py" line="2122" />
       <source>Passive debug connection received while not in passive mode.
 </source>
       <translation>Получено соединение пассивной отладки, но оно не находится в пассивном режиме.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2125" />
+      <location filename="../Debugger/DebugServer.py" line="2128" />
       <source>Debug Client Connection</source>
       <translation>Подключение клиента отладки</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2126" />
+      <location filename="../Debugger/DebugServer.py" line="2129" />
       <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source>
       <translation>Получено соединение клиента пассивной отладки, но оно не в пассивном режиме. Включите этот режим на странице конфигурации 'Настройка основных параметров отладки'. Соединение будет отклонено.</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2141" />
+      <location filename="../Debugger/DebugServer.py" line="2144" />
       <source>Passive debug connection closed
 </source>
       <translation>Соединение для пассивной отладки закрыто
 </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2272" />
+      <location filename="../Debugger/DebugServer.py" line="2275" />
       <source>&lt;project&gt;</source>
       <translation>&lt;project&gt;</translation>
     </message>
@@ -10138,26 +10138,26 @@
       <translation>Выбранный интерфейс</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="325" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="312" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="336" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="323" />
       <source>Add allowed host</source>
       <translation>Добавить допустимый хост</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="349" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="313" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="360" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="324" />
       <source>Enter the IP address of an allowed host</source>
       <translation>Задайте IP-адрес допустимого хоста</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="363" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="326" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="374" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="337" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Введённый адрес &lt;b&gt;{0}&lt;/b&gt; не является верным IP v4 или IP v6 адресом. Прервано...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="362" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="348" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="373" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="359" />
       <source>Edit allowed host</source>
       <translation>Редактировать допустимый хост</translation>
     </message>
@@ -10254,13 +10254,8 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debugger Type:</source>
-      <translation>Тип отладчика:</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Select the debugger type of the backend</source>
-      <translation>Выберите тип отладчика</translation>
+      <source>Debug Server Port:</source>
+      <translation>Порт сервера отладчика:</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
@@ -10276,8 +10271,28 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debug Server Port:</source>
-      <translation>Порт сервера отладчика:</translation>
+      <source>Debugger Type:</source>
+      <translation>Тип отладчика:</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select the debugger type of the backend</source>
+      <translation>Выберите тип отладчика</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select to not stop the debugger at the first executable line.</source>
+      <translation type="unfinished">Разрешить не останавливать отладчик на первой исполняемой строке.</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>&lt;b&gt;Don't stop at first line&lt;/b&gt;&lt;p&gt;This prevents the debugger from stopping at the first executable line.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;Не останавливаться на первой строке&lt;/b&gt;&lt;p&gt;Отменяет остановку отладчика на первой исполняемой строке.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Don't stop at first line</source>
+      <translation type="unfinished">Не останавливаться на первой строке</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
@@ -10649,12 +10664,12 @@
       <translation>&lt;p&gt;Удаленная отладка настроена, но не была дана команда для удаленного входа в систему.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1679" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1691" />
       <source>Debug Protocol Error</source>
       <translation>Протокол ошибок отладки</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1680" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1692" />
       <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;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно декодировать ответ, полученный от бэкэнда отладчика. Сообщите об этой проблеме, отправив полученные данные на электронную почту eric bugs.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data: &lt;br/&gt;{1}&lt;/p&gt;</translation>
     </message>
@@ -22097,7 +22112,7 @@
   <context>
     <name>EspFirmwareSelectionDialog</name>
     <message>
-      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="68" />
+      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="77" />
       <source>Firmware Files (*.bin);;All Files (*)</source>
       <translation>Файлы микрокода (* .bin);;Все файлы (*)</translation>
     </message>
@@ -50811,13 +50826,13 @@
     <name>Lexers</name>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="412" />
-      <location filename="../Preferences/__init__.py" line="596" />
+      <location filename="../Preferences/__init__.py" line="597" />
       <source>Python Files (*.py *.py3)</source>
       <translation>Файлы Python (*.py *.py3)</translation>
     </message>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="505" />
-      <location filename="../Preferences/__init__.py" line="599" />
+      <location filename="../Preferences/__init__.py" line="600" />
       <source>Python3 Files (*.py)</source>
       <translation>Файлы Python3 (*.py)</translation>
     </message>
@@ -62232,18 +62247,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1904" />
+      <location filename="../Preferences/__init__.py" line="1905" />
       <source>Export Preferences</source>
       <translation>Экспорт Preferences</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1933" />
-      <location filename="../Preferences/__init__.py" line="1906" />
+      <location filename="../Preferences/__init__.py" line="1934" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>Файлы Preferences (*.ini);;Все файлы (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1931" />
+      <location filename="../Preferences/__init__.py" line="1932" />
       <source>Import Preferences</source>
       <translation>Импорт Preferences</translation>
     </message>
@@ -62264,7 +62279,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="509" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="520" />
       <source>Variable Name</source>
       <translation>Имя переменной</translation>
     </message>
@@ -62891,430 +62906,430 @@
   <context>
     <name>Project</name>
     <message>
-      <location filename="../Project/Project.py" line="187" />
+      <location filename="../Project/Project.py" line="188" />
       <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source>
       <translation>Файлы Python3 (*.py3);;Файлы Python3 GUI (*.pyw3);;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="250" />
-      <source>Add File Category</source>
-      <translation>Добавить категорию файлов</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="251" />
+      <source>Add File Category</source>
+      <translation>Добавить категорию файлов</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="252" />
       <source>&lt;p&gt;The file category &lt;b&gt;{0}&lt;/b&gt; has already been added. This attempt will be ignored.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Категория файлов &lt;b&gt;{0}&lt;/b&gt; уже добавлена. Эта попытка будет проигнорирована.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="336" />
-      <source>PyQt5 GUI</source>
-      <translation>PyQt5 GUI</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="337" />
-      <source>PyQt5 Console</source>
-      <translation>Консоль PyQt5</translation>
+      <source>PyQt5 GUI</source>
+      <translation>PyQt5 GUI</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="338" />
-      <source>PyQt6 GUI</source>
-      <translation>PyQt6 GUI</translation>
+      <source>PyQt5 Console</source>
+      <translation>Консоль PyQt5</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="339" />
-      <source>PyQt6 Console</source>
-      <translation>Консоль PyQt6</translation>
+      <source>PyQt6 GUI</source>
+      <translation>PyQt6 GUI</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="340" />
-      <source>Eric7 Plugin</source>
-      <translation>Eric7 Plugin</translation>
+      <source>PyQt6 Console</source>
+      <translation>Консоль PyQt6</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="341" />
-      <source>Console</source>
-      <translation>Консоль</translation>
+      <source>Eric7 Plugin</source>
+      <translation>Eric7 Plugin</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="342" />
+      <source>Console</source>
+      <translation>Консоль</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="343" />
       <source>Other</source>
       <translation>Другой</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="361" />
-      <source>PySide2 GUI</source>
-      <translation>PySide2 GUI</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="362" />
+      <source>PySide2 GUI</source>
+      <translation>PySide2 GUI</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="363" />
       <source>PySide2 Console</source>
       <translation>Консоль PySide2</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="366" />
-      <source>PySide6 GUI</source>
-      <translation>PySide6 GUI</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="367" />
+      <source>PySide6 GUI</source>
+      <translation>PySide6 GUI</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation>Консоль PySide6</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="465" />
-      <location filename="../Project/Project.py" line="453" />
-      <location filename="../Project/Project.py" line="442" />
-      <source>Registering Project Type</source>
-      <translation>Регистрация типа проекта</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="443" />
-      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Язык программирования &lt;b&gt;{0}&lt;/b&gt; не поддерживается (тип проекта: {1}).&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="454" />
-      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Тип проекта &lt;b&gt;{0}&lt;/b&gt; уже зарегистрирован для языка программирования &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="466" />
+      <location filename="../Project/Project.py" line="454" />
+      <location filename="../Project/Project.py" line="443" />
+      <source>Registering Project Type</source>
+      <translation>Регистрация типа проекта</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="444" />
+      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Язык программирования &lt;b&gt;{0}&lt;/b&gt; не поддерживается (тип проекта: {1}).&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="455" />
+      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Тип проекта &lt;b&gt;{0}&lt;/b&gt; уже зарегистрирован для языка программирования &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="467" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Тип проекта &lt;b&gt;{0}&lt;/b&gt; уже зарегистрирован.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="771" />
+      <location filename="../Project/Project.py" line="772" />
       <source>All Files (*)</source>
       <translation>Все файлы (*)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1332" />
+      <location filename="../Project/Project.py" line="1333" />
       <source>Read Project Session</source>
       <translation>Загрузить сеанс проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1578" />
-      <location filename="../Project/Project.py" line="1552" />
-      <location filename="../Project/Project.py" line="1516" />
-      <location filename="../Project/Project.py" line="1434" />
-      <location filename="../Project/Project.py" line="1395" />
-      <location filename="../Project/Project.py" line="1370" />
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1579" />
+      <location filename="../Project/Project.py" line="1553" />
+      <location filename="../Project/Project.py" line="1517" />
+      <location filename="../Project/Project.py" line="1435" />
+      <location filename="../Project/Project.py" line="1396" />
+      <location filename="../Project/Project.py" line="1371" />
+      <location filename="../Project/Project.py" line="1334" />
       <source>Please save the project first.</source>
       <translation>Пожалуйста, сначала сохраните проект.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1369" />
+      <location filename="../Project/Project.py" line="1370" />
       <source>Save Project Session</source>
       <translation>Сохранить сеанс проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1411" />
-      <location filename="../Project/Project.py" line="1394" />
+      <location filename="../Project/Project.py" line="1412" />
+      <location filename="../Project/Project.py" line="1395" />
       <source>Delete Project Session</source>
       <translation>Удалить сеанс проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1401" />
+      <location filename="../Project/Project.py" line="1402" />
       <source>Delete Remote Project Session</source>
       <translation>Удалить сеанс удаленного проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1420" />
+      <location filename="../Project/Project.py" line="1421" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно удалить выбранный файл с сеансом: &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1433" />
+      <location filename="../Project/Project.py" line="1434" />
       <source>Read Tasks</source>
       <translation>Прочитать задачи</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1515" />
+      <location filename="../Project/Project.py" line="1516" />
       <source>Read Debugger Properties</source>
       <translation>Прочитать свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1551" />
+      <location filename="../Project/Project.py" line="1552" />
       <source>Save Debugger Properties</source>
       <translation>Сохранить свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1594" />
-      <location filename="../Project/Project.py" line="1577" />
+      <location filename="../Project/Project.py" line="1595" />
+      <location filename="../Project/Project.py" line="1578" />
       <source>Delete Debugger Properties</source>
       <translation>Удалить свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1584" />
+      <location filename="../Project/Project.py" line="1585" />
       <source>Delete Remote Debugger Properties</source>
       <translation>Удалить свойства удаленного отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1603" />
+      <location filename="../Project/Project.py" line="1604" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно удалить файл свойств отладчика &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1776" />
-      <source>Add Language</source>
-      <translation>Добавить язык перевода</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="1777" />
+      <source>Add Language</source>
+      <translation>Добавить язык перевода</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="1778" />
       <source>You have to specify a translation pattern first.</source>
       <translation>Необходимо сначала задать шаблон перевода.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1918" />
+      <location filename="../Project/Project.py" line="1919" />
       <source>Delete Translation</source>
       <translation>Удалить перевод</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="1946" />
+      <location filename="../Project/Project.py" line="1920" />
+      <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Невозможно удалить файла перевода &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
       <location filename="../Project/Project.py" line="1945" />
-      <location filename="../Project/Project.py" line="1919" />
-      <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Невозможно удалить файла перевода &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="1944" />
       <source>Delete translation</source>
       <translation>Удалить перевод</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2097" />
-      <location filename="../Project/Project.py" line="2080" />
-      <source>Add File</source>
-      <translation>Добавить файл</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="2199" />
-      <location filename="../Project/Project.py" line="2081" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2098" />
+      <location filename="../Project/Project.py" line="2081" />
+      <source>Add File</source>
+      <translation>Добавить файл</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2200" />
+      <location filename="../Project/Project.py" line="2082" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2099" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно добавить выделенный файл &lt;b&gt;{0}&lt;/b&gt; в архив &lt;b&gt;{1}&lt;/b&gt;. &lt;/p&gt;&lt;p&gt;Причина: {2}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2110" />
+      <location filename="../Project/Project.py" line="2111" />
       <source>Add file</source>
       <translation>Добавить файл</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2295" />
-      <location filename="../Project/Project.py" line="2111" />
+      <location filename="../Project/Project.py" line="2296" />
+      <location filename="../Project/Project.py" line="2112" />
       <source>The target directory must not be empty.</source>
       <translation>Целевая директория не должна быть пустой.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2198" />
-      <location filename="../Project/Project.py" line="2171" />
-      <location filename="../Project/Project.py" line="2151" />
+      <location filename="../Project/Project.py" line="2199" />
+      <location filename="../Project/Project.py" line="2172" />
+      <location filename="../Project/Project.py" line="2152" />
       <source>Add Directory</source>
       <translation>Добавить директорию</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2152" />
+      <location filename="../Project/Project.py" line="2153" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Директория не содержит ни одного файла, принадлежащего к заданной категории.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2172" />
+      <location filename="../Project/Project.py" line="2173" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно создать директорию &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2306" />
-      <location filename="../Project/Project.py" line="2294" />
-      <source>Add directory</source>
-      <translation>Добавить директорию</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2307" />
+      <location filename="../Project/Project.py" line="2295" />
+      <source>Add directory</source>
+      <translation>Добавить директорию</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2308" />
       <source>The source directory must not be empty.</source>
       <translation>Исходная директория не должна быть пустой.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2421" />
-      <location filename="../Project/Project.py" line="2403" />
-      <location filename="../Project/Project.py" line="2387" />
-      <location filename="../Project/Project.py" line="2380" />
-      <source>Rename File</source>
-      <translation>Переименовать файл</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="8074" />
-      <location filename="../Project/Project.py" line="3908" />
-      <location filename="../Project/Project.py" line="2404" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2422" />
+      <location filename="../Project/Project.py" line="2404" />
+      <location filename="../Project/Project.py" line="2388" />
+      <location filename="../Project/Project.py" line="2381" />
+      <source>Rename File</source>
+      <translation>Переименовать файл</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="8089" />
+      <location filename="../Project/Project.py" line="3909" />
+      <location filename="../Project/Project.py" line="2405" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2423" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно переименовать файл &lt;b&gt;{0}&lt;/b&gt;:&lt;br&gt;Причина: {1}.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2689" />
-      <source>Delete File</source>
-      <translation>Удалить файл</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2690" />
+      <source>Delete File</source>
+      <translation>Удалить файл</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2691" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно удалить выбранный файл &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2718" />
-      <source>Delete Directory</source>
-      <translation>Удалить директорию</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2719" />
+      <source>Delete Directory</source>
+      <translation>Удалить директорию</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2720" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно удалить выбранную директорию &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2852" />
-      <source>Create project directory</source>
-      <translation>Создать директорию проекта</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2853" />
+      <source>Create project directory</source>
+      <translation>Создать директорию проекта</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2854" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно создать директорию проекта &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3681" />
-      <location filename="../Project/Project.py" line="2953" />
-      <source>Create project management directory</source>
-      <translation>Создать служебную директорию проекта</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3682" />
       <location filename="../Project/Project.py" line="2954" />
+      <source>Create project management directory</source>
+      <translation>Создать служебную директорию проекта</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3683" />
+      <location filename="../Project/Project.py" line="2955" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Директория проекта &lt;b&gt;{0}&lt;/b&gt; не доступна для записи.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2994" />
-      <source>Create main script</source>
-      <translation>Создать главный сценарий</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="2995" />
+      <source>Create main script</source>
+      <translation>Создать главный сценарий</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="2996" />
       <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается создать основной скрипт &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3462" />
-      <location filename="../Project/Project.py" line="3019" />
-      <source>Create Makefile</source>
-      <translation>Создать Makefile</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3463" />
       <location filename="../Project/Project.py" line="3020" />
+      <source>Create Makefile</source>
+      <translation>Создать Makefile</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3464" />
+      <location filename="../Project/Project.py" line="3021" />
       <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл makefile &lt;b&gt;{0}&lt;/b&gt; невозможно создать.&lt;br/&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3711" />
-      <location filename="../Project/Project.py" line="3172" />
-      <location filename="../Project/Project.py" line="3143" />
-      <location filename="../Project/Project.py" line="3111" />
-      <location filename="../Project/Project.py" line="3093" />
-      <location filename="../Project/Project.py" line="3068" />
-      <location filename="../Project/Project.py" line="3030" />
-      <source>New Project</source>
-      <translation>Новый проект</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="3031" />
-      <source>Add existing files to the project?</source>
-      <translation>Добавить существующие файлы в проект?</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3712" />
+      <location filename="../Project/Project.py" line="3173" />
+      <location filename="../Project/Project.py" line="3144" />
+      <location filename="../Project/Project.py" line="3112" />
+      <location filename="../Project/Project.py" line="3094" />
       <location filename="../Project/Project.py" line="3069" />
+      <location filename="../Project/Project.py" line="3031" />
+      <source>New Project</source>
+      <translation>Новый проект</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3032" />
+      <source>Add existing files to the project?</source>
+      <translation>Добавить существующие файлы в проект?</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3713" />
+      <location filename="../Project/Project.py" line="3070" />
       <source>Select Version Control System</source>
       <translation>Выберите систему контроля версий (VCS)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3173" />
-      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="3174" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Would you like to edit the VCS command options?</source>
       <translation>Вы хотите редактировать параметры команд VCS?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3112" />
+      <location filename="../Project/Project.py" line="3113" />
       <source>Shall the project file be added to the repository?</source>
       <translation>Должен ли файл проекта быть добавлен в репозиторий?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3149" />
-      <location filename="../Project/Project.py" line="3138" />
+      <location filename="../Project/Project.py" line="3150" />
+      <location filename="../Project/Project.py" line="3139" />
       <source>None</source>
       <translation>None</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3144" />
+      <location filename="../Project/Project.py" line="3145" />
       <source>Select version control system for the project</source>
       <translation>Выберите систему контроля версий для проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3355" />
-      <source>Translation Pattern</source>
-      <translation>Шаблон перевода</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3356" />
+      <source>Translation Pattern</source>
+      <translation>Шаблон перевода</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3357" />
       <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
       <translation>Введите шаблон пути для файлов переводов (используйте '%language%' вместо language code):</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3660" />
+      <location filename="../Project/Project.py" line="3661" />
       <source>Open Project</source>
       <translation>Открыть проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8060" />
-      <location filename="../Project/Project.py" line="8054" />
-      <location filename="../Project/Project.py" line="8044" />
-      <location filename="../Project/Project.py" line="3893" />
-      <location filename="../Project/Project.py" line="3883" />
-      <location filename="../Project/Project.py" line="3662" />
+      <location filename="../Project/Project.py" line="8075" />
+      <location filename="../Project/Project.py" line="8069" />
+      <location filename="../Project/Project.py" line="8059" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3884" />
+      <location filename="../Project/Project.py" line="3663" />
       <source>Project Files (*.epj)</source>
       <translation>Файлы проекта (*.epj)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3907" />
-      <location filename="../Project/Project.py" line="3891" />
+      <location filename="../Project/Project.py" line="3908" />
+      <location filename="../Project/Project.py" line="3892" />
       <source>Save Project</source>
       <translation>Сохранить проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3946" />
-      <source>Close Project</source>
-      <translation>Закрыть проект</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="3947" />
+      <source>Close Project</source>
+      <translation>Закрыть проект</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="3948" />
       <source>The current project has unsaved changes.</source>
       <translation>Изменения в текущем проекте не сохранены.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4147" />
-      <location filename="../Project/Project.py" line="4111" />
+      <location filename="../Project/Project.py" line="4148" />
+      <location filename="../Project/Project.py" line="4112" />
       <source>Syntax Errors Detected</source>
       <translation>Обнаружены синтаксические ошибки</translation>
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4148" />
-      <location filename="../Project/Project.py" line="4112" />
+      <location filename="../Project/Project.py" line="4149" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>Проект содержит %n файл с синтаксической ошибкой.</numerusform>
@@ -63323,464 +63338,464 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4806" />
+      <location filename="../Project/Project.py" line="4807" />
       <source>New project</source>
       <translation>Новый проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4808" />
+      <location filename="../Project/Project.py" line="4809" />
       <source>&amp;New...</source>
       <translation>&amp;Новый...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4814" />
+      <location filename="../Project/Project.py" line="4815" />
       <source>Generate a new project</source>
       <translation>Создать новый проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4816" />
+      <location filename="../Project/Project.py" line="4817" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Новый...&lt;/b&gt;&lt;p&gt;Открытие диалога ввода информации о новом проекте.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4826" />
+      <location filename="../Project/Project.py" line="4827" />
       <source>Open project</source>
       <translation>Открыть проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4828" />
+      <location filename="../Project/Project.py" line="4829" />
       <source>&amp;Open...</source>
       <translation>&amp;Открыть...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4834" />
+      <location filename="../Project/Project.py" line="4835" />
       <source>Open an existing project</source>
       <translation>Открыть существующий проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4836" />
+      <location filename="../Project/Project.py" line="4837" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Открыть...&lt;/b&gt;&lt;p&gt;Открытие существующего проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4842" />
+      <location filename="../Project/Project.py" line="4843" />
       <source>Open remote project</source>
       <translation>Открыть удаленный проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4844" />
+      <location filename="../Project/Project.py" line="4845" />
       <source>Open (Remote)...</source>
       <translation>Открыть (удаленно)...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4850" />
+      <location filename="../Project/Project.py" line="4851" />
       <source>Open an existing remote project</source>
       <translation>Открыть существующий удаленный проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4852" />
+      <location filename="../Project/Project.py" line="4853" />
       <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Открыть (удаленно)...&lt;/b&gt;&lt;p&gt;Открывает существующий удаленный проект.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4861" />
+      <location filename="../Project/Project.py" line="4862" />
       <source>Reload project</source>
       <translation>Перезагрузить проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4863" />
+      <location filename="../Project/Project.py" line="4864" />
       <source>Re&amp;load</source>
       <translation>П&amp;ерезагрузить</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4869" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>Reload the current project</source>
       <translation>Перезагрузить текущий проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4871" />
+      <location filename="../Project/Project.py" line="4872" />
       <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Перезагрузить&lt;/b&gt;&lt;p&gt;Перезагружает текущий проект.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4877" />
+      <location filename="../Project/Project.py" line="4878" />
       <source>Close project</source>
       <translation>Закрыть проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4879" />
+      <location filename="../Project/Project.py" line="4880" />
       <source>&amp;Close</source>
       <translation>&amp;Закрыть</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4885" />
+      <location filename="../Project/Project.py" line="4886" />
       <source>Close the current project</source>
       <translation>Закрыть текущий проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4887" />
+      <location filename="../Project/Project.py" line="4888" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Закрыть&lt;/b&gt;&lt;p&gt;Закрытие текущего проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4893" />
+      <location filename="../Project/Project.py" line="4894" />
       <source>Save project</source>
       <translation>Сохранить проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5190" />
-      <location filename="../Project/Project.py" line="4895" />
+      <location filename="../Project/Project.py" line="5191" />
+      <location filename="../Project/Project.py" line="4896" />
       <source>&amp;Save</source>
       <translation>&amp;Сохранить</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4901" />
+      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation>Сохранить текущий проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4903" />
+      <location filename="../Project/Project.py" line="4904" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сохранить&lt;/b&gt;&lt;p&gt;Сохранение текущего проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4909" />
+      <location filename="../Project/Project.py" line="4910" />
       <source>Save project as</source>
       <translation>Сохранить проект как</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4911" />
+      <location filename="../Project/Project.py" line="4912" />
       <source>Save &amp;as...</source>
       <translation>Сохранить &amp;как...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4917" />
+      <location filename="../Project/Project.py" line="4918" />
       <source>Save the current project to a new file</source>
       <translation>Сохранить текущий проект в новый файл</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4919" />
+      <location filename="../Project/Project.py" line="4920" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сохранить как&lt;/b&gt;&lt;p&gt; Сохранение текущего проекта в новый файл.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4928" />
+      <location filename="../Project/Project.py" line="4929" />
       <source>Save project as (Remote)</source>
       <translation>Сохранить проект как (удаленно)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4930" />
+      <location filename="../Project/Project.py" line="4931" />
       <source>Save as (Remote)...</source>
       <translation>Сохранить как (удаленно)...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4937" />
+      <location filename="../Project/Project.py" line="4938" />
       <source>Save the current project to a new remote file</source>
       <translation>Сохранить текущий проект в новом удаленном файле</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4940" />
+      <location filename="../Project/Project.py" line="4941" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сохранить как (удаленно)&lt;/b&gt;&lt;p&gt;При этом текущий проект сохраняется в новом удаленном файле.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4956" />
+      <location filename="../Project/Project.py" line="4957" />
       <source>Add files to project</source>
       <translation>Добавить файлы в проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4958" />
+      <location filename="../Project/Project.py" line="4959" />
       <source>Add &amp;files...</source>
       <translation>Добавить &amp;файлы...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4964" />
+      <location filename="../Project/Project.py" line="4965" />
       <source>Add files to the current project</source>
       <translation>Добавить файлы в текущий проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4966" />
+      <location filename="../Project/Project.py" line="4967" />
       <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Добавить файлы&lt;/b&gt;
 &lt;p&gt;Открытие диалога добавления файлов в текущий проект. Место добавления определяется расширением файла.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4977" />
+      <location filename="../Project/Project.py" line="4978" />
       <source>Add directory to project</source>
       <translation>Добавить директорию в проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4979" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Add directory...</source>
       <translation>Добавить директорию...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4986" />
+      <location filename="../Project/Project.py" line="4987" />
       <source>Add a directory to the current project</source>
       <translation>Добавить директорию в текущий проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4989" />
+      <location filename="../Project/Project.py" line="4990" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Добавить директорию...&lt;/b&gt;
 &lt;p&gt;Открытие диалога добавления директории к текущему проекту.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4999" />
+      <location filename="../Project/Project.py" line="5000" />
       <source>Add translation to project</source>
       <translation>Добавить перевод в проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5001" />
+      <location filename="../Project/Project.py" line="5002" />
       <source>Add &amp;translation...</source>
       <translation>Добавить &amp;перевод...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5008" />
+      <location filename="../Project/Project.py" line="5009" />
       <source>Add a translation to the current project</source>
       <translation>Добавить перевод в текущий проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5011" />
+      <location filename="../Project/Project.py" line="5012" />
       <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Добавить перевод...&lt;/b&gt;&lt;p&gt;Открытие диалога добавления перевода в текущий проект.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5021" />
-      <source>Search new files</source>
-      <translation>Поиск новых файлов</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5022" />
+      <source>Search new files</source>
+      <translation>Поиск новых файлов</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation>Поис&amp;к новых файлов...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5028" />
+      <location filename="../Project/Project.py" line="5029" />
       <source>Search new files in the project directory.</source>
       <translation>Поиск новых файлов в директории проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5030" />
+      <location filename="../Project/Project.py" line="5031" />
       <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Поиск новых файлов...&lt;/b&gt;&lt;p&gt;Поиск новых файлов (источники, формы, ...) в директории проекта и зарегистрированных поддиректориях..&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5040" />
-      <source>Search Project File</source>
-      <translation>Поиск файла проекта</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5041" />
-      <source>Search Project File...</source>
-      <translation>Поиск файла проекта...</translation>
+      <source>Search Project File</source>
+      <translation>Поиск файла проекта</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5042" />
+      <source>Search Project File...</source>
+      <translation>Поиск файла проекта...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation>Alt+Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5047" />
+      <location filename="../Project/Project.py" line="5048" />
       <source>Search for a file in the project list of files.</source>
       <translation>Поиск файла в списке файлов проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5049" />
+      <location filename="../Project/Project.py" line="5050" />
       <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Поиск файла проекта&lt;/b&gt;&lt;p&gt;Поиск файла в списке файлов проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5058" />
+      <location filename="../Project/Project.py" line="5059" />
       <source>Project properties</source>
       <translation>Свойства проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5060" />
+      <location filename="../Project/Project.py" line="5061" />
       <source>&amp;Properties...</source>
       <translation>&amp;Свойства...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5066" />
+      <location filename="../Project/Project.py" line="5067" />
       <source>Show the project properties</source>
       <translation>Показать свойства проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5068" />
+      <location filename="../Project/Project.py" line="5069" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Свойства...&lt;/b&gt;&lt;p&gt;Отображение диалога для редактирования свойств проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5077" />
+      <location filename="../Project/Project.py" line="5078" />
       <source>User project properties</source>
       <translation>Пользовательские настройки проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5079" />
+      <location filename="../Project/Project.py" line="5080" />
       <source>&amp;User Properties...</source>
       <translation>&amp;Пользовательские свойства...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5086" />
+      <location filename="../Project/Project.py" line="5087" />
       <source>Show the user specific project properties</source>
       <translation>Показать пользовательские свойства проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5089" />
+      <location filename="../Project/Project.py" line="5090" />
       <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Пользовательские свойства...&lt;/b&gt;&lt;p&gt;Отображает диалог редактирования пользовательских свойств проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5099" />
-      <source>Filetype Associations</source>
-      <translation>Ассоциации типов файлов</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5100" />
+      <source>Filetype Associations</source>
+      <translation>Ассоциации типов файлов</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5101" />
       <source>Filetype Associations...</source>
       <translation>Ассоциации типов файлов...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5107" />
+      <location filename="../Project/Project.py" line="5108" />
       <source>Show the project file type associations</source>
       <translation>Показать ассоциации типов файлов для проекта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5110" />
+      <location filename="../Project/Project.py" line="5111" />
       <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ассоциации типов файлов...&lt;/b&gt;&lt;p&gt;Отображается диалоговое окно для редактирования ассоциаций типов файлов проекта. Эти ассоциации определяют тип (источник, форму, интерфейс, протокол или другие) с шаблоном имени файла. Они используются при добавлении файла в проект и при поиске новых файлов.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5123" />
-      <source>Lexer Associations</source>
-      <translation>Ассоциации для лексеров</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5124" />
+      <source>Lexer Associations</source>
+      <translation>Ассоциации для лексеров</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5125" />
       <source>Lexer Associations...</source>
       <translation>Ассоциации для лексеров...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5131" />
+      <location filename="../Project/Project.py" line="5132" />
       <source>Show the project lexer associations (overriding defaults)</source>
       <translation>Показать ассоциации для лексеров проекта (переопределяющие по умолчанию)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5134" />
+      <location filename="../Project/Project.py" line="5135" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ассоциации для лексеров...&lt;/b&gt;&lt;p&gt;Показать ассоциации лексеров для проекта. Эти ассоциации переопределяют глобальные ассоциации лексеров. Лексеры используются для подсвечивания текста в редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5152" />
-      <source>Debugger Properties</source>
-      <translation>Свойства отладчика</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5153" />
+      <source>Debugger Properties</source>
+      <translation>Свойства отладчика</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5154" />
       <source>Debugger &amp;Properties...</source>
       <translation>&amp;Свойства отладчика...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5159" />
+      <location filename="../Project/Project.py" line="5160" />
       <source>Show the debugger properties</source>
       <translation>Показать свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5161" />
+      <location filename="../Project/Project.py" line="5162" />
       <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Свойства отладчика...&lt;/b&gt;
 &lt;p&gt;Отображение диалога редактирования свойств отладчика, специфичных для данного проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5171" />
+      <location filename="../Project/Project.py" line="5172" />
       <source>Load</source>
       <translation>Загрузить</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5172" />
+      <location filename="../Project/Project.py" line="5173" />
       <source>&amp;Load</source>
       <translation>&amp;Загрузить</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5178" />
+      <location filename="../Project/Project.py" line="5179" />
       <source>Load the debugger properties</source>
       <translation>Загрузить свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5180" />
+      <location filename="../Project/Project.py" line="5181" />
       <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Загрузить свойства отладчика&lt;/b&gt;
 &lt;p&gt;Загрузить свойства отладчика, специфичные для данного проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5189" />
+      <location filename="../Project/Project.py" line="5190" />
       <source>Save</source>
       <translation>Сохранить</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5196" />
+      <location filename="../Project/Project.py" line="5197" />
       <source>Save the debugger properties</source>
       <translation>Сохранить свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5198" />
+      <location filename="../Project/Project.py" line="5199" />
       <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сохранить свойства отладчика&lt;/b&gt;&lt;p&gt;Сохранить свойства отладчика, специфичные для данного проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5207" />
-      <source>Delete</source>
-      <translation>Удалить</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5208" />
+      <source>Delete</source>
+      <translation>Удалить</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5209" />
       <source>&amp;Delete</source>
       <translation>&amp;Удалить</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5214" />
+      <location filename="../Project/Project.py" line="5215" />
       <source>Delete the debugger properties</source>
       <translation>Удалить свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5216" />
+      <location filename="../Project/Project.py" line="5217" />
       <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Удалить свойства отладчика&lt;/b&gt;&lt;p&gt;Удалить свойства отладчика, специфичные для данного проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5226" />
-      <source>Reset</source>
-      <translation>Рестарт</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5227" />
+      <source>Reset</source>
+      <translation>Рестарт</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5228" />
       <source>&amp;Reset</source>
       <translation>&amp;Рестарт</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5233" />
+      <location filename="../Project/Project.py" line="5234" />
       <source>Reset the debugger properties</source>
       <translation>Сбросить свойства отладчика</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5235" />
+      <location filename="../Project/Project.py" line="5236" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сбросить свойства отладчика&lt;/b&gt;&lt;p&gt;Сбросить свойства отладчика, специфичные для данного проекта.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5252" />
       <location filename="../Project/Project.py" line="5251" />
-      <location filename="../Project/Project.py" line="5250" />
       <source>Load session</source>
       <translation>Загрузить сеанс</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5257" />
+      <location filename="../Project/Project.py" line="5258" />
       <source>Load the projects session file.</source>
       <translation>Загрузить файл с сеансом проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5259" />
+      <location filename="../Project/Project.py" line="5260" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Загрузить сеанс&lt;/b&gt;
 &lt;p&gt;Загрузить файл с сеансом проекта. Сеанс содержит следующие данные:&lt;br&gt;
@@ -63792,18 +63807,18 @@
 &lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5276" />
       <location filename="../Project/Project.py" line="5275" />
-      <location filename="../Project/Project.py" line="5274" />
       <source>Save session</source>
       <translation>Сохранить сеанс</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5281" />
+      <location filename="../Project/Project.py" line="5282" />
       <source>Save the projects session file.</source>
       <translation>Сохранить файл с сеансом проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5283" />
+      <location filename="../Project/Project.py" line="5284" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сохранить сеанс&lt;/b&gt;
 &lt;p&gt;Сохранить файл с сеансом проекта. Сеанс содержит следующие данные:&lt;br&gt;
@@ -63815,794 +63830,794 @@
 &lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5300" />
       <location filename="../Project/Project.py" line="5299" />
-      <location filename="../Project/Project.py" line="5298" />
       <source>Delete session</source>
       <translation>Удалить сеанс</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5305" />
+      <location filename="../Project/Project.py" line="5306" />
       <source>Delete the projects session file.</source>
       <translation>Удалить файл с сеансом проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5307" />
+      <location filename="../Project/Project.py" line="5308" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation>&lt;b&gt;Удалить сеанс&lt;/b&gt;&lt;p&gt;Удалить файл с сеансом проекта&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5322" />
-      <source>Code Metrics</source>
-      <translation>Метрики кода</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5323" />
+      <source>Code Metrics</source>
+      <translation>Метрики кода</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5324" />
       <source>&amp;Code Metrics...</source>
       <translation>&amp;Метрики кода...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5330" />
+      <location filename="../Project/Project.py" line="5331" />
       <source>Show some code metrics for the project.</source>
       <translation>Отображение некоторых метрик кода проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5333" />
+      <location filename="../Project/Project.py" line="5334" />
       <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Метрики кода...&lt;/b&gt;&lt;p&gt;Отображение некоторых метрик кода для всех Python-файлов проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5343" />
-      <source>Python Code Coverage</source>
-      <translation>Покрытие кода Python</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5344" />
+      <source>Python Code Coverage</source>
+      <translation>Покрытие кода Python</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5345" />
       <source>Code Co&amp;verage...</source>
       <translation>&amp;Покрытие кода...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5351" />
+      <location filename="../Project/Project.py" line="5352" />
       <source>Show code coverage information for the project.</source>
       <translation>Показать информацию покрытия кода проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5354" />
+      <location filename="../Project/Project.py" line="5355" />
       <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Покрытие кода...&lt;/b&gt;&lt;p&gt;Показать информацию покрытия кода всех Python-файлов проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6788" />
-      <location filename="../Project/Project.py" line="6775" />
-      <location filename="../Project/Project.py" line="5364" />
+      <location filename="../Project/Project.py" line="6789" />
+      <location filename="../Project/Project.py" line="6776" />
+      <location filename="../Project/Project.py" line="5365" />
       <source>Profile Data</source>
       <translation>Данные профайлера</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5365" />
+      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation>&amp;Данные профайлера...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5372" />
+      <location filename="../Project/Project.py" line="5373" />
       <source>Show profiling data for the project.</source>
       <translation>Отображение результатов профилирования проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5375" />
+      <location filename="../Project/Project.py" line="5376" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Данные профайлера...&lt;/b&gt;&lt;p&gt;Отображение результатов профилирования проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6840" />
-      <location filename="../Project/Project.py" line="5390" />
+      <location filename="../Project/Project.py" line="6841" />
+      <location filename="../Project/Project.py" line="5391" />
       <source>Application Diagram</source>
       <translation>Диаграмма приложения</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="5392" />
       <source>&amp;Application Diagram...</source>
       <translation>&amp;Диаграмма приложения...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5398" />
+      <location filename="../Project/Project.py" line="5399" />
       <source>Show a diagram of the project.</source>
       <translation>Показать диаграмму проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5401" />
+      <location filename="../Project/Project.py" line="5402" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Диаграмма приложения...&lt;/b&gt;&lt;p&gt;Отображает диаграмму проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5410" />
-      <source>Load Diagram</source>
-      <translation>Загрузить диаграмму</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5411" />
+      <source>Load Diagram</source>
+      <translation>Загрузить диаграмму</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5412" />
       <source>&amp;Load Diagram...</source>
       <translation>&amp;Загрузить диаграмму...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5417" />
+      <location filename="../Project/Project.py" line="5418" />
       <source>Load a diagram from file.</source>
       <translation>Загрузить диаграмму из файла.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5419" />
+      <location filename="../Project/Project.py" line="5420" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Загрузить диаграмму...&lt;/b&gt;&lt;p&gt;Загрузить диаграмму из файла.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7008" />
-      <location filename="../Project/Project.py" line="6953" />
-      <location filename="../Project/Project.py" line="5434" />
+      <location filename="../Project/Project.py" line="7009" />
+      <location filename="../Project/Project.py" line="6954" />
+      <location filename="../Project/Project.py" line="5435" />
       <source>Create Package List</source>
       <translation>Создать список пакета</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5436" />
+      <location filename="../Project/Project.py" line="5437" />
       <source>Create &amp;Package List</source>
       <translation>&amp;Создать список пакета</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5443" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation>Создать первичный файл PKGLIST для плагина eric.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5446" />
+      <location filename="../Project/Project.py" line="5447" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Создать список пакета&lt;/b&gt;&lt;p&gt;Создаёт начальный список файлов для включения в архив плагина eric. Список создаётся из файла проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7079" />
-      <location filename="../Project/Project.py" line="5457" />
+      <location filename="../Project/Project.py" line="7080" />
+      <location filename="../Project/Project.py" line="5458" />
       <source>Create Plugin Archives</source>
       <translation>Создать архивы плагина</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5459" />
+      <location filename="../Project/Project.py" line="5460" />
       <source>Create Plugin &amp;Archives</source>
       <translation>Создать архивы &amp;плагина</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5465" />
+      <location filename="../Project/Project.py" line="5466" />
       <source>Create eric plugin archive files.</source>
       <translation>Создание архивных файлов плагина eric.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5467" />
+      <location filename="../Project/Project.py" line="5468" />
       <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Создать архивы плагина&lt;/b&gt;&lt;p&gt;Создание архивных файлов плагина eric, используя список файлов, приведенный в файле PKGLIST. Имя архива, если оно не задано в файле со списком пакета, создается из имени главного сценария.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5479" />
+      <location filename="../Project/Project.py" line="5480" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation>Создать архивы плагина (Snapshot)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5481" />
+      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation>Создать архивы плагина (&amp;Snapshot)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5488" />
+      <location filename="../Project/Project.py" line="5489" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation>Создание архивных файлов плагина eric (snapshot releases).</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5491" />
+      <location filename="../Project/Project.py" line="5492" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Создать архивы плагина (Snapshot)&lt;/b&gt;&lt;p&gt;Создание архивных файлов плагина eric, используя список файлов, приведенный в файле PKGLIST. Имя архива, если оно не задано в файле со списком пакета, создается из имени главного сценария. Версия главного скрипта изменяется в соответствии релизом snapshot.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7521" />
-      <location filename="../Project/Project.py" line="7492" />
-      <location filename="../Project/Project.py" line="7446" />
-      <location filename="../Project/Project.py" line="7398" />
-      <location filename="../Project/Project.py" line="5510" />
+      <location filename="../Project/Project.py" line="7536" />
+      <location filename="../Project/Project.py" line="7507" />
+      <location filename="../Project/Project.py" line="7461" />
+      <location filename="../Project/Project.py" line="7413" />
+      <location filename="../Project/Project.py" line="5511" />
       <source>Execute Make</source>
       <translation>Выполнить Make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5511" />
+      <location filename="../Project/Project.py" line="5512" />
       <source>&amp;Execute Make</source>
       <translation>&amp;Выполнить Make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5517" />
+      <location filename="../Project/Project.py" line="5518" />
       <source>Perform a 'make' run.</source>
       <translation>Выполнить прогон 'make'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5519" />
+      <location filename="../Project/Project.py" line="5520" />
       <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Выполнить Make&lt;/b&gt;&lt;p&gt;Выполнение прогона 'make' для пересборки настроеной цели.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7498" />
-      <location filename="../Project/Project.py" line="5529" />
+      <location filename="../Project/Project.py" line="7513" />
+      <location filename="../Project/Project.py" line="5530" />
       <source>Test for Changes</source>
       <translation>Проверить изменения</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="5531" />
       <source>&amp;Test for Changes</source>
       <translation>&amp;Проверить изменения</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5537" />
+      <location filename="../Project/Project.py" line="5538" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation>Запрос 'make', если необходима пересборка.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5540" />
+      <location filename="../Project/Project.py" line="5541" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Проверка изменений&lt;/b&gt;&lt;p&gt;Запрос 'make', если требуется пересборка настроенной цели.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5558" />
-      <source>Create SBOM File</source>
-      <translation>Создать файл SBOM</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5559" />
+      <source>Create SBOM File</source>
+      <translation>Создать файл SBOM</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5560" />
       <source>Create &amp;SBOM File</source>
       <translation>Создать файл &amp;SBOM</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5566" />
+      <location filename="../Project/Project.py" line="5567" />
       <source>Create a SBOM file of the project dependencies.</source>
       <translation>Создайте SBOM файл зависимостей проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5569" />
+      <location filename="../Project/Project.py" line="5570" />
       <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Создать файл SBOM&lt;/b&gt;&lt;p&gt;Создание SBOM файла зависимостей проекта. Он может быть основан на различных источниках ввода и будет сохранен как файл CycloneDX SBOM.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5580" />
-      <source>Clear Byte Code Caches</source>
-      <translation>Очистить кэши байт-кода</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5581" />
+      <source>Clear Byte Code Caches</source>
+      <translation>Очистить кэши байт-кода</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5582" />
       <source>Clear Byte Code &amp;Caches</source>
       <translation>Очистить &amp;кэши байт-кода</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5588" />
+      <location filename="../Project/Project.py" line="5589" />
       <source>Clear the byte code caches of the project.</source>
       <translation>Очистить кэши байт-кода проекта.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5591" />
+      <location filename="../Project/Project.py" line="5592" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Очистить кэш байт-кода&lt;/b&gt;&lt;p&gt;При этом будут удалены все каталоги, содержащие файлы кэша байт-кода.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5607" />
-      <source>About Black</source>
-      <translation>О Black</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5608" />
+      <source>About Black</source>
+      <translation>О Black</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5609" />
       <source>&amp;Black</source>
       <translation>&amp;Black</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5614" />
+      <location filename="../Project/Project.py" line="5615" />
       <source>Show some information about 'Black'.</source>
       <translation>Отображение некоторой информации о форматере 'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5616" />
+      <location filename="../Project/Project.py" line="5617" />
       <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;Отображение некоторой информации об установленном форматере 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5628" />
-      <source>Format Code</source>
-      <translation>Форматировать код</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5629" />
+      <source>Format Code</source>
+      <translation>Форматировать код</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5630" />
       <source>&amp;Format Code</source>
       <translation>&amp;Форматировать код</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5636" />
+      <location filename="../Project/Project.py" line="5637" />
       <source>Format the project sources with 'Black'.</source>
       <translation>Форматирование исходников проекта с помощью 'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5639" />
+      <location filename="../Project/Project.py" line="5640" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Форматировать код&lt;/b&gt;&lt;p&gt;Отображение диалога задания параметров для форматирования и переформатирование исходников проекта с помощью 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5651" />
-      <source>Check Code Formatting</source>
-      <translation>Проверить форматирование кода</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5652" />
+      <source>Check Code Formatting</source>
+      <translation>Проверить форматирование кода</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5653" />
       <source>&amp;Check Code Formatting</source>
       <translation>&amp;Проверить форматирование кода</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5659" />
+      <location filename="../Project/Project.py" line="5660" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation>Проверка возможности переформатирования исходников проекта с помощью 'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5664" />
+      <location filename="../Project/Project.py" line="5665" />
       <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Проверить форматирование кода&lt;/b&gt;&lt;p&gt;Отображение диалога задания параметров для запуска проверки формата и выполнение проверки, если исходный проект необходимо переформатировать посредством 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5677" />
-      <source>Code Formatting Diff</source>
-      <translation>Различия форматирования кода</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5678" />
+      <source>Code Formatting Diff</source>
+      <translation>Различия форматирования кода</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5679" />
       <source>Code Formatting &amp;Diff</source>
       <translation>&amp;Различия форматирования кода</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5685" />
+      <location filename="../Project/Project.py" line="5686" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation>Генерация унифицированного diff потенциального переформатирования исходников проекта с помощью 'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5691" />
+      <location filename="../Project/Project.py" line="5692" />
       <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Различия форматирования кода&lt;/b&gt;&lt;p&gt;Отображение диалога задания параметров для запуска сравнения форматов и генерации единого diff потенциального переформатирования исходного проекта с помощью 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5856" />
+      <location filename="../Project/Project.py" line="5857" />
+      <location filename="../Project/Project.py" line="5807" />
       <location filename="../Project/Project.py" line="5806" />
-      <location filename="../Project/Project.py" line="5805" />
+      <location filename="../Project/Project.py" line="5706" />
       <location filename="../Project/Project.py" line="5705" />
-      <location filename="../Project/Project.py" line="5704" />
       <source>Configure</source>
       <translation>Конфигурация</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5712" />
+      <location filename="../Project/Project.py" line="5713" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation>Задание параметров форматирования исходников проекта с помощью  'Black'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5717" />
+      <location filename="../Project/Project.py" line="5718" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Конфигурация&lt;/b&gt;&lt;p&gt;Отображение диалога задания параметров для форматирования исходников проекта с помощью 'Black'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5733" />
-      <source>About isort</source>
-      <translation>О isort</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5734" />
+      <source>About isort</source>
+      <translation>О isort</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5735" />
       <source>&amp;isort</source>
       <translation>&amp;isort</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5740" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Show some information about 'isort'.</source>
       <translation>Отображение некоторой информации о утилите 'isort'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5742" />
+      <location filename="../Project/Project.py" line="5743" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;Отображение некоторой информацим об установленном инструменте isort.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5756" />
       <location filename="../Project/Project.py" line="5755" />
-      <location filename="../Project/Project.py" line="5754" />
       <source>Sort Imports</source>
       <translation>Сортировать импорт</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5762" />
+      <location filename="../Project/Project.py" line="5763" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation>Сортировка операторов импорта исходников проекта с помощью 'isort'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5765" />
+      <location filename="../Project/Project.py" line="5766" />
       <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сортировка импорта&lt;/b&gt;&lt;p&gt;Отображение диалога задания параметров для запуска сортировки импорта и сортировки операторов импорта исходного проекта с помощью 'isort'.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="5780" />
       <location filename="../Project/Project.py" line="5779" />
-      <location filename="../Project/Project.py" line="5778" />
       <source>Imports Sorting Diff</source>
       <translation>Различия сортировки импорта</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5786" />
+      <location filename="../Project/Project.py" line="5787" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation>Создание унифицированного diff потенциального импорта исходников проекта c помощью 'isort'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5792" />
+      <location filename="../Project/Project.py" line="5793" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Различия сортировки импорта&lt;/b&gt;&lt;p&gt;Отображение диалога задания параметров для запуска сравнения сортировки импорта и создания унифицированного diff потенциальных изменений исходников проекта с помощью 'isort'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5813" />
+      <location filename="../Project/Project.py" line="5814" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation>Задание параметров сортировки операторов импорта исходников проекта с помощью 'isort'.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5819" />
+      <location filename="../Project/Project.py" line="5820" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Конфигурация&lt;/b&gt;&lt;p&gt;Отображение диалогового окна ввода параметров для сортировки операторов импорта исходников проекта с помощью 'isort'.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5835" />
-      <source>Install Project</source>
-      <translation>Установить проект</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5836" />
+      <source>Install Project</source>
+      <translation>Установить проект</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5837" />
       <source>&amp;Install Project</source>
       <translation>&amp;Установить проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5843" />
+      <location filename="../Project/Project.py" line="5844" />
       <source>Install the project into the embedded environment.</source>
       <translation>Установка проекта во встроенную среду.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5846" />
+      <location filename="../Project/Project.py" line="5847" />
       <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
       <translation>&lt;b&gt;Установить проект&lt;/b&gt;&lt;p&gt;Установка проекта во встроенное виртуальное окружение в режиме редактирования (т.е. в режиме разработки).&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5857" />
+      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation>&amp;Настройки</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5864" />
+      <location filename="../Project/Project.py" line="5865" />
       <source>Configure the embedded environment.</source>
       <translation>Настройка встроенного виртуального окружения.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5867" />
+      <location filename="../Project/Project.py" line="5868" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Настройки&lt;/b&gt;&lt;p&gt;Открытие диалогового окна для настройки встроенного виртуального окружения проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5877" />
-      <source>Upgrade</source>
-      <translation>Модернизировать</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5878" />
+      <source>Upgrade</source>
+      <translation>Модернизировать</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation>&amp;Модернизировать</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5884" />
+      <location filename="../Project/Project.py" line="5885" />
       <source>Upgrade the embedded environment.</source>
       <translation>Модернизация встроенного виртуального окружения.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5886" />
+      <location filename="../Project/Project.py" line="5887" />
       <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Модернизировать&lt;/b&gt;&lt;p&gt;Открытие диалогового окна для ввода параметров обновления встроенной виртуальной среды проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5898" />
-      <source>Recreate</source>
-      <translation>Пересоздать</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5899" />
+      <source>Recreate</source>
+      <translation>Пересоздать</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5900" />
       <source>&amp;Recreate</source>
       <translation>&amp;Пересоздать</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5905" />
+      <location filename="../Project/Project.py" line="5906" />
       <source>Recreate the embedded environment.</source>
       <translation>Пересоздание встроенного виртуального окружения.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5907" />
+      <location filename="../Project/Project.py" line="5908" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Пересоздать&lt;/b&gt;&lt;p&gt;При этом открывается диалоговое окно для ввода параметров для воссоздания встроенной виртуальной среды проекта. Сначала очищается существующая среда.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5939" />
-      <source>&amp;Project</source>
-      <translation>&amp;Проект</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5940" />
+      <source>&amp;Project</source>
+      <translation>&amp;Проект</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5941" />
       <source>Open &amp;Recent Projects</source>
       <translation>Открыть &amp;недавние проекты</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5942" />
-      <source>Session</source>
-      <translation>Сеанс</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Debugger</source>
-      <translation>Отладка</translation>
+      <source>Session</source>
+      <translation>Сеанс</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5944" />
+      <source>Debugger</source>
+      <translation>Отладка</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5945" />
       <source>Embedded Environment</source>
       <translation>Встроенная среда окружения</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5946" />
-      <source>Project-T&amp;ools</source>
-      <translation>&amp;Инструменты-проекта</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5947" />
+      <source>Project-T&amp;ools</source>
+      <translation>&amp;Инструменты-проекта</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5948" />
       <source>&amp;Version Control</source>
       <translation>Контроль &amp;версий</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5951" />
+      <location filename="../Project/Project.py" line="5952" />
       <source>Chec&amp;k</source>
       <translation>&amp;Проверить</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5953" />
+      <location filename="../Project/Project.py" line="5954" />
       <source>Code &amp;Formatting</source>
       <translation>&amp;Форматировать код</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5955" />
-      <source>Sho&amp;w</source>
-      <translation>По&amp;казать</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5956" />
-      <source>&amp;Diagrams</source>
-      <translation>&amp;Диаграммы</translation>
+      <source>Sho&amp;w</source>
+      <translation>По&amp;казать</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5957" />
-      <source>Pac&amp;kagers</source>
-      <translation>У&amp;паковщики</translation>
+      <source>&amp;Diagrams</source>
+      <translation>&amp;Диаграммы</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5958" />
+      <source>Pac&amp;kagers</source>
+      <translation>У&amp;паковщики</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5959" />
       <source>Source &amp;Documentation</source>
       <translation>&amp;Документация исходников</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5960" />
-      <source>Make</source>
-      <translation>Make</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5961" />
+      <source>Make</source>
+      <translation>Make</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation>Другие инструменты</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6123" />
-      <location filename="../Project/Project.py" line="6121" />
+      <location filename="../Project/Project.py" line="6124" />
+      <location filename="../Project/Project.py" line="6122" />
       <source>Project</source>
       <translation>Проект</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6205" />
+      <location filename="../Project/Project.py" line="6206" />
       <source>&amp;Clear</source>
       <translation>&amp;Очистить</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6402" />
-      <source>Search New Files</source>
-      <translation>Поиск новых файлов</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="6403" />
+      <source>Search New Files</source>
+      <translation>Поиск новых файлов</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6404" />
       <source>There were no new files found to be added.</source>
       <translation>Не найдено новых файлов для добавления.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6564" />
-      <location filename="../Project/Project.py" line="6551" />
-      <source>Version Control System</source>
-      <translation>Система контроля версий</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6552" />
-      <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Выбранная VCS &lt;b&gt;{0}&lt;/b&gt; не найдена.&lt;br/&gt;Возврат отвергнут.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="6565" />
+      <location filename="../Project/Project.py" line="6552" />
+      <source>Version Control System</source>
+      <translation>Система контроля версий</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6553" />
+      <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Выбранная VCS &lt;b&gt;{0}&lt;/b&gt; не найдена.&lt;br/&gt;Возврат отвергнут.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6566" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Выбранная VCS &lt;b&gt;{0}&lt;/b&gt; не найдена.&lt;br/&gt;Контроль версий отключен.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6722" />
+      <location filename="../Project/Project.py" line="6723" />
       <source>Coverage Data</source>
       <translation>Данные покрытия</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6776" />
-      <location filename="../Project/Project.py" line="6723" />
+      <location filename="../Project/Project.py" line="6777" />
+      <location filename="../Project/Project.py" line="6724" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>Для текущего проекта не определён главный сценарий. Отмена</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6735" />
-      <source>Code Coverage</source>
-      <translation>Покрытие кода</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="6736" />
+      <source>Code Coverage</source>
+      <translation>Покрытие кода</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation>Пожалуйста, выберите файл покрытия</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6789" />
+      <location filename="../Project/Project.py" line="6790" />
       <source>Please select a profile file</source>
       <translation>Пожалуйста, выберите файл профиля</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6841" />
+      <location filename="../Project/Project.py" line="6842" />
       <source>Include module names?</source>
       <translation>Включать имена модулей?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6954" />
+      <location filename="../Project/Project.py" line="6955" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;PKGLIST&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7009" />
+      <location filename="../Project/Project.py" line="7010" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно создать файл &lt;b&gt;PKGLIST&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7306" />
-      <location filename="../Project/Project.py" line="7262" />
-      <location filename="../Project/Project.py" line="7212" />
-      <location filename="../Project/Project.py" line="7201" />
-      <location filename="../Project/Project.py" line="7183" />
-      <location filename="../Project/Project.py" line="7150" />
-      <location filename="../Project/Project.py" line="7120" />
-      <location filename="../Project/Project.py" line="7092" />
-      <location filename="../Project/Project.py" line="7062" />
-      <location filename="../Project/Project.py" line="7047" />
-      <location filename="../Project/Project.py" line="7030" />
+      <location filename="../Project/Project.py" line="7321" />
+      <location filename="../Project/Project.py" line="7277" />
+      <location filename="../Project/Project.py" line="7227" />
+      <location filename="../Project/Project.py" line="7216" />
+      <location filename="../Project/Project.py" line="7198" />
+      <location filename="../Project/Project.py" line="7151" />
+      <location filename="../Project/Project.py" line="7121" />
+      <location filename="../Project/Project.py" line="7093" />
+      <location filename="../Project/Project.py" line="7063" />
+      <location filename="../Project/Project.py" line="7048" />
+      <location filename="../Project/Project.py" line="7031" />
       <source>Create Plugin Archive</source>
       <translation>Создать архив плагина</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7031" />
+      <location filename="../Project/Project.py" line="7032" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation>Для текущего проекта не определён главный сценарий. Отмена...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7048" />
+      <location filename="../Project/Project.py" line="7049" />
       <source>Select package lists:</source>
       <translation>Выбор списков пакета:</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7063" />
+      <location filename="../Project/Project.py" line="7064" />
       <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файлы со списком пакета (PKGLIST*) не доступны или не выбраны. Отмена...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7071" />
-      <source>Creating plugin archives...</source>
-      <translation>Создание архивов плагина...</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="7072" />
+      <source>Creating plugin archives...</source>
+      <translation>Создание архивов плагина...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7073" />
       <source>Abort</source>
       <translation>Прервать</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7075" />
+      <location filename="../Project/Project.py" line="7076" />
       <source>%v/%m Archives</source>
       <translation>%v из %m архивов</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7093" />
+      <location filename="../Project/Project.py" line="7094" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно прочитать файл &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7121" />
+      <location filename="../Project/Project.py" line="7122" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; пока не готов.&lt;/p&gt;&lt;p&gt;Пожалуйста переработайте его и удалите строки '; initial_list' из его заголовка.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7151" />
+      <location filename="../Project/Project.py" line="7152" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно создать архив плагина &lt;b&gt;{0}&lt;/b&gt; eric.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7184" />
+      <location filename="../Project/Project.py" line="7199" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно сохранить файл &lt;b&gt;{0}&lt;/b&gt; в архиве. Игнорируем его.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7217" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файлы архива плагина eric были созданы с ошибками.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7213" />
+      <location filename="../Project/Project.py" line="7228" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файлы архива плагина eric созданы успешно.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7263" />
+      <location filename="../Project/Project.py" line="7278" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно прочитать файл плагина &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7307" />
+      <location filename="../Project/Project.py" line="7322" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно прочитать файл плагина &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7399" />
+      <location filename="../Project/Project.py" line="7414" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation>'Make' не поддерживает для удаленных проектов. Отмена...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7447" />
+      <location filename="../Project/Project.py" line="7462" />
       <source>The make process did not start.</source>
       <translation>Make-процесс не был запущен.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7493" />
+      <location filename="../Project/Project.py" line="7508" />
       <source>The make process crashed.</source>
       <translation>Make-процесс разрушен.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7501" />
+      <location filename="../Project/Project.py" line="7516" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Существуют изменения, которые требуют конфигурации make-цели &lt;b&gt;{0}&lt;/b&gt; для ее пересборки.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7506" />
+      <location filename="../Project/Project.py" line="7521" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Существуют изменения, которые требуют make-цель по умолчанию для ее пересборки.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7522" />
+      <location filename="../Project/Project.py" line="7537" />
       <source>The makefile contains errors.</source>
       <translation>Makefile содержит ошибки.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7960" />
+      <location filename="../Project/Project.py" line="7975" />
       <source>Interpreter Missing</source>
       <translation>Отсутствует интерпретатор</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7961" />
+      <location filename="../Project/Project.py" line="7976" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation>Сконфигурированный интерпретатор встроенной среды окружения больше не существует. Следует ли обновить среду?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8042" />
+      <location filename="../Project/Project.py" line="8057" />
       <source>Open Remote Project</source>
       <translation>Открыть удаленный проект</translation>
     </message>
     <message>
+      <location filename="../Project/Project.py" line="8088" />
       <location filename="../Project/Project.py" line="8073" />
-      <location filename="../Project/Project.py" line="8058" />
       <source>Save Remote Project</source>
       <translation>Сохранить удаленный проект</translation>
     </message>
@@ -93682,37 +93697,37 @@
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; не является файлом&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8601" />
+      <location filename="../UI/UserInterface.py" line="8605" />
       <source>Upgrade available</source>
       <translation>Доступно обновление</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8602" />
+      <location filename="../UI/UserInterface.py" line="8606" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Новая версия пакета &lt;b&gt;eric-ide&lt;/b&gt; доступна по адресу &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt; Установлено: {1}&lt;br/&gt;Доступно: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Должен ли &lt;b&gt;eric-ide&lt;/b&gt; быть обновлен?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8647" />
+      <location filename="../UI/UserInterface.py" line="8651" />
       <source>First time usage</source>
       <translation>Первое использование</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8648" />
+      <location filename="../UI/UserInterface.py" line="8652" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation>Настройка eric ещё не выполнена. Сейчас будет запущен диалог конфигурации.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8670" />
+      <location filename="../UI/UserInterface.py" line="8674" />
       <source>Select Workspace Directory</source>
       <translation>Выбор директории рабочей области</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8838" />
+      <location filename="../UI/UserInterface.py" line="8842" />
       <source>Unsaved Data Detected</source>
       <translation>Обнаружены несохраненные данные</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8839" />
+      <location filename="../UI/UserInterface.py" line="8843" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation>Некоторые редакторы содержат несохраненные данные. Должны ли они быть сохранены?</translation>
     </message>
--- a/src/eric7/i18n/eric7_tr.ts	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/i18n/eric7_tr.ts	Fri Nov 01 18:12:30 2024 +0100
@@ -2016,47 +2016,47 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="281" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="284" />
       <source>Formatting Failure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="282" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="285" />
       <source>&lt;p&gt;Formatting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="545" />
-      <source>would reformat</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../CodeFormatting/BlackFormattingDialog.py" line="548" />
+      <source>would reformat</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="551" />
       <source>reformatted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="553" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="556" />
       <source>unchanged</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="557" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="560" />
       <source>unmodified</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="561" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="564" />
       <source>ignored</source>
       <translation type="unfinished">yoksayıldı</translation>
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="565" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="568" />
       <source>failed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="570" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="573" />
       <source>invalid status ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -4412,16 +4412,16 @@
   <context>
     <name>CircuitPythonUpdaterInterface</name>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="600" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="592" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="579" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="546" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="516" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="506" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="486" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="469" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="460" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="446" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="615" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="607" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="594" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="561" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="531" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="521" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="501" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="484" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="475" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="54" />
       <source>Install Modules</source>
       <translation type="unfinished" />
@@ -4457,10 +4457,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="385" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="375" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="365" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="346" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="396" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="355" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="95" />
       <source>Update Modules</source>
       <translation type="unfinished" />
@@ -4481,8 +4481,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="642" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="621" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="658" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="636" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="108" />
       <source>Uninstall Modules</source>
       <translation type="unfinished" />
@@ -4503,25 +4503,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="249" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="236" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="225" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="213" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="201" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="188" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="251" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="238" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="227" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="215" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="203" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="190" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="118" />
       <source>Add Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="284" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="269" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="287" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="271" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="119" />
       <source>Remove Bundles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="671" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="689" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="121" />
       <source>Show Local Cache Path</source>
       <translation type="unfinished" />
@@ -4542,132 +4542,132 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="189" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="191" />
       <source>Enter Bundle by 'User/Repo' Github String:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="202" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="204" />
       <source>&lt;p&gt;The bundle &lt;b&gt;{0}&lt;/b&gt; is already in the list.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="214" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="216" />
       <source>&lt;p&gt;The bundle string is invalid, expecting github URL or 'user/repository' string.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="226" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="228" />
       <source>&lt;p&gt;The bundle string is invalid. The repository doesn't exist (error code 404).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="237" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="239" />
       <source>&lt;p&gt;The bundle string is invalid. Is the repository a valid circup bundle?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="250" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="252" />
       <source>&lt;p&gt;Added bundle &lt;b&gt;{0}&lt;/b&gt; ({1}).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="270" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="272" />
       <source>Select the bundles to be removed:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="285" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="288" />
       <source>&lt;p&gt;These bundles were removed from the local bundles list.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="347" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="356" />
       <source>All modules are already up-to-date.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="366" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="377" />
       <source>&lt;p&gt;There was an error updating &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="387" />
       <source>&lt;p&gt;These modules were updated on the connected device.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="397" />
       <source>No modules could be updated.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="448" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="463" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation type="unfinished">Metin Dosyaları (*.txt);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="476" />
       <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not contain valid modules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="470" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="485" />
       <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="488" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="503" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished">Python Dosyaları (*.py);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="507" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="522" />
       <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not contain valid import statements or does not import external modules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="517" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="532" />
       <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="547" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="562" />
       <source>&lt;p&gt;Ready to install these modules?{0}{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="552" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="567" />
       <source>Dependencies:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="580" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="595" />
       <source>&lt;p&gt;Installation complete. These modules were installed successfully.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="593" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="608" />
       <source>&lt;p&gt;Installation complete. No modules were installed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="601" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="616" />
       <source>&lt;p&gt;No modules installation is required.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="622" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="637" />
       <source>Select the modules/packages to be uninstalled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="643" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="659" />
       <source>&lt;p&gt;These modules/packages were uninstalled from the connected device.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="672" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="690" />
       <source>&lt;p&gt;&lt;b&gt;circup&lt;/b&gt; stores the downloaded CircuitPython bundles in this directory.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -4675,44 +4675,44 @@
   <context>
     <name>CircupFunctions</name>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="75" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="84" />
       <source>Find Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="76" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="85" />
       <source>&lt;p&gt;There was an error: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="148" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="109" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="157" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="118" />
       <source>Download Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="110" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="119" />
       <source>&lt;p&gt;There was a problem downloading the bundle. Please try again in a moment.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="149" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="158" />
       <source>&lt;p&gt;Missing file &lt;b&gt;boot_out.txt&lt;/b&gt; on the device: wrong path or drive corrupted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="243" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="232" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="252" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="241" />
       <source>Install Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="233" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="242" />
       <source>&lt;p&gt;The compiled version of module &lt;b&gt;{0}&lt;/b&gt; cannot be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="244" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="253" />
       <source>&lt;p&gt;The module name &lt;b&gt;{0}&lt;/b&gt; is not known.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -4836,17 +4836,17 @@
   <context>
     <name>Closehead</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="52" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54" />
       <source>Revision &lt;{0}&gt; closed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="56" />
       <source>Revisions &lt;{0}&gt; closed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="61" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="63" />
       <source>Closing Heads</source>
       <translation type="unfinished" />
     </message>
@@ -6172,19 +6172,19 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1650" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1609" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1652" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1611" />
       <source>{0} - {1}</source>
       <comment>issue code, message</comment>
       <translation type="unfinished">{0} - {1}</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2995" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2997" />
       <source>Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2996" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2998" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
@@ -7451,7 +7451,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="713" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="715" />
       <location filename="../CondaInterface/CondaPackagesWidget.py" line="181" />
       <source>Delete Environment</source>
       <translation type="unfinished" />
@@ -7498,22 +7498,22 @@
       <translation type="unfinished">Metin Dosyaları (*.txt);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="686" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="687" />
       <source>Create Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="714" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="716" />
       <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="739" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="741" />
       <source>Edit Configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="740" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="742" />
       <source>The configuration file "{0}" does not exist or is not writable.</source>
       <translation type="unfinished" />
     </message>
@@ -8857,30 +8857,30 @@
   <context>
     <name>CycloneDX</name>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="190" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="182" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="151" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="115" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="192" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="184" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="153" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="117" />
       <source>CycloneDX - SBOM Creation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="118" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="120" />
       <source>&lt;p&gt;The configured input file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="152" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="154" />
       <source>&lt;p&gt;Some of the dependencies do not have pinned version numbers.&lt;ul&gt;{0}&lt;/ul&gt;The above listed packages will NOT be included in the generated CycloneDX SBOM file as version is a mandatory field.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="183" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="185" />
       <source>&lt;p&gt;The SBOM data was written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="191" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="193" />
       <source>&lt;p&gt;The SBOM file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9222,23 +9222,23 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1355" />
-      <location filename="../Debugger/DebugServer.py" line="1272" />
-      <location filename="../Debugger/DebugServer.py" line="1188" />
-      <location filename="../Debugger/DebugServer.py" line="1098" />
+      <location filename="../Debugger/DebugServer.py" line="1358" />
+      <location filename="../Debugger/DebugServer.py" line="1275" />
+      <location filename="../Debugger/DebugServer.py" line="1191" />
+      <location filename="../Debugger/DebugServer.py" line="1101" />
       <source>Start Debugger</source>
       <translation type="unfinished">Hata Ayıklayıcıyı Başlat</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1356" />
-      <location filename="../Debugger/DebugServer.py" line="1273" />
-      <location filename="../Debugger/DebugServer.py" line="1189" />
-      <location filename="../Debugger/DebugServer.py" line="1099" />
+      <location filename="../Debugger/DebugServer.py" line="1359" />
+      <location filename="../Debugger/DebugServer.py" line="1276" />
+      <location filename="../Debugger/DebugServer.py" line="1192" />
+      <location filename="../Debugger/DebugServer.py" line="1102" />
       <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1945" />
+      <location filename="../Debugger/DebugServer.py" line="1948" />
       <source>
 Not connected
 </source>
@@ -9247,35 +9247,35 @@
 </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2110" />
+      <location filename="../Debugger/DebugServer.py" line="2113" />
       <source>Passive debug connection received
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2119" />
+      <location filename="../Debugger/DebugServer.py" line="2122" />
       <source>Passive debug connection received while not in passive mode.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2125" />
+      <location filename="../Debugger/DebugServer.py" line="2128" />
       <source>Debug Client Connection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2126" />
+      <location filename="../Debugger/DebugServer.py" line="2129" />
       <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2141" />
+      <location filename="../Debugger/DebugServer.py" line="2144" />
       <source>Passive debug connection closed
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2272" />
+      <location filename="../Debugger/DebugServer.py" line="2275" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9288,7 +9288,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2374" />
+      <location filename="../Debugger/DebugUI.py" line="2380" />
       <location filename="../Debugger/DebugUI.py" line="234" />
       <source>Run Script</source>
       <translation>Betiği Çalıştır</translation>
@@ -9309,8 +9309,8 @@
       <translation>&lt;b&gt;Betiği Çalıştır&lt;/b&gt;&lt;p&gt; KOmut satırı argumanlarını ayarla ve hata ayıklayıcının dışında çalıştır. Eğer dosyada kaydedilmemiş değişiklikler varsa önce kaydedilmelidir.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="2386" />
       <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="2374" />
       <location filename="../Debugger/DebugUI.py" line="255" />
       <source>Run Project</source>
       <translation>Projeyi Çalıştır</translation>
@@ -9411,7 +9411,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2567" />
+      <location filename="../Debugger/DebugUI.py" line="2573" />
       <location filename="../Debugger/DebugUI.py" line="365" />
       <source>Debug Script</source>
       <translation>Betik Hata Ayıklama</translation>
@@ -9432,8 +9432,8 @@
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="2579" />
       <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="2567" />
       <location filename="../Debugger/DebugUI.py" line="387" />
       <source>Debug Project</source>
       <translation>Proje Hata Ayıklama</translation>
@@ -9454,7 +9454,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2889" />
+      <location filename="../Debugger/DebugUI.py" line="2895" />
       <location filename="../Debugger/DebugUI.py" line="411" />
       <location filename="../Debugger/DebugUI.py" line="409" />
       <source>Restart</source>
@@ -9893,66 +9893,66 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1775" />
+      <location filename="../Debugger/DebugUI.py" line="1779" />
       <source>Watch Expression Error</source>
       <translation>Gözetleme İfade hatası</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1776" />
+      <location filename="../Debugger/DebugUI.py" line="1780" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1804" />
+      <location filename="../Debugger/DebugUI.py" line="1810" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1809" />
-      <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="1815" />
+      <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="1821" />
       <source>Watch expression already exists</source>
       <translation>Hali hazırda gözetleme ifadesi var</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1980" />
-      <location filename="../Debugger/DebugUI.py" line="1971" />
+      <location filename="../Debugger/DebugUI.py" line="1986" />
+      <location filename="../Debugger/DebugUI.py" line="1977" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1973" />
+      <location filename="../Debugger/DebugUI.py" line="1979" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2381" />
-      <location filename="../Debugger/DebugUI.py" line="2183" />
-      <location filename="../Debugger/DebugUI.py" line="1981" />
+      <location filename="../Debugger/DebugUI.py" line="2387" />
+      <location filename="../Debugger/DebugUI.py" line="2189" />
+      <location filename="../Debugger/DebugUI.py" line="1987" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>Bugeçerli projede tanımlanan ana betik değil. Durduruluyor</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2182" />
-      <location filename="../Debugger/DebugUI.py" line="2173" />
+      <location filename="../Debugger/DebugUI.py" line="2188" />
+      <location filename="../Debugger/DebugUI.py" line="2179" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2175" />
+      <location filename="../Debugger/DebugUI.py" line="2181" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2574" />
+      <location filename="../Debugger/DebugUI.py" line="2580" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3246" />
+      <location filename="../Debugger/DebugUI.py" line="3252" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -10115,26 +10115,26 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="325" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="312" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="336" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="323" />
       <source>Add allowed host</source>
       <translation>İzin verilen hostlara ekle</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="349" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="313" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="360" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="324" />
       <source>Enter the IP address of an allowed host</source>
       <translation>İzin verilen hosların IP numaralrını giriniz</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="363" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="326" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="374" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="337" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="362" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="348" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="373" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="359" />
       <source>Edit allowed host</source>
       <translation>İzin verilen Hostları düzenle</translation>
     </message>
@@ -10231,13 +10231,8 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debugger Type:</source>
-      <translation>Hata Ayıklayıcı Tipi:</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Select the debugger type of the backend</source>
-      <translation>Arkanın hata ayıklayıcı tipini seçiniz</translation>
+      <source>Debug Server Port:</source>
+      <translation>Hata Ayıklama Sunucu Portu:</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
@@ -10253,8 +10248,28 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debug Server Port:</source>
-      <translation>Hata Ayıklama Sunucu Portu:</translation>
+      <source>Debugger Type:</source>
+      <translation>Hata Ayıklayıcı Tipi:</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select the debugger type of the backend</source>
+      <translation>Arkanın hata ayıklayıcı tipini seçiniz</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select to not stop the debugger at the first executable line.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>&lt;b&gt;Don't stop at first line&lt;/b&gt;&lt;p&gt;This prevents the debugger from stopping at the first executable line.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Don't stop at first line</source>
+      <translation type="unfinished">İlksatıra kadar durma</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
@@ -10602,46 +10617,46 @@
   <context>
     <name>DebuggerInterfacePython</name>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="728" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="705" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="609" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="563" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="445" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="422" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="345" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="321" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="258" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="747" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="724" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="628" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="582" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="464" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="441" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="364" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="340" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="277" />
       <source>Start Debugger</source>
       <translation type="unfinished">Hata Ayıklayıcıyı Başlat</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="564" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="259" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="583" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="278" />
       <source>&lt;p&gt;No suitable Python3 environment configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="729" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="706" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="610" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="446" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="423" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="322" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="748" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="725" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="629" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="465" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="442" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="341" />
       <source>&lt;p&gt;The debugger backend could not be started.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Hata ayıklayıcıbaşlatılamadı.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="346" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="365" />
       <source>&lt;p&gt;Remote debugging is configured but no command for remote login was given.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1691" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1692" />
       <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;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -11649,8 +11664,8 @@
   <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="450" />
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="420" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421" />
       <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.ui" line="0" />
       <source>.desktop Wizard</source>
       <translation type="unfinished" />
@@ -12007,8 +12022,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451" />
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="452" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="422" />
       <source>Only one of 'Only Show In' or  'Not Show In' allowed.</source>
       <translation type="unfinished" />
     </message>
@@ -15161,12 +15176,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="287" />
+      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288" />
       <source>Tab and Indent Override</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288" />
+      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="289" />
       <source>Shall the selected entries really be removed?</source>
       <translation type="unfinished" />
     </message>
@@ -15501,27 +15516,27 @@
       <translation>Vurgulama stillerini içe aktar</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="803" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="805" />
       <source>Delete Sub-Style</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="804" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="806" />
       <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="840" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="842" />
       <source>{0} - Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="867" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="869" />
       <source>Reset Sub-Styles to Default</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="868" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="870" />
       <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -21830,14 +21845,14 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="395" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="193" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1775" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1759" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1782" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1766" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="197" />
       <source>Erase Flash</source>
       <translation type="unfinished" />
@@ -21848,7 +21863,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1864" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1877" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="204" />
       <source>Flash Additional Firmware</source>
       <translation type="unfinished" />
@@ -21860,25 +21875,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="367" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="368" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="211" />
       <source>Restore Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="465" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="467" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="215" />
       <source>Show Chip ID</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="488" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="491" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="218" />
       <source>Show Flash ID</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="511" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="515" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="221" />
       <source>Show MAC Address</source>
       <translation type="unfinished" />
@@ -21899,139 +21914,139 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1863" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1820" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="366" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1876" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1830" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="367" />
       <source>'esptool write_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="396" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="425" />
       <source>unknown</source>
       <translation type="unfinished">bilinmeyen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="434" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="436" />
       <source>&lt;h4&gt;{0} Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="442" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="444" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="448" />
       <source>{0} Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="466" />
       <source>'esptool chip_id' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="487" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="490" />
       <source>'esptool flash_id' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="510" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="514" />
       <source>'esptool read_mac' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="641" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="646" />
       <source>Set Country</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="642" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="647" />
       <source>Reset Country</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="965" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="970" />
       <source>Error saving credentials: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="976" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="981" />
       <source>Error saving auto-connect script: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="980" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="985" />
       <source>Error modifying 'boot.py': {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1017" />
       <source>Error deleting credentials: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1096" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1101" />
       <source>unknown ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1475" />
-      <source>Active</source>
-      <translation type="unfinished">Aktif</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1476" />
-      <source>Name</source>
-      <translation type="unfinished">Adı</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1477" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/EspDevices.py" line="1480" />
-      <source>Address Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1481" />
-      <source>Public</source>
-      <translation type="unfinished" />
+      <source>Active</source>
+      <translation type="unfinished">Aktif</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/EspDevices.py" line="1481" />
+      <source>Name</source>
+      <translation type="unfinished">Adı</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1482" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1485" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1486" />
+      <source>Public</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1486" />
       <source>Random</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1484" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1489" />
       <source>MTU</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1484" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1489" />
       <source>{0} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1760" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1767" />
       <source>Shall the flash of the selected device really be erased?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1774" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1781" />
       <source>'esptool erase_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1821" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1831" />
       <source>Flash µPy/CPy Firmware</source>
       <translation type="unfinished" />
     </message>
@@ -22039,7 +22054,7 @@
   <context>
     <name>EspFirmwareSelectionDialog</name>
     <message>
-      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="68" />
+      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="77" />
       <source>Firmware Files (*.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -24330,22 +24345,22 @@
   <context>
     <name>FindFileFiltersEditDialog</name>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="109" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="111" />
       <source>Delete Selected Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="110" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="112" />
       <source>Shall the selected filters really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="127" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="129" />
       <source>Default Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="128" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="130" />
       <source>Do you really want to clear the list of defined file filters and replace it with the list of default filters?</source>
       <translation type="unfinished" />
     </message>
@@ -25034,7 +25049,7 @@
   <context>
     <name>FormattingDiffWidget</name>
     <message>
-      <location filename="../CodeFormatting/FormattingDiffWidget.py" line="63" />
+      <location filename="../CodeFormatting/FormattingDiffWidget.py" line="65" />
       <source>There is no difference.</source>
       <translation type="unfinished">Herhangi bir farklılık bulunamadı.</translation>
     </message>
@@ -25134,7 +25149,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1715" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1747" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="219" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -25160,153 +25175,153 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="308" />
       <source>Adding files to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="316" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="321" />
       <source>Initial commit to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="348" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="357" />
       <source>Cloning project from a Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="448" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="460" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="449" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="461" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="518" />
       <source>Committing changes to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="584" />
       <source>Switch</source>
       <translation type="unfinished">Değiştirmek</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="585" />
       <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="597" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="614" />
       <source>Synchronizing with the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="664" />
       <source>Adding files/directories to the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="721" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="743" />
       <source>Removing files/directories from the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="814" />
       <source>Renaming {0}</source>
       <translation type="unfinished">Yenşden adlandırılıyor {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="942" />
       <source>Unstage files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="968" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="957" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="996" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="985" />
       <source>Revert changes</source>
       <translation type="unfinished">Değişiklikleri başa döndür</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="958" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="986" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="969" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="997" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="975" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1003" />
       <source>Reverting changes</source>
       <translation type="unfinished">Değişiklikler eski haline alınıyor</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1028" />
-      <source>Merging</source>
-      <translation type="unfinished">Birleştiriliyor</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1057" />
+      <source>Merging</source>
+      <translation type="unfinished">Birleştiriliyor</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1086" />
       <source>Main branch head</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1285" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1315" />
       <source>Git Command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1396" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1426" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1430" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Esas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1406" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1436" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiketler&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1412" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1442" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branşlar&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1417" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1447" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1422" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1457" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1462" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1437" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1467" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1443" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1473" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -25316,459 +25331,459 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1553" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1554" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halihazırda bulunuyor. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1574" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1621" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1604" />
       <source>Git Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1575" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1605" />
       <source>&lt;p&gt;Copying the directory &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1592" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1622" />
       <source>&lt;p&gt;Copying the file &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2845" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1717" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2920" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1749" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1788" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1775" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1764" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1822" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1809" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1798" />
       <source>Git Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1823" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Dosya &lt;b&gt;{0}&lt;/b&gt; okunamıyor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1842" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1877" />
       <source>Fetching from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1879" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918" />
       <source>Pulling from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1919" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1962" />
       <source>Pushing to a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1948" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1994" />
       <source>Committing failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1974" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2021" />
       <source>Aborting uncommitted/failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2008" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2056" />
       <source>Applying patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2043" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2091" />
       <source>Check patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2046" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2094" />
       <source>Apply patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2130" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2181" />
       <source>Tagging in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2443" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2488" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2510" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2511" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2484" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2578" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2560" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2542" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2486" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2544" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2503" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2561" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2550" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2608" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2597" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2689" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2571" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2753" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2699" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2599" />
       <source>Git Bundle Files (*.bundle);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2580" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2627" />
       <source>List Bundle Heads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2687" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2751" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2697" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2660" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2775" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2746" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2816" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3025" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2861" />
+      <source>Git Bisect ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2919" />
+      <source>Process Generation Error</source>
+      <translation type="unfinished">İşlem Üretecinde Hata</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2965" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2948" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2930" />
+      <source>Create Bisect Replay File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2932" />
+      <source>Git Bisect Replay Files (*.replay)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2949" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2789" />
-      <source>Git Bisect ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2844" />
-      <source>Process Generation Error</source>
-      <translation type="unfinished">İşlem Üretecinde Hata</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2890" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2873" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2855" />
-      <source>Create Bisect Replay File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2857" />
-      <source>Git Bisect Replay Files (*.replay)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2874" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2891" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2966" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2911" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2940" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2913" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3015" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2988" />
       <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3013" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3299" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3121" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3378" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3200" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3181" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3260" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3182" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3261" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3323" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3402" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3384" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3417" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3497" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3442" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3468" />
-      <source>Copy Changesets (Cancel)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3549" />
+      <source>Copy Changesets (Cancel)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3630" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3763" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3844" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3673" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3845" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3802" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3751" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3674" />
+      <source>Select a stash (empty for latest stash):</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3708" />
+      <source>Restore Stash</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3721" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
-      <source>Select a stash (empty for latest stash):</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3669" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3627" />
-      <source>Restore Stash</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3683" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3720" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3801" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3790" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3710" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3735" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3774" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3855" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3775" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3856" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3785" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3866" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3807" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3888" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3889" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3895" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3876" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3958" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3899" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3985" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3921" />
-      <source>Performing Repository Housekeeping</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3963" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3965" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3970" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3976" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3982" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3987" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3993" />
-      <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3999" />
-      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011" />
+      <source>Performing Repository Housekeeping</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4054" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4056" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4061" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4067" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4073" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4078" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4084" />
+      <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4090" />
+      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4095" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4102" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4080" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4172" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4120" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4186" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4278" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4187" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4279" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4200" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4292" />
       <source>All</source>
       <translation type="unfinished">Hepsi</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4204" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4296" />
       <source>Submodule Path</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4297" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4254" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4347" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4382" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4357" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4318" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4453" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4414" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4387" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4484" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4441" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4539" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -32436,101 +32451,101 @@
       <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="519" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="520" />
       <source>Add Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="537" />
-      <source>Lock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538" />
-      <source>Enter a reason for the lock:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="556" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538" />
+      <source>Lock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="539" />
+      <source>Enter a reason for the lock:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="557" />
       <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="580" />
-      <source>Unlock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="581" />
+      <source>Unlock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="582" />
       <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="616" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="599" />
-      <source>Move Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600" />
-      <source>Enter the new path for the worktree:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600" />
+      <source>Move Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="601" />
+      <source>Enter the new path for the worktree:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="618" />
       <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="637" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="638" />
       <source>Remove Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="640" />
       <source>Remove Worktree Forcefully</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="645" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="646" />
       <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="672" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="673" />
       <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="727" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="703" />
-      <source>Prune Worktree Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704" />
-      <source>Do you really want to prune the information of these worktrees?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="728" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704" />
+      <source>Prune Worktree Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="705" />
+      <source>Do you really want to prune the information of these worktrees?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="729" />
       <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="765" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="754" />
-      <source>Repair Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755" />
-      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755" />
+      <source>Repair Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="756" />
+      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="767" />
       <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -32647,12 +32662,12 @@
   <context>
     <name>Gpg</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="73" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="76" />
       <source>Verify Signatures</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="124" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="128" />
       <source>Sign Revision</source>
       <translation type="unfinished" />
     </message>
@@ -35246,456 +35261,456 @@
   <context>
     <name>Hg</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="300" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="303" />
       <source>Create project repository</source>
       <translation>Bilgi havuzu projesi oluştur</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="301" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="304" />
       <source>The project repository could not be created.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="334" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="338" />
       <source>Creating Mercurial repository</source>
       <translation>Mercurial kaynak havauzu oluşturuluyor</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="353" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="359" />
       <source>Initial commit to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="405" />
       <source>Cloning project from a Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="503" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="516" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="504" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="517" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="566" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="580" />
       <source>Committing changes to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="661" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="679" />
       <source>Synchronizing with the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="692" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="713" />
       <source>Adding files/directories to the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="751" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="774" />
       <source>Removing files/directories from the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="829" />
       <source>Renaming {0}</source>
       <translation>Yenşden adlandırılıyor {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="935" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="964" />
       <source>Tagging in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="981" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="970" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1011" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1000" />
       <source>Revert changes</source>
       <translation type="unfinished">Değişiklikleri başa döndür</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="971" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1001" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="982" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1012" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="988" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018" />
       <source>Reverting changes</source>
       <translation>Değişiklikler eski haline alınıyor</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1033" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064" />
       <source>Merging</source>
       <translation>Birleştiriliyor</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1072" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1103" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1095" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1065" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1096" />
       <source>Do you really want to re-merge these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1073" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1104" />
       <source>Do you really want to re-merge the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1076" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1108" />
       <source>Re-Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1098" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1131" />
       <source>Current branch tip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1280" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1314" />
       <source>Mercurial command</source>
       <translation>Mercurial komut</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1457" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1492" />
       <source>Copying {0}</source>
       <translation>Kopyalanıyor {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1720" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1699" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1746" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737" />
       <source>Mercurial Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1721" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1759" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Dosya &lt;b&gt;{0}&lt;/b&gt; okunamıyor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2391" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2380" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1797" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2457" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2446" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1835" />
       <source>Apply changegroups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1800" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1838" />
       <source>Pulling from a remote Mercurial repository</source>
       <translation>Uzak Mercurial kaynak havuzundan çekiliyor</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1845" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1884" />
       <source>Pushing to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1985" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2027" />
       <source>Marking as 'unresolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1987" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2029" />
       <source>Marking as 'resolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2009" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2051" />
       <source>Aborting uncommitted merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2032" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2075" />
       <source>Creating branch in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2040" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2086" />
       <source>Created new branch &lt;{0}&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2095" />
       <source>Showing current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2136" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2184" />
       <source>Verifying the integrity of the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2149" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2200" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2160" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2215" />
       <source>Showing aliases for remote repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2171" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230" />
       <source>Recovering from interrupted transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2182" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2245" />
       <source>Identifying project directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2227" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2291" />
       <source>Create .hgignore file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2292" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halihazırda bulunuyor. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2329" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2303" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2285" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2351" />
       <source>Create changegroup</source>
       <translation>Değişimgrubu oluştur</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2287" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2353" />
       <source>Mercurial Changegroup Files (*.hg)</source>
       <translation>Mercurial Değiştirme grubu Dosyaları (*.hg)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2304" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370" />
       <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2409" />
       <source>Preview changegroup</source>
       <translation>Değişimgrubu öngörünümü</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2372" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2345" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2438" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2411" />
       <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
       <translation>Mercurial Değişimgrubu Dosyaları (*.hg);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2381" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2447" />
       <source>Shall the working directory be updated?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2413" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2479" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2433" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2501" />
       <source>Mercurial Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2527" />
       <source>Removing files from the Mercurial repository only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2500" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2481" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2576" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2557" />
       <source>Backing out changeset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2482" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2558" />
       <source>No revision given. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2516" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2511" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2593" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2587" />
       <source>Rollback last transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2512" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2588" />
       <source>Are you sure you want to rollback the last transaction?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2579" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2657" />
       <source>Import Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2627" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2707" />
       <source>Export Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2749" />
       <source>Change Phase</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2724" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2804" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2843" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2853" />
       <source>Copy Changesets (Stop)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2783" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2863" />
       <source>Copy Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2806" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2887" />
       <source>Create Unversioned Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2820" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2902" />
       <source>Delete All Backups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2821" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2903" />
       <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2912" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2892" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2881" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2994" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2963" />
       <source>Add Sub-repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2951" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2882" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3033" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2964" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2893" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2975" />
       <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2969" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2913" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3051" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2995" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2968" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2950" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2936" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3050" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3032" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3018" />
       <source>Remove Sub-repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2937" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3019" />
       <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3056" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3296" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3138" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3057" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3139" />
       <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3207" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3297" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3329" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3420" />
       <source>Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3437" />
       <source>Delete Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3347" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3438" />
       <source>Select the bookmark to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3449" />
       <source>Delete Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3382" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3476" />
       <source>Rename Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3421" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3518" />
       <source>Move Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3502" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3600" />
       <source>Pull Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3503" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3601" />
       <source>Select the bookmark to be pulled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3515" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3613" />
       <source>Pulling bookmark from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3641" />
       <source>Push Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3542" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3642" />
       <source>Select the bookmark to be push:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3657" />
       <source>Pushing bookmark to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
@@ -43239,22 +43254,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="644" />
       <source>Delete Host Minimum Protocol</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="643" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="645" />
       <source>&lt;p&gt;Shall the minimum protocol entry for host &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="708" />
       <source>Edit User Configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="707" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="709" />
       <source>You will loose all changes made in this dialog. Shall the data be saved first?</source>
       <translation type="unfinished" />
     </message>
@@ -43374,22 +43389,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="79" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="108" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="164" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -49027,52 +49042,52 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="300" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="303" />
       <source>Imports Sorting Failure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="301" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="304" />
       <source>&lt;p&gt;Imports sorting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="352" />
-      <source>would resort</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../CodeFormatting/IsortFormattingDialog.py" line="355" />
+      <source>would resort</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="358" />
       <source>resorted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="360" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="363" />
       <source>unchanged</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="364" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="367" />
       <source>skipped</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="368" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="371" />
       <source>failed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="373" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="376" />
       <source>error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="374" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="377" />
       <source>Unsupported 'isort' action ({0}) given.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="381" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="384" />
       <source>invalid status ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -49209,7 +49224,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="682" />
+      <location filename="../JediInterface/JediServer.py" line="683" />
       <location filename="../JediInterface/JediServer.py" line="522" />
       <source>Rename Variable</source>
       <translation type="unfinished" />
@@ -49240,27 +49255,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="690" />
+      <location filename="../JediInterface/JediServer.py" line="692" />
       <source>Refactoring</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="691" />
+      <location filename="../JediInterface/JediServer.py" line="693" />
       <source>&lt;p&gt;The refactoring could not be performed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="749" />
+      <location filename="../JediInterface/JediServer.py" line="751" />
       <source>Apply Refactoring</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="750" />
+      <location filename="../JediInterface/JediServer.py" line="752" />
       <source>&lt;p&gt;The refactoring could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="786" />
+      <location filename="../JediInterface/JediServer.py" line="788" />
       <source>The data received from the Jedi server could not be decoded. Please report this issue with the received data to the eric bugs email address.
 Error: {0}
 Data:
@@ -49269,7 +49284,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="796" />
+      <location filename="../JediInterface/JediServer.py" line="798" />
       <source>An exception happened in the Jedi client. Please report it to the eric bugs email address.
 Exception: {0}
 Value: {1}
@@ -49278,25 +49293,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="838" />
+      <location filename="../JediInterface/JediServer.py" line="840" />
       <source>The jedi and/or parso library is not installed.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="843" />
+      <location filename="../JediInterface/JediServer.py" line="845" />
       <source>'{0}' is not supported because the configured interpreter could not be started.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="851" />
+      <location filename="../JediInterface/JediServer.py" line="853" />
       <source>'{0}' is not supported because no suitable interpreter is configured.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="953" />
+      <location filename="../JediInterface/JediServer.py" line="955" />
       <source>Jedi</source>
       <translation type="unfinished" />
     </message>
@@ -49304,37 +49319,37 @@
   <context>
     <name>Largefiles</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="72" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="75" />
       <source>Convert Project - Converting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="88" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="92" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="89" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="93" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="100" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="104" />
       <source>Convert Project - Extracting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="145" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="150" />
       <source>Adding files to the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="174" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="182" />
       <source>Pulling large files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="196" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="205" />
       <source>Verifying the integrity of large files</source>
       <translation type="unfinished" />
     </message>
@@ -50647,13 +50662,13 @@
     <name>Lexers</name>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="412" />
-      <location filename="../Preferences/__init__.py" line="596" />
+      <location filename="../Preferences/__init__.py" line="597" />
       <source>Python Files (*.py *.py3)</source>
       <translation type="unfinished">Python Dosyaları (*.py *.py3)</translation>
     </message>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="505" />
-      <location filename="../Preferences/__init__.py" line="599" />
+      <location filename="../Preferences/__init__.py" line="600" />
       <source>Python3 Files (*.py)</source>
       <translation>Python Dosyaları (*.py3)</translation>
     </message>
@@ -52482,18 +52497,18 @@
   <context>
     <name>MicroPythonDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="356" />
+      <location filename="../MicroPython/Devices/__init__.py" line="369" />
       <source>Generic MicroPython Board</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="403" />
+      <location filename="../MicroPython/Devices/__init__.py" line="416" />
       <source>RP2040/RP2350 based</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="566" />
-      <location filename="../MicroPython/Devices/__init__.py" line="555" />
+      <location filename="../MicroPython/Devices/__init__.py" line="579" />
+      <location filename="../MicroPython/Devices/__init__.py" line="568" />
       <source>Unknown Device</source>
       <translation type="unfinished" />
     </message>
@@ -53890,343 +53905,343 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="737" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="724" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="740" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="725" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="728" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="735" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1193" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1185" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="735" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1196" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1188" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="738" />
       <source>unknown</source>
       <translation type="unfinished">bilinmeyen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="796" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="787" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="799" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
       <source>Run Script</source>
       <translation type="unfinished">Betiği Çalıştır</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="779" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
       <source>There is no editor open. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="788" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="797" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="800" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="836" />
       <source>Start Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="834" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="837" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="849" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="852" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="866" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="869" />
       <source>Unsaved Chart Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="867" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="870" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="915" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="918" />
       <source>Start File Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="916" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="919" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="939" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1012" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1015" />
       <source>Downloads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1059" />
-      <source>Show Version</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1062" />
-      <source>Show Implementation</source>
+      <source>Show Version</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
+      <source>Show Implementation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Board Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1268" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1271" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1073" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1073" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Show Device Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
-      <source>Show Local Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <source>Show Local Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1082" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1085" />
       <source>Show Builtin Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1094" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1086" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1689" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1097" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1089" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1723" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1720" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1090" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1725" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1093" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1497" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1501" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1103" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1523" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1514" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1104" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1527" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1518" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1107" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1125" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1128" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1132" />
-      <source>Show Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1135" />
+      <source>Show Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Convert To UF2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1136" />
-      <source>Flash UF2 Device</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1139" />
-      <source>Manage Unknown Devices</source>
+      <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
-      <source>Ignored Serial Devices</source>
+      <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
-      <source>Configure</source>
-      <translation type="unfinished">Yapılandırma</translation>
+      <source>Ignored Serial Devices</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
+      <source>Configure</source>
+      <translation type="unfinished">Yapılandırma</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Quit</source>
       <translation type="unfinished">Çık</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1157" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1160" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1168" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1164" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1171" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1167" />
       <source>Device Version Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1172" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1202" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1215" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1206" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1218" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1209" />
       <source>Device Implementation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1207" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1210" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1216" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1219" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1272" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1299" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1302" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1315" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1318" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1327" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
       <source>Local Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1369" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1352" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1372" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1355" />
       <source>Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1353" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1356" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1370" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1373" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1394" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1397" />
       <source>Error handling device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1395" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1398" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1437" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1440" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1463" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1466" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished">Python Dosyaları (*.py);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1473" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1476" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1483" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1486" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1515" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1519" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1607" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1611" />
       <source>Add Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1608" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1657" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1709" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1714" />
       <source>Package '{0}' was installed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1724" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1729" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -56108,237 +56123,237 @@
   <context>
     <name>MultiProject</name>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="338" />
-      <location filename="../MultiProject/MultiProject.py" line="324" />
+      <location filename="../MultiProject/MultiProject.py" line="341" />
+      <location filename="../MultiProject/MultiProject.py" line="327" />
       <source>Copy Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="325" />
+      <location filename="../MultiProject/MultiProject.py" line="328" />
       <source>Enter directory for the new project (must not exist already):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="339" />
+      <location filename="../MultiProject/MultiProject.py" line="342" />
       <source>&lt;p&gt;The source project &lt;b&gt;{0}&lt;/b&gt; could not be copied to its destination &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="349" />
+      <location filename="../MultiProject/MultiProject.py" line="352" />
       <source>{0} - Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="499" />
+      <location filename="../MultiProject/MultiProject.py" line="502" />
       <source>Open Multi Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="556" />
-      <location filename="../MultiProject/MultiProject.py" line="546" />
-      <location filename="../MultiProject/MultiProject.py" line="501" />
+      <location filename="../MultiProject/MultiProject.py" line="559" />
+      <location filename="../MultiProject/MultiProject.py" line="549" />
+      <location filename="../MultiProject/MultiProject.py" line="504" />
       <source>Multi Project Files (*.emj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="554" />
+      <location filename="../MultiProject/MultiProject.py" line="557" />
       <source>Save Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="570" />
+      <location filename="../MultiProject/MultiProject.py" line="573" />
       <source>Save File</source>
       <translation>Dosyayı Kaydet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="571" />
+      <location filename="../MultiProject/MultiProject.py" line="574" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="598" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
       <source>Close Multiproject</source>
       <translation>Çokluprojeyi Kapat</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="599" />
+      <location filename="../MultiProject/MultiProject.py" line="602" />
       <source>The current multiproject has unsaved changes.</source>
       <translation>Geçerli çokluprojede kaydedilmemiş değişiklikler var.</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="653" />
+      <location filename="../MultiProject/MultiProject.py" line="656" />
       <source>New multiproject</source>
       <translation>Yeni Çokluproje</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="655" />
+      <location filename="../MultiProject/MultiProject.py" line="658" />
       <source>&amp;New...</source>
       <translation>Ye&amp;ni...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="661" />
+      <location filename="../MultiProject/MultiProject.py" line="664" />
       <source>Generate a new multiproject</source>
       <translation>Yeni bir Çokluproje üret</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="663" />
+      <location filename="../MultiProject/MultiProject.py" line="666" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Yeni...&lt;/b&gt;&lt;p&gt;Bu yeni bir çokluproje için gerekli bilgilerin girileceği bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="673" />
+      <location filename="../MultiProject/MultiProject.py" line="676" />
       <source>Open multiproject</source>
       <translation>Çokluproje Aç</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="675" />
+      <location filename="../MultiProject/MultiProject.py" line="678" />
       <source>&amp;Open...</source>
       <translation>&amp;Aç...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="681" />
+      <location filename="../MultiProject/MultiProject.py" line="684" />
       <source>Open an existing multiproject</source>
       <translation>Var olan Çokluprojeyi aç</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="683" />
+      <location filename="../MultiProject/MultiProject.py" line="686" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aç...&lt;/b&gt;&lt;p&gt;Bu varolon bir projeyi açar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="689" />
+      <location filename="../MultiProject/MultiProject.py" line="692" />
       <source>Close multiproject</source>
       <translation>Çokluprojeyi kapat</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="691" />
+      <location filename="../MultiProject/MultiProject.py" line="694" />
       <source>&amp;Close</source>
       <translation>&amp;Kapat</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="697" />
+      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>Close the current multiproject</source>
       <translation>Geçerli çokluprojeyi kapat</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="699" />
+      <location filename="../MultiProject/MultiProject.py" line="702" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Kapat&lt;/b&gt;&lt;p&gt;Bu geçerli çokluprojeyi kapatır.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="705" />
+      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>Save multiproject</source>
       <translation>Çokluprojeyi kaydet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="707" />
+      <location filename="../MultiProject/MultiProject.py" line="710" />
       <source>&amp;Save</source>
       <translation>&amp;Kaydet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="713" />
+      <location filename="../MultiProject/MultiProject.py" line="716" />
       <source>Save the current multiproject</source>
       <translation>Geçerli çokluprojeyi kaydet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="715" />
+      <location filename="../MultiProject/MultiProject.py" line="718" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Kaydet&lt;/b&gt;&lt;p&gt;Bu geçerli çokluprojeyi kaydeder.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="721" />
+      <location filename="../MultiProject/MultiProject.py" line="724" />
       <source>Save multiproject as</source>
       <translation>Çokluprojeleri olarak kaydet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="723" />
+      <location filename="../MultiProject/MultiProject.py" line="726" />
       <source>Save &amp;as...</source>
       <translation>Farklı k&amp;aydet...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="730" />
-      <source>Save the current multiproject to a new file</source>
-      <translation>Geçerli çokluprojeyi yeni bir dosya olarak kaydet</translation>
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="733" />
+      <source>Save the current multiproject to a new file</source>
+      <translation>Geçerli çokluprojeyi yeni bir dosya olarak kaydet</translation>
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Farklı kaydet&lt;/b&gt;&lt;p&gt;Bu geçerli çokluprojeyi yeni bir dosyaya kaydeder.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="742" />
+      <location filename="../MultiProject/MultiProject.py" line="745" />
       <source>Add project to multiproject</source>
       <translation>Çokluprojeye proje ekle</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
+      <location filename="../MultiProject/MultiProject.py" line="747" />
       <source>Add &amp;project...</source>
       <translation>&amp;Proje ekle...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="751" />
-      <source>Add a project to the current multiproject</source>
-      <translation>Geçerli çokluprojeye bir proje ekle</translation>
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="754" />
+      <source>Add a project to the current multiproject</source>
+      <translation>Geçerli çokluprojeye bir proje ekle</translation>
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="757" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Proje ekle...&lt;/b&gt;&lt;p&gt;Bu geçerli çokluprojeye bir proje eklemek için diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <location filename="../MultiProject/MultiProject.py" line="767" />
       <source>Multiproject properties</source>
       <translation>Çokluproje özellikleri</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="766" />
+      <location filename="../MultiProject/MultiProject.py" line="769" />
       <source>&amp;Properties...</source>
       <translation>&amp;Özellikler...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="772" />
+      <location filename="../MultiProject/MultiProject.py" line="775" />
       <source>Show the multiproject properties</source>
       <translation>Çokluproje özelliklerini göster</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="774" />
+      <location filename="../MultiProject/MultiProject.py" line="777" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Özellikler...&lt;/b&gt;&lt;p&gt;Bu çokluproje özelliklerini düzenlemek için sir diyalog gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="786" />
-      <location filename="../MultiProject/MultiProject.py" line="784" />
+      <location filename="../MultiProject/MultiProject.py" line="789" />
+      <location filename="../MultiProject/MultiProject.py" line="787" />
       <source>Clear Out</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="793" />
-      <source>Remove all projects marked as removed</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="796" />
+      <source>Remove all projects marked as removed</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="799" />
       <source>&lt;b&gt;Clear Out...&lt;/b&gt;&lt;p&gt;This removes all projects marked as removed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="818" />
+      <location filename="../MultiProject/MultiProject.py" line="821" />
       <source>&amp;Multiproject</source>
       <translation>&amp;Çokluproje</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
+      <location filename="../MultiProject/MultiProject.py" line="822" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation>Geçmiş Çoklup&amp;rojeleri Aç</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="862" />
-      <location filename="../MultiProject/MultiProject.py" line="860" />
+      <location filename="../MultiProject/MultiProject.py" line="865" />
+      <location filename="../MultiProject/MultiProject.py" line="863" />
       <source>Multiproject</source>
       <translation>Çokluproje</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="918" />
+      <location filename="../MultiProject/MultiProject.py" line="921" />
       <source>&amp;Clear</source>
       <translation>T&amp;emizle</translation>
     </message>
@@ -59364,108 +59379,108 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="562" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="583" />
+      <location filename="../PipInterface/Pip.py" line="585" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="618" />
-      <location filename="../PipInterface/Pip.py" line="608" />
+      <location filename="../PipInterface/Pip.py" line="620" />
+      <location filename="../PipInterface/Pip.py" line="610" />
       <source>Install 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="739" />
-      <location filename="../PipInterface/Pip.py" line="609" />
+      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="611" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="619" />
+      <location filename="../PipInterface/Pip.py" line="621" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="638" />
+      <location filename="../PipInterface/Pip.py" line="641" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="766" />
-      <location filename="../PipInterface/Pip.py" line="695" />
-      <location filename="../PipInterface/Pip.py" line="667" />
-      <location filename="../PipInterface/Pip.py" line="658" />
+      <location filename="../PipInterface/Pip.py" line="775" />
+      <location filename="../PipInterface/Pip.py" line="701" />
+      <location filename="../PipInterface/Pip.py" line="671" />
+      <location filename="../PipInterface/Pip.py" line="662" />
       <source>Uninstall Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="767" />
-      <location filename="../PipInterface/Pip.py" line="696" />
-      <location filename="../PipInterface/Pip.py" line="659" />
+      <location filename="../PipInterface/Pip.py" line="776" />
+      <location filename="../PipInterface/Pip.py" line="702" />
+      <location filename="../PipInterface/Pip.py" line="663" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="712" />
+      <location filename="../PipInterface/Pip.py" line="719" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="738" />
+      <location filename="../PipInterface/Pip.py" line="758" />
+      <location filename="../PipInterface/Pip.py" line="747" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="750" />
+      <location filename="../PipInterface/Pip.py" line="759" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
+      <location filename="../PipInterface/Pip.py" line="786" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1185" />
+      <location filename="../PipInterface/Pip.py" line="1195" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1211" />
-      <location filename="../PipInterface/Pip.py" line="1202" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
+      <location filename="../PipInterface/Pip.py" line="1212" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1203" />
+      <location filename="../PipInterface/Pip.py" line="1213" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1235" />
-      <location filename="../PipInterface/Pip.py" line="1228" />
+      <location filename="../PipInterface/Pip.py" line="1245" />
+      <location filename="../PipInterface/Pip.py" line="1238" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1239" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1260" />
-      <location filename="../PipInterface/Pip.py" line="1252" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
+      <location filename="../PipInterface/Pip.py" line="1262" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1263" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -62048,18 +62063,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1904" />
+      <location filename="../Preferences/__init__.py" line="1905" />
       <source>Export Preferences</source>
       <translation>Seçenekleri Dışa Aktar</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1933" />
-      <location filename="../Preferences/__init__.py" line="1906" />
+      <location filename="../Preferences/__init__.py" line="1934" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1931" />
+      <location filename="../Preferences/__init__.py" line="1932" />
       <source>Import Preferences</source>
       <translation>Seçenekleri İçe Aktar</translation>
     </message>
@@ -62080,7 +62095,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="509" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="520" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -62707,430 +62722,430 @@
   <context>
     <name>Project</name>
     <message>
-      <location filename="../Project/Project.py" line="187" />
+      <location filename="../Project/Project.py" line="188" />
       <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source>
       <translation>Python3 Dosyaları (*.py *.py3);;Python3 GUI Dosyaları (*.pyw *.pyw3);;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="250" />
-      <source>Add File Category</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="251" />
+      <source>Add File Category</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="252" />
       <source>&lt;p&gt;The file category &lt;b&gt;{0}&lt;/b&gt; has already been added. This attempt will be ignored.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="336" />
-      <source>PyQt5 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="337" />
-      <source>PyQt5 Console</source>
+      <source>PyQt5 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="338" />
-      <source>PyQt6 GUI</source>
+      <source>PyQt5 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="339" />
-      <source>PyQt6 Console</source>
+      <source>PyQt6 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="340" />
-      <source>Eric7 Plugin</source>
+      <source>PyQt6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="341" />
-      <source>Console</source>
-      <translation>Konsol- kumanda birimi</translation>
+      <source>Eric7 Plugin</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="342" />
+      <source>Console</source>
+      <translation>Konsol- kumanda birimi</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="343" />
       <source>Other</source>
       <translation>Diğer</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="361" />
-      <source>PySide2 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="362" />
+      <source>PySide2 GUI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="363" />
       <source>PySide2 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="366" />
-      <source>PySide6 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="367" />
+      <source>PySide6 GUI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="465" />
-      <location filename="../Project/Project.py" line="453" />
-      <location filename="../Project/Project.py" line="442" />
-      <source>Registering Project Type</source>
-      <translation>Kaydedilmiş Proje Türü</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="443" />
-      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="454" />
-      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="466" />
+      <location filename="../Project/Project.py" line="454" />
+      <location filename="../Project/Project.py" line="443" />
+      <source>Registering Project Type</source>
+      <translation>Kaydedilmiş Proje Türü</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="444" />
+      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="455" />
+      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="467" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="771" />
+      <location filename="../Project/Project.py" line="772" />
       <source>All Files (*)</source>
       <translation type="unfinished">Tüm Dosyalar (*)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1332" />
+      <location filename="../Project/Project.py" line="1333" />
       <source>Read Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1578" />
-      <location filename="../Project/Project.py" line="1552" />
-      <location filename="../Project/Project.py" line="1516" />
-      <location filename="../Project/Project.py" line="1434" />
-      <location filename="../Project/Project.py" line="1395" />
-      <location filename="../Project/Project.py" line="1370" />
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1579" />
+      <location filename="../Project/Project.py" line="1553" />
+      <location filename="../Project/Project.py" line="1517" />
+      <location filename="../Project/Project.py" line="1435" />
+      <location filename="../Project/Project.py" line="1396" />
+      <location filename="../Project/Project.py" line="1371" />
+      <location filename="../Project/Project.py" line="1334" />
       <source>Please save the project first.</source>
       <translation>Lütfen ilkolarak projeyi kaydedin.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1369" />
+      <location filename="../Project/Project.py" line="1370" />
       <source>Save Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1411" />
-      <location filename="../Project/Project.py" line="1394" />
+      <location filename="../Project/Project.py" line="1412" />
+      <location filename="../Project/Project.py" line="1395" />
       <source>Delete Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1401" />
+      <location filename="../Project/Project.py" line="1402" />
       <source>Delete Remote Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1420" />
+      <location filename="../Project/Project.py" line="1421" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1433" />
+      <location filename="../Project/Project.py" line="1434" />
       <source>Read Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1515" />
+      <location filename="../Project/Project.py" line="1516" />
       <source>Read Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1551" />
+      <location filename="../Project/Project.py" line="1552" />
       <source>Save Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1594" />
-      <location filename="../Project/Project.py" line="1577" />
+      <location filename="../Project/Project.py" line="1595" />
+      <location filename="../Project/Project.py" line="1578" />
       <source>Delete Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1584" />
+      <location filename="../Project/Project.py" line="1585" />
       <source>Delete Remote Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1603" />
+      <location filename="../Project/Project.py" line="1604" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1774" />
+      <location filename="../Project/Project.py" line="1777" />
       <source>Add Language</source>
       <translation>Dil Ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1775" />
+      <location filename="../Project/Project.py" line="1778" />
       <source>You have to specify a translation pattern first.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1916" />
+      <location filename="../Project/Project.py" line="1919" />
       <source>Delete Translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1943" />
-      <location filename="../Project/Project.py" line="1917" />
+      <location filename="../Project/Project.py" line="1946" />
+      <location filename="../Project/Project.py" line="1920" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1942" />
+      <location filename="../Project/Project.py" line="1945" />
       <source>Delete translation</source>
       <translation>Çeviriyi silin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2093" />
-      <location filename="../Project/Project.py" line="2076" />
+      <location filename="../Project/Project.py" line="2098" />
+      <location filename="../Project/Project.py" line="2081" />
       <source>Add File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2195" />
-      <location filename="../Project/Project.py" line="2077" />
+      <location filename="../Project/Project.py" line="2200" />
+      <location filename="../Project/Project.py" line="2082" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2094" />
+      <location filename="../Project/Project.py" line="2099" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2106" />
+      <location filename="../Project/Project.py" line="2111" />
       <source>Add file</source>
       <translation>Dosya ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2289" />
-      <location filename="../Project/Project.py" line="2107" />
+      <location filename="../Project/Project.py" line="2296" />
+      <location filename="../Project/Project.py" line="2112" />
       <source>The target directory must not be empty.</source>
       <translation>Hedef dizin boş olamaz.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2194" />
-      <location filename="../Project/Project.py" line="2167" />
-      <location filename="../Project/Project.py" line="2147" />
+      <location filename="../Project/Project.py" line="2199" />
+      <location filename="../Project/Project.py" line="2172" />
+      <location filename="../Project/Project.py" line="2152" />
       <source>Add Directory</source>
       <translation type="unfinished">Dizin Ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2148" />
+      <location filename="../Project/Project.py" line="2153" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2168" />
+      <location filename="../Project/Project.py" line="2173" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2300" />
-      <location filename="../Project/Project.py" line="2288" />
+      <location filename="../Project/Project.py" line="2307" />
+      <location filename="../Project/Project.py" line="2295" />
       <source>Add directory</source>
       <translation>Dizin Ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2301" />
+      <location filename="../Project/Project.py" line="2308" />
       <source>The source directory must not be empty.</source>
       <translation>Kaynak dizin boş olamaz.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2415" />
-      <location filename="../Project/Project.py" line="2397" />
+      <location filename="../Project/Project.py" line="2422" />
+      <location filename="../Project/Project.py" line="2404" />
+      <location filename="../Project/Project.py" line="2388" />
       <location filename="../Project/Project.py" line="2381" />
-      <location filename="../Project/Project.py" line="2374" />
       <source>Rename File</source>
       <translation>Dosya adını Değiştir</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8055" />
-      <location filename="../Project/Project.py" line="3898" />
-      <location filename="../Project/Project.py" line="2398" />
+      <location filename="../Project/Project.py" line="8089" />
+      <location filename="../Project/Project.py" line="3909" />
+      <location filename="../Project/Project.py" line="2405" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2416" />
+      <location filename="../Project/Project.py" line="2423" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2683" />
+      <location filename="../Project/Project.py" line="2690" />
       <source>Delete File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2684" />
+      <location filename="../Project/Project.py" line="2691" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2712" />
+      <location filename="../Project/Project.py" line="2719" />
       <source>Delete Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2713" />
+      <location filename="../Project/Project.py" line="2720" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2846" />
+      <location filename="../Project/Project.py" line="2853" />
       <source>Create project directory</source>
       <translation>Proje dizinin oluştur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2847" />
+      <location filename="../Project/Project.py" line="2854" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Proje dizini &lt;b&gt;{0}&lt;/b&gt; oluşturulamıyor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3671" />
-      <location filename="../Project/Project.py" line="2947" />
+      <location filename="../Project/Project.py" line="3682" />
+      <location filename="../Project/Project.py" line="2954" />
       <source>Create project management directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3672" />
-      <location filename="../Project/Project.py" line="2948" />
+      <location filename="../Project/Project.py" line="3683" />
+      <location filename="../Project/Project.py" line="2955" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2988" />
+      <location filename="../Project/Project.py" line="2995" />
       <source>Create main script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2989" />
+      <location filename="../Project/Project.py" line="2996" />
       <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3454" />
-      <location filename="../Project/Project.py" line="3013" />
+      <location filename="../Project/Project.py" line="3463" />
+      <location filename="../Project/Project.py" line="3020" />
       <source>Create Makefile</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3455" />
-      <location filename="../Project/Project.py" line="3014" />
+      <location filename="../Project/Project.py" line="3464" />
+      <location filename="../Project/Project.py" line="3021" />
       <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3701" />
-      <location filename="../Project/Project.py" line="3164" />
-      <location filename="../Project/Project.py" line="3135" />
-      <location filename="../Project/Project.py" line="3103" />
-      <location filename="../Project/Project.py" line="3087" />
-      <location filename="../Project/Project.py" line="3062" />
-      <location filename="../Project/Project.py" line="3024" />
+      <location filename="../Project/Project.py" line="3712" />
+      <location filename="../Project/Project.py" line="3173" />
+      <location filename="../Project/Project.py" line="3144" />
+      <location filename="../Project/Project.py" line="3112" />
+      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="3069" />
+      <location filename="../Project/Project.py" line="3031" />
       <source>New Project</source>
       <translation>Yeni Proje</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3025" />
+      <location filename="../Project/Project.py" line="3032" />
       <source>Add existing files to the project?</source>
       <translation>Var olan dosyalar projeye eklensin mi?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3702" />
-      <location filename="../Project/Project.py" line="3063" />
+      <location filename="../Project/Project.py" line="3713" />
+      <location filename="../Project/Project.py" line="3070" />
       <source>Select Version Control System</source>
       <translation>Sürüm Kontrol Sistemini Seç</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3165" />
-      <location filename="../Project/Project.py" line="3088" />
+      <location filename="../Project/Project.py" line="3174" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Would you like to edit the VCS command options?</source>
       <translation>VCS komut seçeneklerini düzenlemek istiyor musunuz?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3104" />
+      <location filename="../Project/Project.py" line="3113" />
       <source>Shall the project file be added to the repository?</source>
       <translation>Proje dosyaları kaynak havuzuna aktarılacak mı?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3141" />
-      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3150" />
+      <location filename="../Project/Project.py" line="3139" />
       <source>None</source>
       <translation>Yok</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3145" />
       <source>Select version control system for the project</source>
       <translation>proje için sürüm kontrol sistemini seçin</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3347" />
+      <location filename="../Project/Project.py" line="3356" />
       <source>Translation Pattern</source>
       <translation>Çeviri Kalıbı</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3348" />
+      <location filename="../Project/Project.py" line="3357" />
       <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
       <translation>Çeviri dosylarınınyol kalıbını giriniz (kullanılan '% dil %'dil kodu):</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3650" />
+      <location filename="../Project/Project.py" line="3661" />
       <source>Open Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8041" />
-      <location filename="../Project/Project.py" line="8035" />
-      <location filename="../Project/Project.py" line="8025" />
-      <location filename="../Project/Project.py" line="3883" />
-      <location filename="../Project/Project.py" line="3873" />
-      <location filename="../Project/Project.py" line="3652" />
+      <location filename="../Project/Project.py" line="8075" />
+      <location filename="../Project/Project.py" line="8069" />
+      <location filename="../Project/Project.py" line="8059" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3884" />
+      <location filename="../Project/Project.py" line="3663" />
       <source>Project Files (*.epj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3897" />
-      <location filename="../Project/Project.py" line="3881" />
+      <location filename="../Project/Project.py" line="3908" />
+      <location filename="../Project/Project.py" line="3892" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3936" />
+      <location filename="../Project/Project.py" line="3947" />
       <source>Close Project</source>
       <translation>Projeyi Kapat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3937" />
+      <location filename="../Project/Project.py" line="3948" />
       <source>The current project has unsaved changes.</source>
       <translation>Geçerli projede kaydedilmemiş dosyalar var.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4137" />
-      <location filename="../Project/Project.py" line="4101" />
+      <location filename="../Project/Project.py" line="4148" />
+      <location filename="../Project/Project.py" line="4112" />
       <source>Syntax Errors Detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4138" />
-      <location filename="../Project/Project.py" line="4102" />
+      <location filename="../Project/Project.py" line="4149" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation type="unfinished">
         <numerusform />
@@ -63138,1268 +63153,1268 @@
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4796" />
+      <location filename="../Project/Project.py" line="4807" />
       <source>New project</source>
       <translation>Yeni Proje</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4798" />
+      <location filename="../Project/Project.py" line="4809" />
       <source>&amp;New...</source>
       <translation>Ye&amp;ni...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4804" />
+      <location filename="../Project/Project.py" line="4815" />
       <source>Generate a new project</source>
       <translation>Yeni bir proje üret</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4806" />
+      <location filename="../Project/Project.py" line="4817" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Yeni...&lt;/b&gt;&lt;p&gt;Bu yeni bir proje için bilgilerin girileceği bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4816" />
+      <location filename="../Project/Project.py" line="4827" />
       <source>Open project</source>
       <translation>Projeyi aç</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4818" />
+      <location filename="../Project/Project.py" line="4829" />
       <source>&amp;Open...</source>
       <translation>&amp;Aç...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4824" />
+      <location filename="../Project/Project.py" line="4835" />
       <source>Open an existing project</source>
       <translation>Var olan bir projeyi aç</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4826" />
+      <location filename="../Project/Project.py" line="4837" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aç...&lt;/b&gt;&lt;p&gt;Bu varolan bir projeyi açar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4832" />
+      <location filename="../Project/Project.py" line="4843" />
       <source>Open remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4834" />
+      <location filename="../Project/Project.py" line="4845" />
       <source>Open (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4840" />
-      <source>Open an existing remote project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4842" />
-      <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4851" />
-      <source>Reload project</source>
+      <source>Open an existing remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4853" />
+      <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4862" />
+      <source>Reload project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4864" />
       <source>Re&amp;load</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4859" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>Reload the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4861" />
+      <location filename="../Project/Project.py" line="4872" />
       <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4867" />
+      <location filename="../Project/Project.py" line="4878" />
       <source>Close project</source>
       <translation>Projeyi kapat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4869" />
+      <location filename="../Project/Project.py" line="4880" />
       <source>&amp;Close</source>
       <translation>&amp;Kapat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4875" />
+      <location filename="../Project/Project.py" line="4886" />
       <source>Close the current project</source>
       <translation>Geçerli projeyi kapat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4877" />
+      <location filename="../Project/Project.py" line="4888" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Kapat&lt;/b&gt;&lt;p&gt;Bu geçerli projeyi kapatır.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4883" />
+      <location filename="../Project/Project.py" line="4894" />
       <source>Save project</source>
       <translation>Projeyi kaydet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5180" />
-      <location filename="../Project/Project.py" line="4885" />
+      <location filename="../Project/Project.py" line="5191" />
+      <location filename="../Project/Project.py" line="4896" />
       <source>&amp;Save</source>
       <translation>&amp;Kaydet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4891" />
+      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation>Geçerli projeyi kapat</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4893" />
+      <location filename="../Project/Project.py" line="4904" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Kaydet&lt;/b&gt;&lt;p&gt;Bu geçerli projeyi kaydeder.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4899" />
+      <location filename="../Project/Project.py" line="4910" />
       <source>Save project as</source>
       <translation>projeyi farklı adda kaydet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4901" />
+      <location filename="../Project/Project.py" line="4912" />
       <source>Save &amp;as...</source>
       <translation>Farklı k&amp;aydet...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4907" />
-      <source>Save the current project to a new file</source>
-      <translation>Geçerli projeyi yeni bir dosya olarak kaydet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4909" />
-      <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Farklı kaydet&lt;/b&gt;&lt;p&gt;Bu geçerli projeyi yeni bir dosya olarak kaydeder.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4918" />
-      <source>Save project as (Remote)</source>
-      <translation type="unfinished" />
+      <source>Save the current project to a new file</source>
+      <translation>Geçerli projeyi yeni bir dosya olarak kaydet</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4920" />
+      <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Farklı kaydet&lt;/b&gt;&lt;p&gt;Bu geçerli projeyi yeni bir dosya olarak kaydeder.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4929" />
+      <source>Save project as (Remote)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4931" />
       <source>Save as (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4927" />
+      <location filename="../Project/Project.py" line="4938" />
       <source>Save the current project to a new remote file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4930" />
+      <location filename="../Project/Project.py" line="4941" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4946" />
+      <location filename="../Project/Project.py" line="4957" />
       <source>Add files to project</source>
       <translation>Projeye dosyalar ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4948" />
+      <location filename="../Project/Project.py" line="4959" />
       <source>Add &amp;files...</source>
       <translation>Dosyaları &amp;ekle...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4954" />
+      <location filename="../Project/Project.py" line="4965" />
       <source>Add files to the current project</source>
       <translation>Geçerli projeye dosyalar ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4956" />
-      <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Dosya ekle...&lt;/b&gt;&lt;p&gt;Bu geçerli projeye bir dosya eklemek için bir diyalog açar. Alana belirlenmiş uzantıda bir dosya eklenir.&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4967" />
+      <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Dosya ekle...&lt;/b&gt;&lt;p&gt;Bu geçerli projeye bir dosya eklemek için bir diyalog açar. Alana belirlenmiş uzantıda bir dosya eklenir.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4978" />
       <source>Add directory to project</source>
       <translation>Projeye dizin ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4969" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Add directory...</source>
       <translation>Dizin ekle...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4976" />
+      <location filename="../Project/Project.py" line="4987" />
       <source>Add a directory to the current project</source>
       <translation>Geçerli projeye bir dizin ekleyiniz</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4979" />
+      <location filename="../Project/Project.py" line="4990" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Dizin Ekle...&lt;/b&gt;&lt;p&gt;Bu geçerli projeye bir dizin eklemek için bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4989" />
+      <location filename="../Project/Project.py" line="5000" />
       <source>Add translation to project</source>
       <translation>Projeye çeviri ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4991" />
+      <location filename="../Project/Project.py" line="5002" />
       <source>Add &amp;translation...</source>
       <translation>Çeviri &amp;ekle...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4998" />
+      <location filename="../Project/Project.py" line="5009" />
       <source>Add a translation to the current project</source>
       <translation>Geçerli projeye çeviri ekle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5001" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Çeviri ekle...&lt;/b&gt;&lt;p&gt;Bu geçerli projeye bir çeviri eklemek için bir diyalog açar.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5011" />
-      <source>Search new files</source>
-      <translation>Yeni dosyaları ara</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5012" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Çeviri ekle...&lt;/b&gt;&lt;p&gt;Bu geçerli projeye bir çeviri eklemek için bir diyalog açar.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5022" />
+      <source>Search new files</source>
+      <translation>Yeni dosyaları ara</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation>Yeni dosyaları a&amp;ra...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5018" />
+      <location filename="../Project/Project.py" line="5029" />
       <source>Search new files in the project directory.</source>
       <translation>Proje dizininde yeni dosyaları ara.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5020" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5030" />
-      <source>Search Project File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5031" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5041" />
+      <source>Search Project File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5042" />
       <source>Search Project File...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5032" />
+      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5037" />
-      <source>Search for a file in the project list of files.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5039" />
-      <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5048" />
-      <source>Project properties</source>
-      <translation>Proje özellikleri</translation>
+      <source>Search for a file in the project list of files.</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5050" />
+      <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5059" />
+      <source>Project properties</source>
+      <translation>Proje özellikleri</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5061" />
       <source>&amp;Properties...</source>
       <translation>&amp;Özellikler...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5056" />
-      <source>Show the project properties</source>
-      <translation>Proje özelliklerini göster</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5058" />
-      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5067" />
-      <source>User project properties</source>
-      <translation>Kullanıcı projesi özellikleri</translation>
+      <source>Show the project properties</source>
+      <translation>Proje özelliklerini göster</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5069" />
+      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5078" />
+      <source>User project properties</source>
+      <translation>Kullanıcı projesi özellikleri</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5080" />
       <source>&amp;User Properties...</source>
       <translation>K&amp;ullanıcı Özellikleri...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5076" />
+      <location filename="../Project/Project.py" line="5087" />
       <source>Show the user specific project properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5079" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5089" />
-      <source>Filetype Associations</source>
-      <translation>Dosyatipi Birleştirme</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5090" />
-      <source>Filetype Associations...</source>
-      <translation>Dosyatipi Birleştirme...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5097" />
-      <source>Show the project file type associations</source>
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5100" />
+      <source>Filetype Associations</source>
+      <translation>Dosyatipi Birleştirme</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5101" />
+      <source>Filetype Associations...</source>
+      <translation>Dosyatipi Birleştirme...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5108" />
+      <source>Show the project file type associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5111" />
       <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5113" />
-      <source>Lexer Associations</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5114" />
-      <source>Lexer Associations...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5121" />
-      <source>Show the project lexer associations (overriding defaults)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5124" />
+      <source>Lexer Associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5125" />
+      <source>Lexer Associations...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5132" />
+      <source>Show the project lexer associations (overriding defaults)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5135" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5142" />
+      <location filename="../Project/Project.py" line="5153" />
       <source>Debugger Properties</source>
       <translation>Hata Ayıklayıcı Özellikleri</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5143" />
+      <location filename="../Project/Project.py" line="5154" />
       <source>Debugger &amp;Properties...</source>
       <translation>Hata Ayıklayıcı &amp;Özellikleri...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5149" />
+      <location filename="../Project/Project.py" line="5160" />
       <source>Show the debugger properties</source>
       <translation>Hata ayıklayıcı özelliklerini göster</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5161" />
-      <source>Load</source>
-      <translation>Yükle</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5162" />
+      <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Load</source>
+      <translation>Yükle</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
       <source>&amp;Load</source>
       <translation>Yük&amp;le</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5168" />
-      <source>Load the debugger properties</source>
-      <translation>Hata ayıklayıcı özelliklerini yükle</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5170" />
-      <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5179" />
+      <source>Load the debugger properties</source>
+      <translation>Hata ayıklayıcı özelliklerini yükle</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5181" />
+      <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5190" />
       <source>Save</source>
       <translation>Kaydet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5186" />
-      <source>Save the debugger properties</source>
-      <translation>Hata ayıklayıcı özelliklerini kaydet</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5188" />
-      <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5197" />
+      <source>Save the debugger properties</source>
+      <translation>Hata ayıklayıcı özelliklerini kaydet</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5199" />
+      <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5208" />
       <source>Delete</source>
       <translation>Sil</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5198" />
+      <location filename="../Project/Project.py" line="5209" />
       <source>&amp;Delete</source>
       <translation>&amp;Sil</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5204" />
+      <location filename="../Project/Project.py" line="5215" />
       <source>Delete the debugger properties</source>
       <translation>Hata ayıklayıcı özelliklerini sil</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5206" />
-      <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5216" />
-      <source>Reset</source>
-      <translation>Başadön</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5217" />
+      <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5227" />
+      <source>Reset</source>
+      <translation>Başadön</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5228" />
       <source>&amp;Reset</source>
       <translation>Başad&amp;ön</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5223" />
+      <location filename="../Project/Project.py" line="5234" />
       <source>Reset the debugger properties</source>
       <translation>Hata ayıklayıcı özelliklerini başa döndür</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5225" />
+      <location filename="../Project/Project.py" line="5236" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5241" />
-      <location filename="../Project/Project.py" line="5240" />
+      <location filename="../Project/Project.py" line="5252" />
+      <location filename="../Project/Project.py" line="5251" />
       <source>Load session</source>
       <translation>Oturum yükleniyor</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5247" />
+      <location filename="../Project/Project.py" line="5258" />
       <source>Load the projects session file.</source>
       <translation>Projelerin oturm dosyasını yükle.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5249" />
+      <location filename="../Project/Project.py" line="5260" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5265" />
-      <location filename="../Project/Project.py" line="5264" />
+      <location filename="../Project/Project.py" line="5276" />
+      <location filename="../Project/Project.py" line="5275" />
       <source>Save session</source>
       <translation>Oturumu kaydet</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5271" />
+      <location filename="../Project/Project.py" line="5282" />
       <source>Save the projects session file.</source>
       <translation>Proje oturum dosyasını kaydet.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5273" />
+      <location filename="../Project/Project.py" line="5284" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5289" />
-      <location filename="../Project/Project.py" line="5288" />
+      <location filename="../Project/Project.py" line="5300" />
+      <location filename="../Project/Project.py" line="5299" />
       <source>Delete session</source>
       <translation>Oturumu sil</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5295" />
+      <location filename="../Project/Project.py" line="5306" />
       <source>Delete the projects session file.</source>
       <translation>Proje oturum dosyasını sil.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5297" />
+      <location filename="../Project/Project.py" line="5308" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation>&lt;b&gt;Oturumu Sil&lt;/b&gt;&lt;p&gt;Bu proje dosya oturumunu siler&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5312" />
-      <source>Code Metrics</source>
-      <translation>Metrik Kod</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5313" />
-      <source>&amp;Code Metrics...</source>
-      <translation>Me&amp;trik Kod...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5320" />
-      <source>Show some code metrics for the project.</source>
-      <translation>Proje için bazı metrik kodları göster.</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5323" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Metrik Kodlar...&lt;/b&gt;&lt;p&gt;Bu proje içindeki tüm Python dosyalarının bazı metrik kodlarını gösterir.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5333" />
-      <source>Python Code Coverage</source>
-      <translation>Python Kod Koruyucu</translation>
+      <source>Code Metrics</source>
+      <translation>Metrik Kod</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5324" />
+      <source>&amp;Code Metrics...</source>
+      <translation>Me&amp;trik Kod...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5331" />
+      <source>Show some code metrics for the project.</source>
+      <translation>Proje için bazı metrik kodları göster.</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5334" />
-      <source>Code Co&amp;verage...</source>
-      <translation>Kod Koru&amp;yucu...</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5341" />
-      <source>Show code coverage information for the project.</source>
-      <translation type="unfinished" />
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;Metrik Kodlar...&lt;/b&gt;&lt;p&gt;Bu proje içindeki tüm Python dosyalarının bazı metrik kodlarını gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5344" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6778" />
-      <location filename="../Project/Project.py" line="6765" />
-      <location filename="../Project/Project.py" line="5354" />
-      <source>Profile Data</source>
-      <translation>Veri Kesiti</translation>
+      <source>Python Code Coverage</source>
+      <translation>Python Kod Koruyucu</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5345" />
+      <source>Code Co&amp;verage...</source>
+      <translation>Kod Koru&amp;yucu...</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5352" />
+      <source>Show code coverage information for the project.</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5355" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6789" />
+      <location filename="../Project/Project.py" line="6776" />
+      <location filename="../Project/Project.py" line="5365" />
+      <source>Profile Data</source>
+      <translation>Veri Kesiti</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation>&amp;Veri kesiti...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5362" />
+      <location filename="../Project/Project.py" line="5373" />
       <source>Show profiling data for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5365" />
+      <location filename="../Project/Project.py" line="5376" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6830" />
-      <location filename="../Project/Project.py" line="5380" />
+      <location filename="../Project/Project.py" line="6841" />
+      <location filename="../Project/Project.py" line="5391" />
       <source>Application Diagram</source>
       <translation>Uygulama Şeması</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5381" />
+      <location filename="../Project/Project.py" line="5392" />
       <source>&amp;Application Diagram...</source>
       <translation>Uygulama Şem&amp;ası...</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5388" />
+      <location filename="../Project/Project.py" line="5399" />
       <source>Show a diagram of the project.</source>
       <translation>Projenin bir şemasını göster.</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="5402" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Uygulama Şeması...&lt;/b&gt;&lt;p&gt;Bu projenin bir şemasını gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5400" />
+      <location filename="../Project/Project.py" line="5411" />
       <source>Load Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5401" />
+      <location filename="../Project/Project.py" line="5412" />
       <source>&amp;Load Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5407" />
+      <location filename="../Project/Project.py" line="5418" />
       <source>Load a diagram from file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5409" />
+      <location filename="../Project/Project.py" line="5420" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6998" />
-      <location filename="../Project/Project.py" line="6943" />
-      <location filename="../Project/Project.py" line="5424" />
+      <location filename="../Project/Project.py" line="7009" />
+      <location filename="../Project/Project.py" line="6954" />
+      <location filename="../Project/Project.py" line="5435" />
       <source>Create Package List</source>
       <translation>Paket Listesini Oluştur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5426" />
+      <location filename="../Project/Project.py" line="5437" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished">Eklenti &amp;Arşivi Oluştur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5433" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5436" />
+      <location filename="../Project/Project.py" line="5447" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7068" />
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="7080" />
+      <location filename="../Project/Project.py" line="5458" />
       <source>Create Plugin Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5449" />
+      <location filename="../Project/Project.py" line="5460" />
       <source>Create Plugin &amp;Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5455" />
+      <location filename="../Project/Project.py" line="5466" />
       <source>Create eric plugin archive files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5457" />
+      <location filename="../Project/Project.py" line="5468" />
       <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5469" />
+      <location filename="../Project/Project.py" line="5480" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5471" />
+      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5478" />
+      <location filename="../Project/Project.py" line="5489" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5481" />
+      <location filename="../Project/Project.py" line="5492" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7510" />
-      <location filename="../Project/Project.py" line="7481" />
-      <location filename="../Project/Project.py" line="7435" />
-      <location filename="../Project/Project.py" line="7387" />
-      <location filename="../Project/Project.py" line="5500" />
+      <location filename="../Project/Project.py" line="7536" />
+      <location filename="../Project/Project.py" line="7507" />
+      <location filename="../Project/Project.py" line="7461" />
+      <location filename="../Project/Project.py" line="7413" />
+      <location filename="../Project/Project.py" line="5511" />
       <source>Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5501" />
+      <location filename="../Project/Project.py" line="5512" />
       <source>&amp;Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5507" />
+      <location filename="../Project/Project.py" line="5518" />
       <source>Perform a 'make' run.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5509" />
-      <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7487" />
-      <location filename="../Project/Project.py" line="5519" />
-      <source>Test for Changes</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5520" />
+      <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7513" />
+      <location filename="../Project/Project.py" line="5530" />
+      <source>Test for Changes</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5531" />
       <source>&amp;Test for Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5527" />
+      <location filename="../Project/Project.py" line="5538" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="5541" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5548" />
-      <source>Create SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5549" />
-      <source>Create &amp;SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5556" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5559" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <source>Create SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5560" />
+      <source>Create &amp;SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5567" />
+      <source>Create a SBOM file of the project dependencies.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5570" />
-      <source>Clear Byte Code Caches</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5571" />
-      <source>Clear Byte Code &amp;Caches</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5578" />
-      <source>Clear the byte code caches of the project.</source>
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5581" />
+      <source>Clear Byte Code Caches</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5582" />
+      <source>Clear Byte Code &amp;Caches</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5589" />
+      <source>Clear the byte code caches of the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5592" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5597" />
+      <location filename="../Project/Project.py" line="5608" />
       <source>About Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5598" />
+      <location filename="../Project/Project.py" line="5609" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5604" />
+      <location filename="../Project/Project.py" line="5615" />
       <source>Show some information about 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5606" />
+      <location filename="../Project/Project.py" line="5617" />
       <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5618" />
-      <source>Format Code</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5619" />
-      <source>&amp;Format Code</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5626" />
-      <source>Format the project sources with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5629" />
+      <source>Format Code</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5630" />
+      <source>&amp;Format Code</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5637" />
+      <source>Format the project sources with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5640" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5641" />
+      <location filename="../Project/Project.py" line="5652" />
       <source>Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5642" />
+      <location filename="../Project/Project.py" line="5653" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5649" />
+      <location filename="../Project/Project.py" line="5660" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5654" />
+      <location filename="../Project/Project.py" line="5665" />
       <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5667" />
+      <location filename="../Project/Project.py" line="5678" />
       <source>Code Formatting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5668" />
+      <location filename="../Project/Project.py" line="5679" />
       <source>Code Formatting &amp;Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5686" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5681" />
+      <location filename="../Project/Project.py" line="5692" />
       <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5846" />
-      <location filename="../Project/Project.py" line="5796" />
-      <location filename="../Project/Project.py" line="5795" />
-      <location filename="../Project/Project.py" line="5695" />
-      <location filename="../Project/Project.py" line="5694" />
+      <location filename="../Project/Project.py" line="5857" />
+      <location filename="../Project/Project.py" line="5807" />
+      <location filename="../Project/Project.py" line="5806" />
+      <location filename="../Project/Project.py" line="5706" />
+      <location filename="../Project/Project.py" line="5705" />
       <source>Configure</source>
       <translation type="unfinished">Yapılandırma</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5702" />
+      <location filename="../Project/Project.py" line="5713" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5707" />
+      <location filename="../Project/Project.py" line="5718" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5723" />
+      <location filename="../Project/Project.py" line="5734" />
       <source>About isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5724" />
+      <location filename="../Project/Project.py" line="5735" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5730" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5732" />
+      <location filename="../Project/Project.py" line="5743" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5745" />
-      <location filename="../Project/Project.py" line="5744" />
-      <source>Sort Imports</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5752" />
-      <source>Sort the import statements of the project sources with 'isort'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
+      <location filename="../Project/Project.py" line="5756" />
       <location filename="../Project/Project.py" line="5755" />
+      <source>Sort Imports</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5763" />
+      <source>Sort the import statements of the project sources with 'isort'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5766" />
       <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5769" />
-      <location filename="../Project/Project.py" line="5768" />
+      <location filename="../Project/Project.py" line="5780" />
+      <location filename="../Project/Project.py" line="5779" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5776" />
+      <location filename="../Project/Project.py" line="5787" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5782" />
+      <location filename="../Project/Project.py" line="5793" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5803" />
+      <location filename="../Project/Project.py" line="5814" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5809" />
+      <location filename="../Project/Project.py" line="5820" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5825" />
-      <source>Install Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5826" />
-      <source>&amp;Install Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5833" />
-      <source>Install the project into the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5836" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <source>Install Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5837" />
+      <source>&amp;Install Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5844" />
+      <source>Install the project into the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5847" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5854" />
+      <location filename="../Project/Project.py" line="5865" />
       <source>Configure the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5857" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5867" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5868" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5878" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5874" />
+      <location filename="../Project/Project.py" line="5885" />
       <source>Upgrade the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5876" />
+      <location filename="../Project/Project.py" line="5887" />
       <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5888" />
+      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5889" />
+      <location filename="../Project/Project.py" line="5900" />
       <source>&amp;Recreate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5895" />
+      <location filename="../Project/Project.py" line="5906" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5897" />
+      <location filename="../Project/Project.py" line="5908" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5929" />
+      <location filename="../Project/Project.py" line="5940" />
       <source>&amp;Project</source>
       <translation>&amp;Proje</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5930" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>Geçmiş P&amp;rojeleri Aç</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5932" />
-      <source>Session</source>
-      <translation>Oturum</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5933" />
-      <source>Debugger</source>
-      <translation>Hata Ayıklayıcı</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5934" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5936" />
-      <source>Project-T&amp;ools</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5937" />
-      <source>&amp;Version Control</source>
-      <translation>S&amp;ürüm Kontrol</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5941" />
-      <source>Chec&amp;k</source>
-      <translation>&amp;Kontrol</translation>
+      <source>Open &amp;Recent Projects</source>
+      <translation>Geçmiş P&amp;rojeleri Aç</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished" />
+      <source>Session</source>
+      <translation>Oturum</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5944" />
+      <source>Debugger</source>
+      <translation>Hata Ayıklayıcı</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Sho&amp;w</source>
-      <translation>G&amp;öster</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5946" />
-      <source>&amp;Diagrams</source>
-      <translation>Şemalar &amp;D</translation>
+      <source>Embedded Environment</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Pac&amp;kagers</source>
-      <translation>Pa&amp;ketleyici</translation>
+      <source>Project-T&amp;ools</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
+      <source>&amp;Version Control</source>
+      <translation>S&amp;ürüm Kontrol</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5952" />
+      <source>Chec&amp;k</source>
+      <translation>&amp;Kontrol</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5954" />
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5956" />
+      <source>Sho&amp;w</source>
+      <translation>G&amp;öster</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5957" />
+      <source>&amp;Diagrams</source>
+      <translation>Şemalar &amp;D</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5958" />
+      <source>Pac&amp;kagers</source>
+      <translation>Pa&amp;ketleyici</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5959" />
       <source>Source &amp;Documentation</source>
       <translation>Kaynak Belgeleme &amp;D</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5950" />
+      <location filename="../Project/Project.py" line="5961" />
       <source>Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5951" />
+      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6113" />
-      <location filename="../Project/Project.py" line="6111" />
+      <location filename="../Project/Project.py" line="6124" />
+      <location filename="../Project/Project.py" line="6122" />
       <source>Project</source>
       <translation>Proje</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6195" />
+      <location filename="../Project/Project.py" line="6206" />
       <source>&amp;Clear</source>
       <translation>T&amp;emizle</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6392" />
+      <location filename="../Project/Project.py" line="6403" />
       <source>Search New Files</source>
       <translation>Yeni Dosyaları Ara</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6393" />
+      <location filename="../Project/Project.py" line="6404" />
       <source>There were no new files found to be added.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6554" />
-      <location filename="../Project/Project.py" line="6541" />
+      <location filename="../Project/Project.py" line="6565" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>Version Control System</source>
       <translation>Sürüm Kontrol Sistemi</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6542" />
+      <location filename="../Project/Project.py" line="6553" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6555" />
+      <location filename="../Project/Project.py" line="6566" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6712" />
+      <location filename="../Project/Project.py" line="6723" />
       <source>Coverage Data</source>
       <translation>Veri Kapsamı</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6766" />
-      <location filename="../Project/Project.py" line="6713" />
+      <location filename="../Project/Project.py" line="6777" />
+      <location filename="../Project/Project.py" line="6724" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>Bugeçerli projede tanımlanan ana betik değil. Durduruluyor</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6725" />
+      <location filename="../Project/Project.py" line="6736" />
       <source>Code Coverage</source>
       <translation>Kod Koruyucu</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6726" />
+      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation>Lütfen bir koruyucu dosya seçiniz</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6779" />
+      <location filename="../Project/Project.py" line="6790" />
       <source>Please select a profile file</source>
       <translation>Lütfen kesit dosyasını seçiniz</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6831" />
+      <location filename="../Project/Project.py" line="6842" />
       <source>Include module names?</source>
       <translation>Modül isimleri dahil edilsin mi?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6944" />
+      <location filename="../Project/Project.py" line="6955" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6999" />
+      <location filename="../Project/Project.py" line="7010" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7295" />
-      <location filename="../Project/Project.py" line="7251" />
-      <location filename="../Project/Project.py" line="7201" />
-      <location filename="../Project/Project.py" line="7190" />
-      <location filename="../Project/Project.py" line="7172" />
-      <location filename="../Project/Project.py" line="7139" />
-      <location filename="../Project/Project.py" line="7109" />
-      <location filename="../Project/Project.py" line="7081" />
-      <location filename="../Project/Project.py" line="7051" />
-      <location filename="../Project/Project.py" line="7037" />
-      <location filename="../Project/Project.py" line="7020" />
+      <location filename="../Project/Project.py" line="7321" />
+      <location filename="../Project/Project.py" line="7277" />
+      <location filename="../Project/Project.py" line="7227" />
+      <location filename="../Project/Project.py" line="7216" />
+      <location filename="../Project/Project.py" line="7198" />
+      <location filename="../Project/Project.py" line="7151" />
+      <location filename="../Project/Project.py" line="7121" />
+      <location filename="../Project/Project.py" line="7093" />
+      <location filename="../Project/Project.py" line="7063" />
+      <location filename="../Project/Project.py" line="7048" />
+      <location filename="../Project/Project.py" line="7031" />
       <source>Create Plugin Archive</source>
       <translation>Eklenti Arşivi Oluştur</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7021" />
+      <location filename="../Project/Project.py" line="7032" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7038" />
+      <location filename="../Project/Project.py" line="7049" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7052" />
-      <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7060" />
-      <source>Creating plugin archives...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7061" />
-      <source>Abort</source>
-      <translation type="unfinished">Vazgeç</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="7064" />
+      <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7072" />
+      <source>Creating plugin archives...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7073" />
+      <source>Abort</source>
+      <translation type="unfinished">Vazgeç</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7076" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7082" />
+      <location filename="../Project/Project.py" line="7094" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7110" />
+      <location filename="../Project/Project.py" line="7122" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7140" />
+      <location filename="../Project/Project.py" line="7152" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7199" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7191" />
+      <location filename="../Project/Project.py" line="7217" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7228" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7252" />
+      <location filename="../Project/Project.py" line="7278" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7296" />
+      <location filename="../Project/Project.py" line="7322" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7388" />
+      <location filename="../Project/Project.py" line="7414" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7436" />
+      <location filename="../Project/Project.py" line="7462" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7482" />
+      <location filename="../Project/Project.py" line="7508" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7490" />
+      <location filename="../Project/Project.py" line="7516" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7495" />
+      <location filename="../Project/Project.py" line="7521" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7511" />
+      <location filename="../Project/Project.py" line="7537" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7941" />
+      <location filename="../Project/Project.py" line="7975" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7942" />
+      <location filename="../Project/Project.py" line="7976" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8023" />
+      <location filename="../Project/Project.py" line="8057" />
       <source>Open Remote Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8054" />
-      <location filename="../Project/Project.py" line="8039" />
+      <location filename="../Project/Project.py" line="8088" />
+      <location filename="../Project/Project.py" line="8073" />
       <source>Save Remote Project</source>
       <translation type="unfinished" />
     </message>
@@ -65186,50 +65201,50 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="527" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="511" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="529" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="513" />
       <source>New directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="512" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="514" />
       <source>&lt;p&gt;A file or directory named &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="528" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="530" />
       <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="625" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="596" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="577" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="627" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="598" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="579" />
       <source>New file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="578" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="580" />
       <source>Enter the path of the new file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="597" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="599" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="626" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="628" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="716" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="718" />
       <source>Delete files/directories</source>
       <translation>Dosyaları/Dizinleri Sil</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="717" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="719" />
       <source>Do you really want to delete these entries from the project?</source>
       <translation>Bu girişi projeden silmek istediğinizden gerçekten emin misiniz?</translation>
     </message>
@@ -66971,22 +66986,22 @@
   <context>
     <name>Purge</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="74" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="76" />
       <source>Purge All Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="75" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="77" />
       <source>Do really want to delete all files not tracked by Mercurial (including ignored ones)?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="80" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="82" />
       <source>Purge Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="81" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="83" />
       <source>Do really want to delete files not tracked by Mercurial?</source>
       <translation type="unfinished" />
     </message>
@@ -67094,7 +67109,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="453" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="455" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="235" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -67110,7 +67125,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="433" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="246" />
       <source>Flash MicroPython Firmware</source>
       <translation type="unfinished" />
@@ -67166,7 +67181,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="431" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="390" />
       <source>'dfu-util' Output</source>
       <translation type="unfinished" />
@@ -67177,37 +67192,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="416" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="417" />
       <source>Flash MicroPython/CircuitPython Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="419" />
       <source>MicroPython Firmware Files (*.dfu);;CircuitPython Firmware Files (*.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="454" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="456" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="484" />
       <source>unknown</source>
       <translation type="unfinished">bilinmeyen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="488" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="490" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="496" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="498" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="500" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="502" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -69288,12 +69303,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="139" />
+      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="141" />
       <source>No current editor</source>
       <translation type="unfinished">Geçerli düzenleyici yok</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="140" />
+      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="142" />
       <source>Please open or create a file first.</source>
       <translation type="unfinished">Lütfen ilkönce bir dosya açın yada oluşturun.</translation>
     </message>
@@ -71032,7 +71047,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="122" />
+      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="124" />
       <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="82" />
       <source>Add Documentation</source>
       <translation type="unfinished">Belgelere Ekle</translation>
@@ -71043,7 +71058,7 @@
       <translation type="unfinished">Sıkıştırılmış Qt Yardım Dosyaları (*.qch)</translation>
     </message>
     <message>
-      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="123" />
+      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="125" />
       <source>The file &lt;b&gt;{0}&lt;/b&gt; could not be added.</source>
       <translation type="unfinished" />
     </message>
@@ -71301,191 +71316,191 @@
   <context>
     <name>Queues</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="226" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="228" />
       <source>New Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="277" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="279" />
       <source>Update Current Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="335" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="337" />
       <source>Pop Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="339" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="341" />
       <source>Push Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="343" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="345" />
       <source>Go to Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="437" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="369" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="356" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="441" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="371" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="358" />
       <source>Select Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="359" />
       <source>Select the target patch name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="372" />
       <source>No patches to select from.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="399" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="401" />
       <source>Finish Applied Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="423" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="427" />
       <source>Rename Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="438" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="442" />
       <source>Select the patch to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="446" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="450" />
       <source>Delete Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="488" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="482" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="475" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="492" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="486" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="479" />
       <source>Fold Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="483" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="487" />
       <source>No patches selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="493" />
       <source>No patches available to be folded.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="510" />
       <source>List Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="507" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="511" />
       <source>No patches available to list guards for.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="536" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="540" />
       <source>Define Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="537" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="541" />
       <source>No patches available to define guards for.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="568" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="548" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="552" />
       <source>Drop All Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="549" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="553" />
       <source>Select the patch to drop guards for (leave empty for the current patch):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="597" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="590" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="606" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598" />
       <source>Set Active Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="607" />
       <source>No guards available to select from.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="618" />
       <source>Deactivate Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649" />
       <source>Create New Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649" />
       <source>Rename Active Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="658" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="673" />
       <source>Error while creating a new queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="660" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="675" />
       <source>Error while renaming the active queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="693" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="708" />
       <source>Purge Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="710" />
       <source>Delete Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="697" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="712" />
       <source>Activate Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="717" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="736" />
       <source>Error while purging the queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="738" />
       <source>Error while deleting the queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="721" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="740" />
       <source>Error while setting the active queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="743" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="762" />
       <source>Available Queues</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="757" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="777" />
       <source>Initializing new queue repository</source>
       <translation type="unfinished" />
     </message>
@@ -72626,17 +72641,17 @@
   <context>
     <name>Rebase</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="83" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="86" />
       <source>Rebase Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="106" />
       <source>Rebase Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="121" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="127" />
       <source>Rebase Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
@@ -72887,7 +72902,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="421" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="423" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -72941,37 +72956,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="402" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="403" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="403" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="404" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="424" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
       <source>unknown</source>
       <translation type="unfinished">bilinmeyen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="456" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="466" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="468" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="470" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -75895,49 +75910,49 @@
   <context>
     <name>Shelve</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="105" />
       <source>Shelve current changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="144" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="151" />
       <source>Restore shelved changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="162" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="170" />
       <source>Abort restore operation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="182" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="191" />
       <source>Continue restore operation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="201" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211" />
       <source>Select the shelves to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="220" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="222" />
       <source>Delete shelves</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="212" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="223" />
       <source>Do you really want to delete these shelves?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="238" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="249" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="242" />
       <source>Delete all shelves</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="232" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="243" />
       <source>Do you really want to delete all shelved changes?</source>
       <translation type="unfinished" />
     </message>
@@ -78746,7 +78761,7 @@
   <context>
     <name>Strip</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="64" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="68" />
       <source>Stripping changesets from repository</source>
       <translation type="unfinished" />
     </message>
@@ -78862,7 +78877,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2138" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2173" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="185" />
       <source>The svn process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -78898,338 +78913,338 @@
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="320" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="334" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="335" />
       <source>Importing project into Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="379" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="375" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="378" />
       <source>Subversion Checkout</source>
       <translation>Altsürüm Kontrolü</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="450" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="436" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="376" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="452" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="381" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="442" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="379" />
       <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="402" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="402" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="406" />
       <source>Checking project out of Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="449" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="435" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="441" />
       <source>Subversion Export</source>
       <translation>Altsürüm Dışaaktarma</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="471" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="459" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="473" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="466" />
       <source>Exporting project from Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="554" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="541" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="533" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="558" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="542" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="597" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="600" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="592" />
       <source>Commiting changes to Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="670" />
       <source>Synchronizing with the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="816" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="774" />
       <source>Adding files/directories to the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="927" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="852" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="933" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="869" />
       <source>Adding directory trees to the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="968" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="975" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="908" />
       <source>Removing files/directories from the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1032" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="953" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1042" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="973" />
       <source>Moving {0}</source>
       <translation>Taşınıyor {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1331" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1302" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1162" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1132" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1216" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1187" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1035" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1351" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1319" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1176" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1143" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1243" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1211" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1087" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1055" />
       <source>Subversion Error</source>
       <translation>Altsürüm Hatası</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1133" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1036" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1144" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1056" />
       <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1065" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1177" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1088" />
       <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1214" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1185" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1099" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1122" />
       <source>Tagging {0} in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1246" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1235" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1143" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1132" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1262" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1251" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1167" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1156" />
       <source>Revert changes</source>
       <translation type="unfinished">Değişiklikleri başa döndür</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1236" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1133" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1252" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1157" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1247" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1144" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1168" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1255" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1271" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1174" />
       <source>Reverting changes</source>
       <translation>Değişiklikler eski haline alınıyor</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1303" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1188" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1320" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1212" />
       <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1332" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1217" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1352" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1244" />
       <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1355" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1246" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1375" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273" />
       <source>Switching to {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1456" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1313" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1481" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1344" />
       <source>Merging {0}</source>
       <translation>Birleştiriliyor {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1787" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1602" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1813" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633" />
       <source>Cleaning up {0}</source>
       <translation>Temizle {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1828" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1859" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1666" />
       <source>Subversion command</source>
       <translation>Altsürüm komutu</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1960" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1991" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1849" />
       <source>Resolving conficts</source>
       <translation>Çelişki çözümleniyor</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1852" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2036" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1885" />
       <source>Copying {0}</source>
       <translation>Kopyalanıyor {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2084" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2067" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1923" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1902" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2117" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2100" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1956" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1935" />
       <source>Subversion Set Property</source>
       <translation>Altsürüm Özelliklerini Ayarla</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2131" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2068" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1951" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1903" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2101" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1936" />
       <source>You have to supply a property name. Aborting.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2147" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2130" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1968" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1950" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1939" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2181" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2164" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2001" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1983" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1972" />
       <source>Subversion Delete Property</source>
       <translation>Altsürüm Silme Önceliği</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1973" />
       <source>Enter property name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2140" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2175" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2403" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2391" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2382" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2206" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2194" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2185" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2440" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2428" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2419" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2241" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2229" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220" />
       <source>Subversion Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2404" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2207" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2242" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Dosya &lt;b&gt;{0}&lt;/b&gt; okunamıyor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2466" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2260" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2503" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2295" />
       <source>Locking in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2508" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2545" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2324" />
       <source>Unlocking in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2558" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2314" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2595" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2351" />
       <source>Relocating</source>
       <translation>Yeniden konumlandırılıyor</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2584" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2333" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2621" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2370" />
       <source>Repository Browser</source>
       <translation>Kaynak Havuzu Gözatıcısı</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2585" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2334" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2371" />
       <source>Enter the repository URL.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2610" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2647" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2441" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2404" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2367" />
       <source>Remove from changelist</source>
       <translation>Değişiklik listesinden çıkar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2649" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2638" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2383" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2687" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2676" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2420" />
       <source>Add to changelist</source>
       <translation>Değişiklik listesine ekle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2639" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2384" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2677" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2421" />
       <source>Enter name of the changelist:</source>
       <translation>Değişiklik listesi adını giriniz:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2706" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2474" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2746" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2511" />
       <source>Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="338" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="339" />
       <source>Imported revision {0}.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="635" />
       <source>Committed revision {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1363" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1384" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1226" />
       <source>Revision {0}.
 </source>
       <translation>Gözden geçirme {0}.
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2107" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2141" />
       <source>Property set.</source>
       <translation>Özellikleri Ayarla.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2200" />
       <source>Property deleted.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2448" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2485" />
       <source>Subversion Lock</source>
       <translation>Altsürüm Kilidi</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2449" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2486" />
       <source>Enter lock comment</source>
       <translation type="unfinished" />
     </message>
@@ -89551,133 +89566,133 @@
   <context>
     <name>UF2FlashDialog</name>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="722" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="732" />
       <source>&lt;h3&gt;CircuitPython Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Switch your device to 'bootloader' mode by double-pressing the reset button.&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;(If this does not happen, then try shorter or longer pauses between presses.)&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="748" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="758" />
       <source>&lt;h3&gt;Pi Pico (RP2040/RP2350) Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Enter 'bootloader' mode (board &lt;b&gt;without&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;Plug in your board while holding the BOOTSEL button.&lt;/li&gt;&lt;/ul&gt;Enter 'bootloader' mode (board &lt;b&gt;with&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;hold down RESET&lt;/li&gt;&lt;li&gt;hold down BOOTSEL&lt;/li&gt;&lt;li&gt;release RESET&lt;/li&gt;&lt;li&gt;release BOOTSEL&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/UF2FlashDialog.ui" line="0" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1248" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1256" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1258" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1266" />
       <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1257" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1267" />
       <source>Select the Boot Volume of the device:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="861" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="871" />
       <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="928" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="920" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="904" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="938" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="930" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="914" />
       <source>Manual Select</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1032" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1000" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="977" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1042" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1010" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="987" />
       <source>Reset Instructions:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="979" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="989" />
       <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the appropriate instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1003" />
-      <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/UF2FlashDialog.py" line="1013" />
+      <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1023" />
       <source>&lt;h4&gt;Potentially UF2 capable devices found&lt;/h4&gt;&lt;p&gt;Found these potentially UF2 capable devices:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1034" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1044" />
       <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1046" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1056" />
       <source>Flash Instructions:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1048" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1058" />
       <source>&lt;h4&gt;Flash method 'manual' selected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to flash a device by entering the data manually.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Change the device to 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it) and select its path.&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1073" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1083" />
       <source>Boot Volume not found:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1075" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1085" />
       <source>&lt;h4&gt;No Boot Volume detected.&lt;/h4&gt;&lt;p&gt;Please ensure that the boot volume of the device to be flashed is available. </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1081" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1091" />
       <source>This volume should be named &lt;b&gt;{0}&lt;/b&gt;. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1086" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1096" />
       <source>This volume should have one of these names.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1093" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1103" />
       <source>&lt;h4&gt;Reset Instructions&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set the board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1112" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1122" />
       <source>Multiple Boot Volumes found:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1114" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1124" />
       <source>&lt;h4&gt;Multiple Boot Volumes were found&lt;/h4&gt;&lt;p&gt;These volume paths were found.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please ensure that only one device of a type is ready for flashing. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1133" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1143" />
       <source>Flashing Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1135" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1145" />
       <source>&lt;p&gt;Flashing the selected firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1142" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1152" />
       <source>Flashing {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1144" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1154" />
       <source>&lt;p&gt;Flashing the {0} firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1249" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1259" />
       <source>No UF2 device 'boot' volumes found.</source>
       <translation type="unfinished" />
     </message>
@@ -90243,24 +90258,24 @@
       <translation>Grafik</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="405" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="392" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="375" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="409" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="396" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="379" />
       <source>Save Diagram</source>
       <translation>Şemayı Kaydet</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="377" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="381" />
       <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
       <translation>Taşınabilir Şebeke Grafikleri (*.png);;Ölçeklenebilir vektör Grafikleri (*.svg)</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="393" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="397" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="406" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="410" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;dosyası kaydedilemedi.&lt;/p&gt;</translation>
     </message>
@@ -90438,44 +90453,44 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="95" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="97" />
       <source>{0} (*)</source>
       <comment>list entry is modified</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="179" />
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="158" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="181" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="160" />
       <source>Delete Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="159" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="161" />
       <source>The selected entries contain some with modified data. Shall they really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="180" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="182" />
       <source>The list contains some devices with modified data. Shall they really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="198" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="200" />
       <source>Restore Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="199" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="201" />
       <source>Restoring the list of unknown devices will overwrite all changes made. Do you really want to restore the list?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="263" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="265" />
       <source>Unsaved Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="264" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="266" />
       <source>The list of devices contains some with modified data.</source>
       <translation type="unfinished" />
     </message>
@@ -90988,7 +91003,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7883" />
+      <location filename="../UI/UserInterface.py" line="7890" />
       <location filename="../UI/UserInterface.py" line="1955" />
       <location filename="../UI/UserInterface.py" line="1948" />
       <source>Load session</source>
@@ -92079,7 +92094,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6626" />
+      <location filename="../UI/UserInterface.py" line="6630" />
       <location filename="../UI/UserInterface.py" line="3172" />
       <source>Snapshot</source>
       <translation type="unfinished" />
@@ -92316,8 +92331,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7591" />
-      <location filename="../UI/UserInterface.py" line="7572" />
+      <location filename="../UI/UserInterface.py" line="7598" />
+      <location filename="../UI/UserInterface.py" line="7579" />
       <location filename="../UI/UserInterface.py" line="3402" />
       <source>Export Keyboard Shortcuts</source>
       <translation>Kılavye Kısa Yollarını Dışa Aktar</translation>
@@ -92338,7 +92353,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7610" />
+      <location filename="../UI/UserInterface.py" line="7617" />
       <location filename="../UI/UserInterface.py" line="3421" />
       <source>Import Keyboard Shortcuts</source>
       <translation>Klavye kısayollarını İçe Aktar</translation>
@@ -92747,7 +92762,7 @@
       <translation>Ayarlar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6354" />
+      <location filename="../UI/UserInterface.py" line="6358" />
       <location filename="../UI/UserInterface.py" line="4194" />
       <location filename="../UI/UserInterface.py" line="4179" />
       <source>Help</source>
@@ -92919,313 +92934,313 @@
       <translation>&amp;Hepsini gizle</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6491" />
-      <location filename="../UI/UserInterface.py" line="6480" />
-      <location filename="../UI/UserInterface.py" line="6432" />
-      <location filename="../UI/UserInterface.py" line="6422" />
-      <location filename="../UI/UserInterface.py" line="6245" />
-      <location filename="../UI/UserInterface.py" line="6235" />
-      <location filename="../UI/UserInterface.py" line="6177" />
-      <location filename="../UI/UserInterface.py" line="6167" />
+      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6484" />
+      <location filename="../UI/UserInterface.py" line="6436" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6239" />
+      <location filename="../UI/UserInterface.py" line="6181" />
+      <location filename="../UI/UserInterface.py" line="6171" />
       <source>Problem</source>
       <translation>Problem</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6492" />
-      <location filename="../UI/UserInterface.py" line="6481" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <location filename="../UI/UserInterface.py" line="6423" />
-      <location filename="../UI/UserInterface.py" line="6246" />
-      <location filename="../UI/UserInterface.py" line="6236" />
-      <location filename="../UI/UserInterface.py" line="6178" />
-      <location filename="../UI/UserInterface.py" line="6168" />
+      <location filename="../UI/UserInterface.py" line="6496" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6437" />
+      <location filename="../UI/UserInterface.py" line="6427" />
+      <location filename="../UI/UserInterface.py" line="6250" />
+      <location filename="../UI/UserInterface.py" line="6240" />
+      <location filename="../UI/UserInterface.py" line="6182" />
+      <location filename="../UI/UserInterface.py" line="6172" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6735" />
-      <location filename="../UI/UserInterface.py" line="6646" />
-      <location filename="../UI/UserInterface.py" line="6527" />
-      <location filename="../UI/UserInterface.py" line="6504" />
-      <location filename="../UI/UserInterface.py" line="6445" />
-      <location filename="../UI/UserInterface.py" line="6392" />
-      <location filename="../UI/UserInterface.py" line="6370" />
-      <location filename="../UI/UserInterface.py" line="6321" />
-      <location filename="../UI/UserInterface.py" line="6312" />
-      <location filename="../UI/UserInterface.py" line="6277" />
-      <location filename="../UI/UserInterface.py" line="6268" />
-      <location filename="../UI/UserInterface.py" line="6209" />
-      <location filename="../UI/UserInterface.py" line="6200" />
+      <location filename="../UI/UserInterface.py" line="6739" />
+      <location filename="../UI/UserInterface.py" line="6650" />
+      <location filename="../UI/UserInterface.py" line="6531" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6449" />
+      <location filename="../UI/UserInterface.py" line="6396" />
+      <location filename="../UI/UserInterface.py" line="6374" />
+      <location filename="../UI/UserInterface.py" line="6325" />
+      <location filename="../UI/UserInterface.py" line="6316" />
+      <location filename="../UI/UserInterface.py" line="6281" />
+      <location filename="../UI/UserInterface.py" line="6272" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6204" />
       <source>Process Generation Error</source>
       <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6201" />
+      <location filename="../UI/UserInterface.py" line="6205" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6210" />
+      <location filename="../UI/UserInterface.py" line="6214" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6269" />
+      <location filename="../UI/UserInterface.py" line="6273" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6278" />
+      <location filename="../UI/UserInterface.py" line="6282" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6313" />
+      <location filename="../UI/UserInterface.py" line="6317" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6322" />
+      <location filename="../UI/UserInterface.py" line="6326" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6355" />
+      <location filename="../UI/UserInterface.py" line="6359" />
       <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
       <translation>Hali hazırda kullanıcı göstericisi seçilmedi. Lütfen .birini belirlemek için özellikler diyaloğunu kullanının.</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6371" />
+      <location filename="../UI/UserInterface.py" line="6375" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6393" />
+      <location filename="../UI/UserInterface.py" line="6397" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6446" />
+      <location filename="../UI/UserInterface.py" line="6450" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6505" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6528" />
+      <location filename="../UI/UserInterface.py" line="6532" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6627" />
+      <location filename="../UI/UserInterface.py" line="6631" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6647" />
+      <location filename="../UI/UserInterface.py" line="6651" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6680" />
-      <location filename="../UI/UserInterface.py" line="6670" />
+      <location filename="../UI/UserInterface.py" line="6684" />
+      <location filename="../UI/UserInterface.py" line="6674" />
       <source>External Tools</source>
       <translation>Harici Araçlar</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6671" />
+      <location filename="../UI/UserInterface.py" line="6675" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6681" />
+      <location filename="../UI/UserInterface.py" line="6685" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6718" />
+      <location filename="../UI/UserInterface.py" line="6722" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6736" />
+      <location filename="../UI/UserInterface.py" line="6740" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6815" />
+      <location filename="../UI/UserInterface.py" line="6819" />
       <source>Process '{0}' has exited.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7102" />
-      <location filename="../UI/UserInterface.py" line="7040" />
-      <location filename="../UI/UserInterface.py" line="6996" />
-      <location filename="../UI/UserInterface.py" line="6922" />
-      <location filename="../UI/UserInterface.py" line="6858" />
+      <location filename="../UI/UserInterface.py" line="7106" />
+      <location filename="../UI/UserInterface.py" line="7044" />
+      <location filename="../UI/UserInterface.py" line="7000" />
+      <location filename="../UI/UserInterface.py" line="6926" />
+      <location filename="../UI/UserInterface.py" line="6862" />
       <source>Documentation Missing</source>
       <translation>Eksik Belgeleme</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7103" />
-      <location filename="../UI/UserInterface.py" line="7041" />
-      <location filename="../UI/UserInterface.py" line="6997" />
-      <location filename="../UI/UserInterface.py" line="6923" />
-      <location filename="../UI/UserInterface.py" line="6859" />
+      <location filename="../UI/UserInterface.py" line="7107" />
+      <location filename="../UI/UserInterface.py" line="7045" />
+      <location filename="../UI/UserInterface.py" line="7001" />
+      <location filename="../UI/UserInterface.py" line="6927" />
+      <location filename="../UI/UserInterface.py" line="6863" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7084" />
-      <location filename="../UI/UserInterface.py" line="6966" />
+      <location filename="../UI/UserInterface.py" line="7088" />
+      <location filename="../UI/UserInterface.py" line="6970" />
       <source>Documentation</source>
       <translation>Belgeleme</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6967" />
+      <location filename="../UI/UserInterface.py" line="6971" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7085" />
+      <location filename="../UI/UserInterface.py" line="7089" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7264" />
-      <location filename="../UI/UserInterface.py" line="7200" />
+      <location filename="../UI/UserInterface.py" line="7268" />
+      <location filename="../UI/UserInterface.py" line="7204" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7201" />
+      <location filename="../UI/UserInterface.py" line="7205" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7265" />
+      <location filename="../UI/UserInterface.py" line="7269" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7311" />
+      <location filename="../UI/UserInterface.py" line="7315" />
       <source>Open Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7311" />
+      <location filename="../UI/UserInterface.py" line="7315" />
       <source>Could not start a web browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7612" />
-      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7619" />
+      <location filename="../UI/UserInterface.py" line="7581" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7592" />
+      <location filename="../UI/UserInterface.py" line="7599" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7796" />
+      <location filename="../UI/UserInterface.py" line="7803" />
       <source>Load crash session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7799" />
+      <location filename="../UI/UserInterface.py" line="7806" />
       <source>Clean crash sessions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7836" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7837" />
+      <location filename="../UI/UserInterface.py" line="7844" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7860" />
+      <location filename="../UI/UserInterface.py" line="7867" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7885" />
-      <location filename="../UI/UserInterface.py" line="7862" />
+      <location filename="../UI/UserInterface.py" line="7892" />
+      <location filename="../UI/UserInterface.py" line="7869" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7954" />
+      <location filename="../UI/UserInterface.py" line="7961" />
       <source>Found Crash Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7955" />
+      <location filename="../UI/UserInterface.py" line="7962" />
       <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8028" />
+      <location filename="../UI/UserInterface.py" line="8035" />
       <source>Clean stale crash sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8029" />
+      <location filename="../UI/UserInterface.py" line="8036" />
       <source>Do you really want to delete these stale crash session files?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8405" />
+      <location filename="../UI/UserInterface.py" line="8412" />
       <source>Drop Error</source>
       <translation>Düşme hatası</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8406" />
+      <location filename="../UI/UserInterface.py" line="8413" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; bir dosya değil.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8594" />
+      <location filename="../UI/UserInterface.py" line="8605" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8595" />
+      <location filename="../UI/UserInterface.py" line="8606" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8640" />
+      <location filename="../UI/UserInterface.py" line="8651" />
       <source>First time usage</source>
       <translation>İlk kullanım</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8641" />
+      <location filename="../UI/UserInterface.py" line="8652" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8663" />
+      <location filename="../UI/UserInterface.py" line="8674" />
       <source>Select Workspace Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8831" />
+      <location filename="../UI/UserInterface.py" line="8842" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8832" />
+      <location filename="../UI/UserInterface.py" line="8843" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -93923,8 +93938,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginVcsGit.py" line="134" />
-      <location filename="../Plugins/PluginVcsGit.py" line="98" />
+      <location filename="../Plugins/PluginVcsGit.py" line="133" />
+      <location filename="../Plugins/PluginVcsGit.py" line="97" />
       <source>Git</source>
       <translation type="unfinished" />
     </message>
@@ -94138,156 +94153,156 @@
   <context>
     <name>VcsProjectHelper</name>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="76" />
+      <location filename="../VCS/ProjectHelper.py" line="77" />
       <source>New from repository</source>
       <translation>Kaynak havuzundan yeni</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="78" />
+      <location filename="../VCS/ProjectHelper.py" line="79" />
       <source>&amp;New from repository...</source>
       <translation>Kay&amp;nak havuzundan yeni...</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="85" />
+      <location filename="../VCS/ProjectHelper.py" line="86" />
       <source>Create a new project from the VCS repository</source>
       <translation>VCS kaynak havuzundan yeni bir proje oluştur</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="90" />
+      <location filename="../VCS/ProjectHelper.py" line="91" />
       <source>&lt;b&gt;New from repository&lt;/b&gt;&lt;p&gt;This creates a new local project from the VCS repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Kaynak havuzundan Yeni&lt;/b&gt;&lt;p&gt;Bu VCS kaynak havuzundan yeni bir yerel proje oluşturur.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="101" />
+      <location filename="../VCS/ProjectHelper.py" line="102" />
       <source>Export from repository</source>
       <translation>Kaynak havuzundan ihraç et</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="103" />
+      <location filename="../VCS/ProjectHelper.py" line="104" />
       <source>&amp;Export from repository...</source>
       <translation>Dışarı kaynak havuzundan ihraç &amp;et...</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="112" />
+      <location filename="../VCS/ProjectHelper.py" line="113" />
       <source>Export a project from the repository</source>
       <translation>Dışa Kaynak havuzundan proje aktar</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="117" />
+      <location filename="../VCS/ProjectHelper.py" line="118" />
       <source>&lt;b&gt;Export from repository&lt;/b&gt;&lt;p&gt;This exports a project from the repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Kaynak havuzundan dışa aktar&lt;/b&gt;&lt;p&gt;Bu kaynak havuzundan bir projeyi dışa aktarır.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="127" />
+      <location filename="../VCS/ProjectHelper.py" line="128" />
       <source>Add to repository</source>
       <translation>Kaynak havuzuna ekle</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="129" />
+      <location filename="../VCS/ProjectHelper.py" line="130" />
       <source>&amp;Add to repository...</source>
       <translation>K&amp;aynak havuzuna ekle...</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="136" />
+      <location filename="../VCS/ProjectHelper.py" line="137" />
       <source>Add the local project to the VCS repository</source>
       <translation>VCS kaynak havuzuna yerel proje ekle</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="141" />
+      <location filename="../VCS/ProjectHelper.py" line="142" />
       <source>&lt;b&gt;Add to repository&lt;/b&gt;&lt;p&gt;This adds (imports) the local project to the VCS repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Kaynak havuzuna ekle&lt;/b&gt;&lt;p&gt;Bu yerel projeyi kaynak havuzana ekler ( aktarır).&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="192" />
-      <location filename="../VCS/ProjectHelper.py" line="190" />
+      <location filename="../VCS/ProjectHelper.py" line="193" />
+      <location filename="../VCS/ProjectHelper.py" line="191" />
       <source>VCS</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="265" />
-      <location filename="../VCS/ProjectHelper.py" line="236" />
+      <location filename="../VCS/ProjectHelper.py" line="266" />
+      <location filename="../VCS/ProjectHelper.py" line="237" />
       <source>New Project</source>
       <translation>Yeni Proje</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="462" />
-      <location filename="../VCS/ProjectHelper.py" line="237" />
+      <location filename="../VCS/ProjectHelper.py" line="465" />
+      <location filename="../VCS/ProjectHelper.py" line="238" />
       <source>Select version control system for the project</source>
       <translation>proje için sürüm kontrol sistemini seçin</translation>
     </message>
     <message>
+      <location filename="../VCS/ProjectHelper.py" line="497" />
+      <location filename="../VCS/ProjectHelper.py" line="267" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation>VCS komut seçeneklerini düzenlemek istiyor musunuz?</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="287" />
+      <source>Create project directory</source>
+      <translation>Proje dizinin oluştur</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="290" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Proje dizini &lt;b&gt;{0}&lt;/b&gt; oluşturulamıyor.&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="396" />
+      <location filename="../VCS/ProjectHelper.py" line="380" />
+      <location filename="../VCS/ProjectHelper.py" line="336" />
+      <location filename="../VCS/ProjectHelper.py" line="316" />
+      <source>New project from repository</source>
+      <translation>Kaynak havuzundan yeni proje</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="319" />
+      <source>Select a project file to open.</source>
+      <translation>Açmak için bir proje seçiniz.</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="339" />
+      <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="384" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation>Proje dosyaları kaynak havuzuna aktarılacak mı?</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="399" />
+      <source>The project could not be retrieved from the repository.</source>
+      <translation>Proje kaynak havuzundan geri alınamıyor.</translation>
+    </message>
+    <message>
       <location filename="../VCS/ProjectHelper.py" line="494" />
-      <location filename="../VCS/ProjectHelper.py" line="266" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation>VCS komut seçeneklerini düzenlemek istiyor musunuz?</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="286" />
-      <source>Create project directory</source>
-      <translation>Proje dizinin oluştur</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="289" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Proje dizini &lt;b&gt;{0}&lt;/b&gt; oluşturulamıyor.&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="393" />
-      <location filename="../VCS/ProjectHelper.py" line="377" />
-      <location filename="../VCS/ProjectHelper.py" line="335" />
-      <location filename="../VCS/ProjectHelper.py" line="315" />
-      <source>New project from repository</source>
-      <translation>Kaynak havuzundan yeni proje</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="318" />
-      <source>Select a project file to open.</source>
-      <translation>Açmak için bir proje seçiniz.</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="338" />
-      <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="381" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation>Proje dosyaları kaynak havuzuna aktarılacak mı?</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="396" />
-      <source>The project could not be retrieved from the repository.</source>
-      <translation>Proje kaynak havuzundan geri alınamıyor.</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="491" />
-      <location filename="../VCS/ProjectHelper.py" line="461" />
+      <location filename="../VCS/ProjectHelper.py" line="464" />
       <source>Import Project</source>
       <translation>Proje İçe Aktar</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="535" />
+      <location filename="../VCS/ProjectHelper.py" line="540" />
       <source>Update</source>
       <translation>Güncelle</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="669" />
-      <location filename="../VCS/ProjectHelper.py" line="536" />
+      <location filename="../VCS/ProjectHelper.py" line="674" />
+      <location filename="../VCS/ProjectHelper.py" line="541" />
       <source>The project should be reread. Do this now?</source>
       <translation>Projenin yeniden okunması gerekiyor. Şimdi yapılsın mı?</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="572" />
+      <location filename="../VCS/ProjectHelper.py" line="577" />
       <source>Remove project from repository</source>
       <translation>Kaynak havuzundan proje kaldır</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="575" />
+      <location filename="../VCS/ProjectHelper.py" line="580" />
       <source>Dou you really want to remove this project from the repository (and disk)?</source>
       <translation>Bu projeyi gerçekten kaynak havuzundan (ve diskten)  silmek istiyor musunuz?</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="668" />
+      <location filename="../VCS/ProjectHelper.py" line="673" />
       <source>Switch</source>
       <translation type="unfinished">Değiştirmek</translation>
     </message>
@@ -99278,54 +99293,54 @@
   <context>
     <name>VirtualenvManager</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="318" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="322" />
       <source>Add Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="319" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="323" />
       <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="356" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="362" />
       <source>Change Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="389" />
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="357" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="395" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="363" />
       <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="388" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="394" />
       <source>Rename Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="480" />
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="413" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="486" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="419" />
       <source>{0} - {1}</source>
       <translation type="unfinished">{0} - {1}</translation>
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="420" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="426" />
       <source>Delete Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="421" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="427" />
       <source>Do you really want to delete these virtual environments?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="487" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="493" />
       <source>Remove Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="488" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="494" />
       <source>Do you really want to remove these virtual environments?</source>
       <translation type="unfinished" />
     </message>
@@ -99333,7 +99348,7 @@
   <context>
     <name>VirtualenvManagerDialog</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" />
+      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="449" />
       <source>Manage Virtual Environments</source>
       <translation type="unfinished" />
     </message>
@@ -99456,7 +99471,7 @@
   <context>
     <name>VirtualenvManagerWindow</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" />
+      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="489" />
       <source>Manage Virtual Environments</source>
       <translation type="unfinished" />
     </message>
@@ -104557,22 +104572,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="125" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="117" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="127" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="119" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="49" />
       <source>Connect WiFi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="173" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="167" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="175" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="169" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="50" />
       <source>Check Internet Connection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="147" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="141" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="149" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="143" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="51" />
       <source>Disconnect WiFi</source>
       <translation type="unfinished" />
@@ -104583,40 +104598,40 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="244" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="235" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="225" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="215" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="249" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="240" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="230" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="220" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="55" />
       <source>Write WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="282" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="272" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="261" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="287" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="277" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="266" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="56" />
       <source>Remove WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="495" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="486" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="500" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="491" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="58" />
       <source>Enable WebREPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="529" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="520" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="512" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="534" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="525" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="517" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="59" />
       <source>Disable WebREPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="313" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="329" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="318" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="61" />
       <source>Start WiFi Access Point</source>
       <translation type="unfinished" />
@@ -104627,14 +104642,14 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="378" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="383" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="66" />
       <source>Show Connected Clients</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="345" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="359" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="350" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="68" />
       <source>Stop WiFi Access Point</source>
       <translation type="unfinished" />
@@ -104650,186 +104665,186 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="464" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="448" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="428" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="419" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="469" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="433" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="424" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="79" />
       <source>Set Network Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="118" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="120" />
       <source>&lt;p&gt;The device was connected to &lt;b&gt;{0}&lt;/b&gt; successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="126" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="128" />
       <source>&lt;p&gt;The device could not connect to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="533" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="499" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="286" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="248" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="150" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="129" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="538" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="504" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="291" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="253" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="178" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="152" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="131" />
       <source>unknown</source>
       <translation type="unfinished">bilinmeyen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="142" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="144" />
       <source>&lt;p&gt;The device was disconnected from the WiFi network.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="148" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="150" />
       <source>&lt;p&gt;The device could not be disconnected.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="161" />
-      <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="163" />
+      <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="165" />
       <source>&lt;p&gt;The internet connection is &lt;b&gt;not available&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="174" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176" />
       <source>&lt;p&gt;The internet is not available.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="236" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="216" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="241" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="221" />
       <source>&lt;p&gt;The WiFi credentials were saved on the device. The device will connect to the WiFi network at boot time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="226" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="231" />
       <source>&lt;p&gt;The WiFi credentials and a connect script were saved on the device. Use the script by simply importing it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="245" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="250" />
       <source>&lt;p&gt;The WiFi credentials could not be saved on the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="262" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="267" />
       <source>Shall the saved WiFi credentials really be removed from the connected device?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="273" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="278" />
       <source>&lt;p&gt;The WiFi credentials were removed from the device. The device will not connect to the WiFi network at boot time anymore.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="283" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="288" />
       <source>&lt;p&gt;The WiFi credentials could not be removed from the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="314" />
-      <source>The WiFi Access Point interface was started successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="319" />
+      <source>The WiFi Access Point interface was started successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324" />
       <source>&lt;p&gt;The WiFi Access Point could not be started.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="405" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="356" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="326" />
+      <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351" />
+      <source>The WiFi Access Point interface was stopped successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354" />
+      <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="384" />
+      <source>No clients are connected to the access point.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="408" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="399" />
+      <source>Deactivate WiFi Interface</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="400" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="321" />
-      <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="346" />
-      <source>The WiFi Access Point interface was stopped successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="349" />
-      <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="379" />
-      <source>No clients are connected to the access point.</source>
+      <source>The WiFi interface was deactivated successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="403" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="394" />
-      <source>Deactivate WiFi Interface</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="395" />
-      <source>The WiFi interface was deactivated successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="398" />
       <source>&lt;p&gt;The WiFi interface could not be deactivated.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="420" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="425" />
       <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;adafruit_ntp&lt;/b&gt; is not installed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="429" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="434" />
       <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;ntptime&lt;/b&gt; is not available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="449" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="454" />
       <source>The device time was synchronized successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453" />
-      <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="458" />
+      <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="463" />
       <source>&lt;p&gt;The device time could not be synchronized. Is the device connected to a WiFi network?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="487" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="492" />
       <source>&lt;p&gt;The WebREPL server of the device will be activated after a reboot.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="496" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="501" />
       <source>&lt;p&gt;The WebREPL server of the device could not be enabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="513" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="518" />
       <source>Shall the WebREPL server of the device really be disabled?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="521" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="526" />
       <source>&lt;p&gt;The WebREPL server of the device will not be enabled at boot time anymore.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="530" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="535" />
       <source>&lt;p&gt;The WebREPL server of the device could not be disabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -105389,32 +105404,32 @@
   <context>
     <name>mercurial</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1349" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1383" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Esas #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Değişiklik seti&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1913" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1955" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1391" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiketler&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1919" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1363" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1961" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1397" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1370" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1968" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1404" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branşlar&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1376" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1410" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
@@ -105423,7 +105438,7 @@
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Teslim zamnanı&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1429" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -105434,35 +105449,35 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1887" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1929" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1894" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1936" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1901" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1943" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;İp ucu&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1906" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1948" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;DEğişiklik seti&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1933" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1975" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Esas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1981" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -106126,17 +106141,17 @@
   <context>
     <name>subversion</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1736" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1769" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Kaynak Havuzu Bilgisi&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Altsürüm V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Geçerli Gözden Geçirme&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Teslim edilen gözden geçirme&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Teslim Tarihi&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Teslim Zamanı&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Son yazar&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1888" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1919" />
       <source>unknown</source>
       <translation>bilinmeyen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1892" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1923" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;KAynak Havuzu Bilgisi&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Altsürümn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Altsürüm API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Geçerli Gözden Geçirme&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Teslim edilen gözden geçirme&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Teslim tarihi&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Teslim zamanı&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Son yazar&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_zh_CN.ts	Fri Nov 01 12:25:41 2024 +0100
+++ b/src/eric7/i18n/eric7_zh_CN.ts	Fri Nov 01 18:12:30 2024 +0100
@@ -2020,47 +2020,47 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="281" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="284" />
       <source>Formatting Failure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="282" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="285" />
       <source>&lt;p&gt;Formatting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="545" />
-      <source>would reformat</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../CodeFormatting/BlackFormattingDialog.py" line="548" />
+      <source>would reformat</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="551" />
       <source>reformatted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="553" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="556" />
       <source>unchanged</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="557" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="560" />
       <source>unmodified</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="561" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="564" />
       <source>ignored</source>
       <translation type="unfinished">已忽略</translation>
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="565" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="568" />
       <source>failed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="570" />
+      <location filename="../CodeFormatting/BlackFormattingDialog.py" line="573" />
       <source>invalid status ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -4422,16 +4422,16 @@
   <context>
     <name>CircuitPythonUpdaterInterface</name>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="600" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="592" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="579" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="546" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="516" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="506" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="486" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="469" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="460" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="446" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="615" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="607" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="594" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="561" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="531" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="521" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="501" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="484" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="475" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="54" />
       <source>Install Modules</source>
       <translation type="unfinished" />
@@ -4467,10 +4467,10 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="385" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="375" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="365" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="346" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="396" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="355" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="95" />
       <source>Update Modules</source>
       <translation type="unfinished" />
@@ -4491,8 +4491,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="642" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="621" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="658" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="636" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="108" />
       <source>Uninstall Modules</source>
       <translation type="unfinished" />
@@ -4513,25 +4513,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="249" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="236" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="225" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="213" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="201" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="188" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="251" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="238" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="227" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="215" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="203" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="190" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="118" />
       <source>Add Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="284" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="269" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="287" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="271" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="119" />
       <source>Remove Bundles</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="671" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="689" />
       <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="121" />
       <source>Show Local Cache Path</source>
       <translation type="unfinished" />
@@ -4552,132 +4552,132 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="189" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="191" />
       <source>Enter Bundle by 'User/Repo' Github String:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="202" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="204" />
       <source>&lt;p&gt;The bundle &lt;b&gt;{0}&lt;/b&gt; is already in the list.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="214" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="216" />
       <source>&lt;p&gt;The bundle string is invalid, expecting github URL or 'user/repository' string.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="226" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="228" />
       <source>&lt;p&gt;The bundle string is invalid. The repository doesn't exist (error code 404).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="237" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="239" />
       <source>&lt;p&gt;The bundle string is invalid. Is the repository a valid circup bundle?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="250" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="252" />
       <source>&lt;p&gt;Added bundle &lt;b&gt;{0}&lt;/b&gt; ({1}).&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="270" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="272" />
       <source>Select the bundles to be removed:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="285" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="288" />
       <source>&lt;p&gt;These bundles were removed from the local bundles list.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="347" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="356" />
       <source>All modules are already up-to-date.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="366" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="377" />
       <source>&lt;p&gt;There was an error updating &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="376" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="387" />
       <source>&lt;p&gt;These modules were updated on the connected device.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="386" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="397" />
       <source>No modules could be updated.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="448" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="463" />
       <source>Text Files (*.txt);;All Files (*)</source>
       <translation type="unfinished">文本文件 (*.txt);;所有文件 (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="461" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="476" />
       <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not contain valid modules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="470" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="485" />
       <source>&lt;p&gt;The given requirements file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="488" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="503" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="507" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="522" />
       <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not contain valid import statements or does not import external modules.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="517" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="532" />
       <source>&lt;p&gt;The given code file &lt;b&gt;{0}&lt;/b&gt; does not exist.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="547" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="562" />
       <source>&lt;p&gt;Ready to install these modules?{0}{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="552" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="567" />
       <source>Dependencies:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="580" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="595" />
       <source>&lt;p&gt;Installation complete. These modules were installed successfully.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="593" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="608" />
       <source>&lt;p&gt;Installation complete. No modules were installed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="601" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="616" />
       <source>&lt;p&gt;No modules installation is required.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="622" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="637" />
       <source>Select the modules/packages to be uninstalled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="643" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="659" />
       <source>&lt;p&gt;These modules/packages were uninstalled from the connected device.{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="672" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py" line="690" />
       <source>&lt;p&gt;&lt;b&gt;circup&lt;/b&gt; stores the downloaded CircuitPython bundles in this directory.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -4685,44 +4685,44 @@
   <context>
     <name>CircupFunctions</name>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="75" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="84" />
       <source>Find Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="76" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="85" />
       <source>&lt;p&gt;There was an error: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="148" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="109" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="157" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="118" />
       <source>Download Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="110" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="119" />
       <source>&lt;p&gt;There was a problem downloading the bundle. Please try again in a moment.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="149" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="158" />
       <source>&lt;p&gt;Missing file &lt;b&gt;boot_out.txt&lt;/b&gt; on the device: wrong path or drive corrupted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="243" />
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="232" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="252" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="241" />
       <source>Install Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="233" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="242" />
       <source>&lt;p&gt;The compiled version of module &lt;b&gt;{0}&lt;/b&gt; cannot be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="244" />
+      <location filename="../MicroPython/Devices/CircuitPythonUpdater/CircupFunctions.py" line="253" />
       <source>&lt;p&gt;The module name &lt;b&gt;{0}&lt;/b&gt; is not known.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -4846,17 +4846,17 @@
   <context>
     <name>Closehead</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="52" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54" />
       <source>Revision &lt;{0}&gt; closed.</source>
       <translation>修订 &lt;{0}&gt; 已关闭。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="54" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="56" />
       <source>Revisions &lt;{0}&gt; closed.</source>
       <translation>修订 &lt;{0}&gt; 已关闭。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="61" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/closehead.py" line="63" />
       <source>Closing Heads</source>
       <translation>正在关闭头文件</translation>
     </message>
@@ -6186,19 +6186,19 @@
       <translation>找不到文件(检查您忽略的列表)。</translation>
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1650" />
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1609" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1652" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1611" />
       <source>{0} - {1}</source>
       <comment>issue code, message</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2995" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2997" />
       <source>Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2996" />
+      <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2998" />
       <source>Enter a Commented Code Whitelist Pattern</source>
       <translation type="unfinished" />
     </message>
@@ -7463,7 +7463,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="713" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="715" />
       <location filename="../CondaInterface/CondaPackagesWidget.py" line="181" />
       <source>Delete Environment</source>
       <translation type="unfinished" />
@@ -7510,22 +7510,22 @@
       <translation type="unfinished">文本文件 (*.txt);;所有文件 (*)</translation>
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="686" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="687" />
       <source>Create Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="714" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="716" />
       <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="739" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="741" />
       <source>Edit Configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CondaInterface/CondaPackagesWidget.py" line="740" />
+      <location filename="../CondaInterface/CondaPackagesWidget.py" line="742" />
       <source>The configuration file "{0}" does not exist or is not writable.</source>
       <translation type="unfinished" />
     </message>
@@ -8868,30 +8868,30 @@
   <context>
     <name>CycloneDX</name>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="190" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="182" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="151" />
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="115" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="192" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="184" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="153" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="117" />
       <source>CycloneDX - SBOM Creation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="118" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="120" />
       <source>&lt;p&gt;The configured input file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="152" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="154" />
       <source>&lt;p&gt;Some of the dependencies do not have pinned version numbers.&lt;ul&gt;{0}&lt;/ul&gt;The above listed packages will NOT be included in the generated CycloneDX SBOM file as version is a mandatory field.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="183" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="185" />
       <source>&lt;p&gt;The SBOM data was written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="191" />
+      <location filename="../CycloneDXInterface/CycloneDXUtilities.py" line="193" />
       <source>&lt;p&gt;The SBOM file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9233,23 +9233,23 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1355" />
-      <location filename="../Debugger/DebugServer.py" line="1272" />
-      <location filename="../Debugger/DebugServer.py" line="1188" />
-      <location filename="../Debugger/DebugServer.py" line="1098" />
+      <location filename="../Debugger/DebugServer.py" line="1358" />
+      <location filename="../Debugger/DebugServer.py" line="1275" />
+      <location filename="../Debugger/DebugServer.py" line="1191" />
+      <location filename="../Debugger/DebugServer.py" line="1101" />
       <source>Start Debugger</source>
       <translation type="unfinished">启动调试器</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1356" />
-      <location filename="../Debugger/DebugServer.py" line="1273" />
-      <location filename="../Debugger/DebugServer.py" line="1189" />
-      <location filename="../Debugger/DebugServer.py" line="1099" />
+      <location filename="../Debugger/DebugServer.py" line="1359" />
+      <location filename="../Debugger/DebugServer.py" line="1276" />
+      <location filename="../Debugger/DebugServer.py" line="1192" />
+      <location filename="../Debugger/DebugServer.py" line="1102" />
       <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="1945" />
+      <location filename="../Debugger/DebugServer.py" line="1948" />
       <source>
 Not connected
 </source>
@@ -9258,35 +9258,35 @@
 </translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2110" />
+      <location filename="../Debugger/DebugServer.py" line="2113" />
       <source>Passive debug connection received
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2119" />
+      <location filename="../Debugger/DebugServer.py" line="2122" />
       <source>Passive debug connection received while not in passive mode.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2125" />
+      <location filename="../Debugger/DebugServer.py" line="2128" />
       <source>Debug Client Connection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2126" />
+      <location filename="../Debugger/DebugServer.py" line="2129" />
       <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2141" />
+      <location filename="../Debugger/DebugServer.py" line="2144" />
       <source>Passive debug connection closed
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugServer.py" line="2272" />
+      <location filename="../Debugger/DebugServer.py" line="2275" />
       <source>&lt;project&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -9299,7 +9299,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2374" />
+      <location filename="../Debugger/DebugUI.py" line="2380" />
       <location filename="../Debugger/DebugUI.py" line="234" />
       <source>Run Script</source>
       <translation>运行脚本</translation>
@@ -9320,8 +9320,8 @@
       <translation>&lt;b&gt;运行脚本&lt;/b&gt;&lt;p&gt;设置命令行参数,并在调试器之外运行脚本。如果文件未对更改进行保存,则可能会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="2386" />
       <location filename="../Debugger/DebugUI.py" line="2380" />
-      <location filename="../Debugger/DebugUI.py" line="2374" />
       <location filename="../Debugger/DebugUI.py" line="255" />
       <source>Run Project</source>
       <translation>运行项目</translation>
@@ -9422,7 +9422,7 @@
       <translation>&lt;b&gt;剖析项目&lt;/b&gt;&lt;p&gt;设置命令行参数,并剖析当前项目。如果当前项目的文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2567" />
+      <location filename="../Debugger/DebugUI.py" line="2573" />
       <location filename="../Debugger/DebugUI.py" line="365" />
       <source>Debug Script</source>
       <translation>调试脚本</translation>
@@ -9443,8 +9443,8 @@
       <translation>&lt;b&gt;调试脚本&lt;/b&gt;&lt;p&gt;设置命令行参数,并将当前行设为当前编辑窗口首先执行的 Python 声明。如果文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../Debugger/DebugUI.py" line="2579" />
       <location filename="../Debugger/DebugUI.py" line="2573" />
-      <location filename="../Debugger/DebugUI.py" line="2567" />
       <location filename="../Debugger/DebugUI.py" line="387" />
       <source>Debug Project</source>
       <translation>调试项目</translation>
@@ -9465,7 +9465,7 @@
       <translation>&lt;b&gt;调试当前项目&lt;/b&gt;&lt;p&gt;设置命令行参数,并将当前行设为当前项目主脚本首先执行的 Python 声明。如果当前项目的文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2889" />
+      <location filename="../Debugger/DebugUI.py" line="2895" />
       <location filename="../Debugger/DebugUI.py" line="411" />
       <location filename="../Debugger/DebugUI.py" line="409" />
       <source>Restart</source>
@@ -9904,66 +9904,66 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1775" />
+      <location filename="../Debugger/DebugUI.py" line="1779" />
       <source>Watch Expression Error</source>
       <translation>监视表达式出错</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1776" />
+      <location filename="../Debugger/DebugUI.py" line="1780" />
       <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1804" />
+      <location filename="../Debugger/DebugUI.py" line="1810" />
       <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' already exists.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1809" />
-      <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Debugger/DebugUI.py" line="1815" />
+      <source>&lt;p&gt;A watch expression '&lt;b&gt;{0}&lt;/b&gt;' for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Debugger/DebugUI.py" line="1821" />
       <source>Watch expression already exists</source>
       <translation>监视表达式已存在</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1980" />
-      <location filename="../Debugger/DebugUI.py" line="1971" />
+      <location filename="../Debugger/DebugUI.py" line="1986" />
+      <location filename="../Debugger/DebugUI.py" line="1977" />
       <source>Coverage Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="1973" />
+      <location filename="../Debugger/DebugUI.py" line="1979" />
       <source>Coverage Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2381" />
-      <location filename="../Debugger/DebugUI.py" line="2183" />
-      <location filename="../Debugger/DebugUI.py" line="1981" />
+      <location filename="../Debugger/DebugUI.py" line="2387" />
+      <location filename="../Debugger/DebugUI.py" line="2189" />
+      <location filename="../Debugger/DebugUI.py" line="1987" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>当前项目未定义主脚本。终止</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2182" />
-      <location filename="../Debugger/DebugUI.py" line="2173" />
+      <location filename="../Debugger/DebugUI.py" line="2188" />
+      <location filename="../Debugger/DebugUI.py" line="2179" />
       <source>Profile Run of Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2175" />
+      <location filename="../Debugger/DebugUI.py" line="2181" />
       <source>Profile Run of Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="2574" />
+      <location filename="../Debugger/DebugUI.py" line="2580" />
       <source>There is no main script defined for the current project. No debugging possible.</source>
       <translation>当前项目未定义主脚本。不能进行调试。</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebugUI.py" line="3246" />
+      <location filename="../Debugger/DebugUI.py" line="3252" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; is located on an eric-ide server but no such server is connected. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -10126,26 +10126,26 @@
       <translation type="unfinished">已选择的接口</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="325" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="312" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="336" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="323" />
       <source>Add allowed host</source>
       <translation>添加允许的主机</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="349" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="313" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="360" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="324" />
       <source>Enter the IP address of an allowed host</source>
       <translation>输入允许主机的 IP 地址</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="363" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="326" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="374" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="337" />
       <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="362" />
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="348" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="373" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="359" />
       <source>Edit allowed host</source>
       <translation>编辑允许的主机</translation>
     </message>
@@ -10242,13 +10242,8 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debugger Type:</source>
-      <translation>调试器类型:</translation>
-    </message>
-    <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Select the debugger type of the backend</source>
-      <translation>选择后端的调试器类型</translation>
+      <source>Debug Server Port:</source>
+      <translation>调试服务器端口:</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
@@ -10264,8 +10259,28 @@
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
-      <source>Debug Server Port:</source>
-      <translation>调试服务器端口:</translation>
+      <source>Debugger Type:</source>
+      <translation>调试器类型:</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select the debugger type of the backend</source>
+      <translation>选择后端的调试器类型</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Select to not stop the debugger at the first executable line.</source>
+      <translation type="unfinished">选择在第一个可执行行不要中止调试器。</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>&lt;b&gt;Don't stop at first line&lt;/b&gt;&lt;p&gt;This prevents the debugger from stopping at the first executable line.&lt;/p&gt;</source>
+      <translation type="unfinished">&lt;b&gt;第一行不中止&lt;/b&gt;&lt;p&gt;阻止调试器在第一个可执行行中止调试。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
+      <source>Don't stop at first line</source>
+      <translation type="unfinished">第一行不中止</translation>
     </message>
     <message>
       <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" />
@@ -10615,46 +10630,46 @@
   <context>
     <name>DebuggerInterfacePython</name>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="728" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="705" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="609" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="563" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="445" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="422" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="345" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="321" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="258" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="747" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="724" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="628" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="582" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="464" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="441" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="364" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="340" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="277" />
       <source>Start Debugger</source>
       <translation>启动调试器</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="564" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="259" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="583" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="278" />
       <source>&lt;p&gt;No suitable Python3 environment configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="729" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="706" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="610" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="446" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="423" />
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="322" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="748" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="725" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="629" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="465" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="442" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="341" />
       <source>&lt;p&gt;The debugger backend could not be started.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;调试器后端无法启动。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="346" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="365" />
       <source>&lt;p&gt;Remote debugging is configured but no command for remote login was given.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1691" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1692" />
       <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;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -11665,8 +11680,8 @@
   <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="450" />
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="420" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421" />
       <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.ui" line="0" />
       <source>.desktop Wizard</source>
       <translation type="unfinished" />
@@ -12023,8 +12038,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="451" />
-      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="421" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="452" />
+      <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="422" />
       <source>Only one of 'Only Show In' or  'Not Show In' allowed.</source>
       <translation type="unfinished" />
     </message>
@@ -15172,12 +15187,12 @@
       <translation type="unfinished">光标可以移动到虚拟空间</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="287" />
+      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288" />
       <source>Tab and Indent Override</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="288" />
+      <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="289" />
       <source>Shall the selected entries really be removed?</source>
       <translation type="unfinished" />
     </message>
@@ -15512,27 +15527,27 @@
       <translation>导入高亮风格</translation>
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="803" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="805" />
       <source>Delete Sub-Style</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="804" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="806" />
       <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="840" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="842" />
       <source>{0} - Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="867" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="869" />
       <source>Reset Sub-Styles to Default</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="868" />
+      <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="870" />
       <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -21845,14 +21860,14 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="395" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="193" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1775" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1759" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1782" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1766" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="197" />
       <source>Erase Flash</source>
       <translation type="unfinished" />
@@ -21863,7 +21878,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1864" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1877" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="204" />
       <source>Flash Additional Firmware</source>
       <translation type="unfinished" />
@@ -21875,25 +21890,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="367" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="368" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="211" />
       <source>Restore Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="465" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="467" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="215" />
       <source>Show Chip ID</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="488" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="491" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="218" />
       <source>Show Flash ID</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="511" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="515" />
       <location filename="../MicroPython/Devices/EspDevices.py" line="221" />
       <source>Show MAC Address</source>
       <translation type="unfinished" />
@@ -21914,139 +21929,139 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1863" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1820" />
-      <location filename="../MicroPython/Devices/EspDevices.py" line="366" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1876" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1830" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="367" />
       <source>'esptool write_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="396" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="425" />
       <source>unknown</source>
       <translation type="unfinished">未知</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="434" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="436" />
       <source>&lt;h4&gt;{0} Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="442" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="444" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="448" />
       <source>{0} Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="466" />
       <source>'esptool chip_id' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="487" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="490" />
       <source>'esptool flash_id' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="510" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="514" />
       <source>'esptool read_mac' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="641" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="646" />
       <source>Set Country</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="642" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="647" />
       <source>Reset Country</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="965" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="970" />
       <source>Error saving credentials: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="976" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="981" />
       <source>Error saving auto-connect script: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="980" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="985" />
       <source>Error modifying 'boot.py': {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1017" />
       <source>Error deleting credentials: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1096" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1101" />
       <source>unknown ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1475" />
-      <source>Active</source>
-      <translation type="unfinished">活动的</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1476" />
-      <source>Name</source>
-      <translation type="unfinished">名称</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1477" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/EspDevices.py" line="1480" />
-      <source>Address Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1481" />
-      <source>Public</source>
-      <translation type="unfinished" />
+      <source>Active</source>
+      <translation type="unfinished">活动的</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/EspDevices.py" line="1481" />
+      <source>Name</source>
+      <translation type="unfinished">名称</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1482" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1485" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1486" />
+      <source>Public</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1486" />
       <source>Random</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1484" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1489" />
       <source>MTU</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1484" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1489" />
       <source>{0} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1760" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1767" />
       <source>Shall the flash of the selected device really be erased?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1774" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1781" />
       <source>'esptool erase_flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/EspDevices.py" line="1821" />
+      <location filename="../MicroPython/Devices/EspDevices.py" line="1831" />
       <source>Flash µPy/CPy Firmware</source>
       <translation type="unfinished" />
     </message>
@@ -22054,7 +22069,7 @@
   <context>
     <name>EspFirmwareSelectionDialog</name>
     <message>
-      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="68" />
+      <location filename="../MicroPython/Devices/EspDialogs/EspFirmwareSelectionDialog.py" line="77" />
       <source>Firmware Files (*.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
@@ -24344,22 +24359,22 @@
   <context>
     <name>FindFileFiltersEditDialog</name>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="109" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="111" />
       <source>Delete Selected Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="110" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="112" />
       <source>Shall the selected filters really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="127" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="129" />
       <source>Default Filters</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/FindFileFiltersEditDialog.py" line="128" />
+      <location filename="../UI/FindFileFiltersEditDialog.py" line="130" />
       <source>Do you really want to clear the list of defined file filters and replace it with the list of default filters?</source>
       <translation type="unfinished" />
     </message>
@@ -25048,7 +25063,7 @@
   <context>
     <name>FormattingDiffWidget</name>
     <message>
-      <location filename="../CodeFormatting/FormattingDiffWidget.py" line="63" />
+      <location filename="../CodeFormatting/FormattingDiffWidget.py" line="65" />
       <source>There is no difference.</source>
       <translation type="unfinished">没有差异。</translation>
     </message>
@@ -25148,7 +25163,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1715" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1747" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="219" />
       <source>The git process did not finish within 30s.</source>
       <translation type="unfinished" />
@@ -25174,153 +25189,153 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="307" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="308" />
       <source>Adding files to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="316" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="321" />
       <source>Initial commit to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="348" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="357" />
       <source>Cloning project from a Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="448" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="460" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="449" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="461" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="518" />
       <source>Committing changes to Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="584" />
       <source>Switch</source>
       <translation type="unfinished">转换</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="585" />
       <source>&lt;p&gt;Do you really want to switch to &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="597" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="614" />
       <source>Synchronizing with the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="664" />
       <source>Adding files/directories to the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="721" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="743" />
       <source>Removing files/directories from the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="814" />
       <source>Renaming {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="915" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="942" />
       <source>Unstage files/directories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="968" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="957" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="996" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="985" />
       <source>Revert changes</source>
       <translation type="unfinished">还原改变</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="958" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="986" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="969" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="997" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="975" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1003" />
       <source>Reverting changes</source>
       <translation type="unfinished">还原改变</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1028" />
-      <source>Merging</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1057" />
+      <source>Merging</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1086" />
       <source>Main branch head</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1285" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1315" />
       <source>Git Command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1396" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1426" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1430" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1406" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1436" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1412" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1442" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1417" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1447" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1422" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1452" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1427" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1457" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0} &amp;lt;{1}&amp;gt;&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1462" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1437" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1467" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1443" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1473" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Git V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -25330,459 +25345,459 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1523" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1553" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1524" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1554" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1574" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1621" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1604" />
       <source>Git Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1575" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1605" />
       <source>&lt;p&gt;Copying the directory &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1592" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1622" />
       <source>&lt;p&gt;Copying the file &lt;b&gt;{0}&lt;/b&gt; failed.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2845" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1717" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2920" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1749" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1788" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1775" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1764" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1822" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1809" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1798" />
       <source>Git Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1789" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1823" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 无法读取。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1842" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1877" />
       <source>Fetching from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1879" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1918" />
       <source>Pulling from a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1919" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1962" />
       <source>Pushing to a remote Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1948" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1994" />
       <source>Committing failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1974" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2021" />
       <source>Aborting uncommitted/failed merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2008" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2056" />
       <source>Applying patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2043" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2091" />
       <source>Check patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2046" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2094" />
       <source>Apply patch files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2130" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2181" />
       <source>Tagging in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2443" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2432" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2488" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2510" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2511" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2484" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2578" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2560" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2542" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2486" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2544" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2503" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2561" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2550" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2608" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2597" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2689" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2571" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2753" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2699" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2629" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2599" />
       <source>Git Bundle Files (*.bundle);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2580" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2627" />
       <source>List Bundle Heads</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2687" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2751" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2697" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2660" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2775" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2746" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2816" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3025" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2861" />
+      <source>Git Bisect ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2919" />
+      <source>Process Generation Error</source>
+      <translation type="unfinished">进程生成错误</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2965" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2948" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2930" />
+      <source>Create Bisect Replay File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2932" />
+      <source>Git Bisect Replay Files (*.replay)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2949" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2789" />
-      <source>Git Bisect ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2844" />
-      <source>Process Generation Error</source>
-      <translation type="unfinished">进程生成错误</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2890" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2873" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2855" />
-      <source>Create Bisect Replay File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2857" />
-      <source>Git Bisect Replay Files (*.replay)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2874" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2891" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2966" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2911" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2940" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2913" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3015" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2988" />
       <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3013" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3299" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3121" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3378" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3200" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3181" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3260" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3182" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3261" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3323" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3402" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3384" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3417" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3497" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3442" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3523" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3468" />
-      <source>Copy Changesets (Cancel)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3549" />
+      <source>Copy Changesets (Cancel)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3630" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3763" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3844" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3673" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3845" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3802" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3751" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3674" />
+      <source>Select a stash (empty for latest stash):</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3750" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3708" />
+      <source>Restore Stash</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3721" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
-      <source>Select a stash (empty for latest stash):</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3669" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3627" />
-      <source>Restore Stash</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3683" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3641" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3720" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3709" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3801" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3790" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3710" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3735" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3774" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3855" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3775" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3856" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3785" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3866" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3807" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3888" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3889" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3895" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3876" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3958" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3899" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3985" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3921" />
-      <source>Performing Repository Housekeeping</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3963" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3965" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3970" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3976" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3982" />
-      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3987" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3993" />
-      <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3999" />
-      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
-      <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4011" />
+      <source>Performing Repository Housekeeping</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4054" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4056" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4061" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4067" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4073" />
+      <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4078" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4084" />
+      <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4090" />
+      <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4095" />
+      <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4102" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4080" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4172" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4120" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4212" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4186" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4278" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4187" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4279" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4200" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4292" />
       <source>All</source>
       <translation type="unfinished">全部</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4204" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4296" />
       <source>Submodule Path</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4297" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4254" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4347" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4382" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4357" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4318" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4453" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4414" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4387" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4484" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4441" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4539" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -32448,101 +32463,101 @@
       <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="519" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="520" />
       <source>Add Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="537" />
-      <source>Lock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538" />
-      <source>Enter a reason for the lock:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="556" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="538" />
+      <source>Lock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="539" />
+      <source>Enter a reason for the lock:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="557" />
       <source>&lt;p&gt;Locking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="580" />
-      <source>Unlock Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="581" />
+      <source>Unlock Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="582" />
       <source>&lt;p&gt;Unlocking the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="616" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="599" />
-      <source>Move Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600" />
-      <source>Enter the new path for the worktree:</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="600" />
+      <source>Move Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="601" />
+      <source>Enter the new path for the worktree:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="618" />
       <source>&lt;p&gt;Moving the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="637" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="638" />
       <source>Remove Worktree</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="639" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="640" />
       <source>Remove Worktree Forcefully</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="645" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="646" />
       <source>&lt;p&gt;Do you really want to remove the worktree &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="672" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="673" />
       <source>&lt;p&gt;Removing the selected worktree failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="727" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="703" />
-      <source>Prune Worktree Information</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704" />
-      <source>Do you really want to prune the information of these worktrees?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="728" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="704" />
+      <source>Prune Worktree Information</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="705" />
+      <source>Do you really want to prune the information of these worktrees?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="729" />
       <source>&lt;p&gt;Pruning of the worktree information failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="765" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="754" />
-      <source>Repair Worktree</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755" />
-      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="755" />
+      <source>Repair Worktree</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="756" />
+      <source>&lt;p&gt;Repairing of the worktree administrative files succeeded.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/GitWorktreeDialog.py" line="767" />
       <source>&lt;p&gt;Repairing of the worktree administrative files failed.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -32659,12 +32674,12 @@
   <context>
     <name>Gpg</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="73" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="76" />
       <source>Verify Signatures</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="124" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="128" />
       <source>Sign Revision</source>
       <translation type="unfinished" />
     </message>
@@ -35256,456 +35271,456 @@
   <context>
     <name>Hg</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="300" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="303" />
       <source>Create project repository</source>
       <translation>创建项目仓库</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="301" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="304" />
       <source>The project repository could not be created.</source>
       <translation>无法创建项目仓库。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="334" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="338" />
       <source>Creating Mercurial repository</source>
       <translation>创建 Mercurial 仓库</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="353" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="359" />
       <source>Initial commit to Mercurial repository</source>
       <translation>向 Mercurial 仓库进行初始提交</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="405" />
       <source>Cloning project from a Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="503" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="516" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="504" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="517" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="566" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="580" />
       <source>Committing changes to Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="661" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="679" />
       <source>Synchronizing with the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="692" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="713" />
       <source>Adding files/directories to the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="751" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="774" />
       <source>Removing files/directories from the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="829" />
       <source>Renaming {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="935" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="964" />
       <source>Tagging in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="981" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="970" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1011" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1000" />
       <source>Revert changes</source>
       <translation type="unfinished">还原改变</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="971" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1001" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="982" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1012" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="988" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1018" />
       <source>Reverting changes</source>
       <translation type="unfinished">还原改变</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1033" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064" />
       <source>Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1072" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1064" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1103" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1095" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1065" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1096" />
       <source>Do you really want to re-merge these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1073" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1104" />
       <source>Do you really want to re-merge the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1076" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1108" />
       <source>Re-Merging</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1098" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1131" />
       <source>Current branch tip</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1280" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1314" />
       <source>Mercurial command</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1457" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1492" />
       <source>Copying {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1720" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1699" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1746" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1737" />
       <source>Mercurial Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1721" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1759" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 无法读取。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2391" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2380" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1797" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2457" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2446" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1835" />
       <source>Apply changegroups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1800" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1838" />
       <source>Pulling from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1845" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1884" />
       <source>Pushing to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1985" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2027" />
       <source>Marking as 'unresolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1987" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2029" />
       <source>Marking as 'resolved'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2009" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2051" />
       <source>Aborting uncommitted merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2032" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2075" />
       <source>Creating branch in the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2040" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2086" />
       <source>Created new branch &lt;{0}&gt;.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2049" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2095" />
       <source>Showing current branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2136" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2184" />
       <source>Verifying the integrity of the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2149" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2200" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2160" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2215" />
       <source>Showing aliases for remote repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2171" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2230" />
       <source>Recovering from interrupted transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2182" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2245" />
       <source>Identifying project directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2227" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2291" />
       <source>Create .hgignore file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2228" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2292" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2329" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2303" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2285" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2351" />
       <source>Create changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2287" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2353" />
       <source>Mercurial Changegroup Files (*.hg)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2304" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2370" />
       <source>&lt;p&gt;The Mercurial changegroup file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2343" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2409" />
       <source>Preview changegroup</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2372" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2345" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2438" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2411" />
       <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2381" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2447" />
       <source>Shall the working directory be updated?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2413" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2479" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2433" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2501" />
       <source>Mercurial Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2527" />
       <source>Removing files from the Mercurial repository only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2500" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2481" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2576" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2557" />
       <source>Backing out changeset</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2482" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2558" />
       <source>No revision given. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2516" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2511" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2593" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2587" />
       <source>Rollback last transaction</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2512" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2588" />
       <source>Are you sure you want to rollback the last transaction?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2579" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2657" />
       <source>Import Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2627" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2707" />
       <source>Export Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2749" />
       <source>Change Phase</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2724" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2804" />
       <source>Copy Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2763" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2843" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2773" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2853" />
       <source>Copy Changesets (Stop)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2783" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2863" />
       <source>Copy Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2806" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2887" />
       <source>Create Unversioned Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2820" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2902" />
       <source>Delete All Backups</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2821" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2903" />
       <source>&lt;p&gt;Do you really want to delete all backup bundles stored in the backup area?&lt;br/&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2912" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2892" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2881" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2994" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2963" />
       <source>Add Sub-repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2951" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2882" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3033" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2964" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2893" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2975" />
       <source>&lt;p&gt;The sub-repositories file .hgsub already contains an entry &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2969" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2913" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3051" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2995" />
       <source>&lt;p&gt;The sub-repositories file .hgsub could not be written to.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2968" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2950" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2936" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3050" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3032" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3018" />
       <source>Remove Sub-repositories</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="2937" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3019" />
       <source>&lt;p&gt;The sub-repositories file .hgsub does not exist. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3206" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3056" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3296" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3138" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3057" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3139" />
       <source>&lt;p&gt;The Mercurial Command Server could not be restarted.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3207" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3297" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3329" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3420" />
       <source>Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3346" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3437" />
       <source>Delete Bookmark</source>
       <translation type="unfinished">删除书签</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3347" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3438" />
       <source>Select the bookmark to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3449" />
       <source>Delete Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3382" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3476" />
       <source>Rename Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3421" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3518" />
       <source>Move Mercurial Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3502" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3600" />
       <source>Pull Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3503" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3601" />
       <source>Select the bookmark to be pulled:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3515" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3613" />
       <source>Pulling bookmark from a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3641" />
       <source>Push Bookmark</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3542" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3642" />
       <source>Select the bookmark to be push:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="3657" />
       <source>Pushing bookmark to a remote Mercurial repository</source>
       <translation type="unfinished" />
     </message>
@@ -43241,22 +43256,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="644" />
       <source>Delete Host Minimum Protocol</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="643" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="645" />
       <source>&lt;p&gt;Shall the minimum protocol entry for host &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="708" />
       <source>Edit User Configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="707" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py" line="709" />
       <source>You will loose all changes made in this dialog. Shall the data be saved first?</source>
       <translation type="unfinished" />
     </message>
@@ -43376,22 +43391,22 @@
   <context>
     <name>Histedit</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="75" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="79" />
       <source>Starting histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="108" />
       <source>Continue histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="129" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="136" />
       <source>Abort histedit session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="157" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/HisteditExtension/histedit.py" line="164" />
       <source>Edit Plan</source>
       <translation type="unfinished" />
     </message>
@@ -49021,52 +49036,52 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="300" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="303" />
       <source>Imports Sorting Failure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="301" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="304" />
       <source>&lt;p&gt;Imports sorting failed due to this error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="352" />
-      <source>would resort</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../CodeFormatting/IsortFormattingDialog.py" line="355" />
+      <source>would resort</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="358" />
       <source>resorted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="360" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="363" />
       <source>unchanged</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="364" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="367" />
       <source>skipped</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="368" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="371" />
       <source>failed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="373" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="376" />
       <source>error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="374" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="377" />
       <source>Unsupported 'isort' action ({0}) given.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="381" />
+      <location filename="../CodeFormatting/IsortFormattingDialog.py" line="384" />
       <source>invalid status ({0})</source>
       <translation type="unfinished" />
     </message>
@@ -49203,7 +49218,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="682" />
+      <location filename="../JediInterface/JediServer.py" line="683" />
       <location filename="../JediInterface/JediServer.py" line="522" />
       <source>Rename Variable</source>
       <translation type="unfinished" />
@@ -49234,27 +49249,27 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="690" />
+      <location filename="../JediInterface/JediServer.py" line="692" />
       <source>Refactoring</source>
       <translation type="unfinished">重构</translation>
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="691" />
+      <location filename="../JediInterface/JediServer.py" line="693" />
       <source>&lt;p&gt;The refactoring could not be performed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="749" />
+      <location filename="../JediInterface/JediServer.py" line="751" />
       <source>Apply Refactoring</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="750" />
+      <location filename="../JediInterface/JediServer.py" line="752" />
       <source>&lt;p&gt;The refactoring could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="786" />
+      <location filename="../JediInterface/JediServer.py" line="788" />
       <source>The data received from the Jedi server could not be decoded. Please report this issue with the received data to the eric bugs email address.
 Error: {0}
 Data:
@@ -49263,7 +49278,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="796" />
+      <location filename="../JediInterface/JediServer.py" line="798" />
       <source>An exception happened in the Jedi client. Please report it to the eric bugs email address.
 Exception: {0}
 Value: {1}
@@ -49272,25 +49287,25 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="838" />
+      <location filename="../JediInterface/JediServer.py" line="840" />
       <source>The jedi and/or parso library is not installed.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="843" />
+      <location filename="../JediInterface/JediServer.py" line="845" />
       <source>'{0}' is not supported because the configured interpreter could not be started.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="851" />
+      <location filename="../JediInterface/JediServer.py" line="853" />
       <source>'{0}' is not supported because no suitable interpreter is configured.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../JediInterface/JediServer.py" line="953" />
+      <location filename="../JediInterface/JediServer.py" line="955" />
       <source>Jedi</source>
       <translation type="unfinished" />
     </message>
@@ -49298,37 +49313,37 @@
   <context>
     <name>Largefiles</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="72" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="75" />
       <source>Convert Project - Converting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="88" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="92" />
       <source>Mercurial Command Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="89" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="93" />
       <source>&lt;p&gt;The Mercurial Command Server could not be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="100" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="104" />
       <source>Convert Project - Extracting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="145" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="150" />
       <source>Adding files to the Mercurial repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="174" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="182" />
       <source>Pulling large files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="196" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py" line="205" />
       <source>Verifying the integrity of large files</source>
       <translation type="unfinished" />
     </message>
@@ -50641,13 +50656,13 @@
     <name>Lexers</name>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="412" />
-      <location filename="../Preferences/__init__.py" line="596" />
+      <location filename="../Preferences/__init__.py" line="597" />
       <source>Python Files (*.py *.py3)</source>
       <translation type="unfinished">Python 文件 (*.py *.py3)</translation>
     </message>
     <message>
       <location filename="../QScintilla/Lexers/__init__.py" line="505" />
-      <location filename="../Preferences/__init__.py" line="599" />
+      <location filename="../Preferences/__init__.py" line="600" />
       <source>Python3 Files (*.py)</source>
       <translation type="unfinished" />
     </message>
@@ -52476,18 +52491,18 @@
   <context>
     <name>MicroPythonDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="356" />
+      <location filename="../MicroPython/Devices/__init__.py" line="369" />
       <source>Generic MicroPython Board</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="403" />
+      <location filename="../MicroPython/Devices/__init__.py" line="416" />
       <source>RP2040/RP2350 based</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/__init__.py" line="566" />
-      <location filename="../MicroPython/Devices/__init__.py" line="555" />
+      <location filename="../MicroPython/Devices/__init__.py" line="579" />
+      <location filename="../MicroPython/Devices/__init__.py" line="568" />
       <source>Unknown Device</source>
       <translation type="unfinished" />
     </message>
@@ -53883,343 +53898,343 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="737" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="724" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="740" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="727" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="725" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="728" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="735" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reason:&lt;/b&gt; {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1193" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1185" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="735" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1196" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1188" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="738" />
       <source>unknown</source>
       <translation type="unfinished">未知</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="796" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="787" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="799" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="781" />
       <source>Run Script</source>
       <translation type="unfinished">运行脚本</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="779" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="782" />
       <source>There is no editor open. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="788" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="791" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="797" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="800" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="836" />
       <source>Start Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="834" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="837" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="849" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="852" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="866" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="869" />
       <source>Unsaved Chart Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="867" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="870" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="915" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="918" />
       <source>Start File Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="916" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="919" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="939" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1012" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1015" />
       <source>Downloads</source>
       <translation type="unfinished">下载</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1059" />
-      <source>Show Version</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1062" />
-      <source>Show Implementation</source>
+      <source>Show Version</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1065" />
+      <source>Show Implementation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1068" />
       <source>Show Board Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1268" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1070" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1271" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1073" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1073" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1076" />
       <source>Show Device Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1075" />
-      <source>Show Local Time</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1078" />
+      <source>Show Local Time</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1081" />
       <source>Show Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1082" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1085" />
       <source>Show Builtin Modules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1094" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1086" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1689" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1097" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1089" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1723" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1720" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1090" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1728" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1725" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1093" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1497" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1100" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1501" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1103" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1523" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1514" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1104" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1527" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1518" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1107" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1125" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1128" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1132" />
-      <source>Show Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1135" />
+      <source>Show Documentation</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1138" />
       <source>Convert To UF2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1136" />
-      <source>Flash UF2 Device</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1139" />
-      <source>Manage Unknown Devices</source>
+      <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1142" />
-      <source>Ignored Serial Devices</source>
+      <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1145" />
-      <source>Configure</source>
-      <translation type="unfinished">配置</translation>
+      <source>Ignored Serial Devices</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1148" />
+      <source>Configure</source>
+      <translation type="unfinished">配置</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1151" />
       <source>Quit</source>
       <translation type="unfinished">退出</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1157" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1160" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1168" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1164" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1171" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1167" />
       <source>Device Version Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1169" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1172" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1199" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1202" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1215" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1206" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1218" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1209" />
       <source>Device Implementation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1207" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1210" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1216" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1219" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1269" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1272" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1299" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1302" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1315" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1318" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1327" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
       <source>Local Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1369" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1352" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1372" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1355" />
       <source>Date and Time</source>
       <translation type="unfinished">日期和时间</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1353" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1356" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1370" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1373" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1394" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1397" />
       <source>Error handling device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1395" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1398" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1437" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1440" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1463" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1466" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1473" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1476" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1483" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1486" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1515" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1519" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1607" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1611" />
       <source>Add Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1608" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1657" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1709" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1714" />
       <source>Package '{0}' was installed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1724" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1729" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -56101,237 +56116,237 @@
   <context>
     <name>MultiProject</name>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="338" />
-      <location filename="../MultiProject/MultiProject.py" line="324" />
+      <location filename="../MultiProject/MultiProject.py" line="341" />
+      <location filename="../MultiProject/MultiProject.py" line="327" />
       <source>Copy Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="325" />
+      <location filename="../MultiProject/MultiProject.py" line="328" />
       <source>Enter directory for the new project (must not exist already):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="339" />
+      <location filename="../MultiProject/MultiProject.py" line="342" />
       <source>&lt;p&gt;The source project &lt;b&gt;{0}&lt;/b&gt; could not be copied to its destination &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="349" />
+      <location filename="../MultiProject/MultiProject.py" line="352" />
       <source>{0} - Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="499" />
+      <location filename="../MultiProject/MultiProject.py" line="502" />
       <source>Open Multi Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="556" />
-      <location filename="../MultiProject/MultiProject.py" line="546" />
-      <location filename="../MultiProject/MultiProject.py" line="501" />
+      <location filename="../MultiProject/MultiProject.py" line="559" />
+      <location filename="../MultiProject/MultiProject.py" line="549" />
+      <location filename="../MultiProject/MultiProject.py" line="504" />
       <source>Multi Project Files (*.emj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="554" />
+      <location filename="../MultiProject/MultiProject.py" line="557" />
       <source>Save Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="570" />
+      <location filename="../MultiProject/MultiProject.py" line="573" />
       <source>Save File</source>
       <translation>保存文件</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="571" />
+      <location filename="../MultiProject/MultiProject.py" line="574" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="598" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
       <source>Close Multiproject</source>
       <translation>关闭多重项目</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="599" />
+      <location filename="../MultiProject/MultiProject.py" line="602" />
       <source>The current multiproject has unsaved changes.</source>
       <translation>当前多重项目的更改未保存。</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="653" />
+      <location filename="../MultiProject/MultiProject.py" line="656" />
       <source>New multiproject</source>
       <translation>新建多重项目</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="655" />
+      <location filename="../MultiProject/MultiProject.py" line="658" />
       <source>&amp;New...</source>
       <translation>新建(&amp;N)…</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="661" />
+      <location filename="../MultiProject/MultiProject.py" line="664" />
       <source>Generate a new multiproject</source>
       <translation>生成一个新多重项目</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="663" />
+      <location filename="../MultiProject/MultiProject.py" line="666" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;新建…&lt;/b&gt;&lt;p&gt;打开一个对话框为新多重项目输入信息。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="673" />
+      <location filename="../MultiProject/MultiProject.py" line="676" />
       <source>Open multiproject</source>
       <translation>打开多重项目</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="675" />
+      <location filename="../MultiProject/MultiProject.py" line="678" />
       <source>&amp;Open...</source>
       <translation>打开(&amp;O)…</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="681" />
+      <location filename="../MultiProject/MultiProject.py" line="684" />
       <source>Open an existing multiproject</source>
       <translation>打开一个存在的多重项目</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="683" />
+      <location filename="../MultiProject/MultiProject.py" line="686" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;打开….&lt;/b&gt;&lt;p&gt;打开一个存在的多重项目。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="689" />
+      <location filename="../MultiProject/MultiProject.py" line="692" />
       <source>Close multiproject</source>
       <translation>关闭多重项目</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="691" />
+      <location filename="../MultiProject/MultiProject.py" line="694" />
       <source>&amp;Close</source>
       <translation>关闭(&amp;C)</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="697" />
+      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>Close the current multiproject</source>
       <translation>关闭当前多重项目</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="699" />
+      <location filename="../MultiProject/MultiProject.py" line="702" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;关闭&lt;/b&gt;&lt;p&gt;关闭当前多重项目。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="705" />
+      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>Save multiproject</source>
       <translation>保存多重项目</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="707" />
+      <location filename="../MultiProject/MultiProject.py" line="710" />
       <source>&amp;Save</source>
       <translation>保存(&amp;S)</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="713" />
+      <location filename="../MultiProject/MultiProject.py" line="716" />
       <source>Save the current multiproject</source>
       <translation>保存当前多重项目</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="715" />
+      <location filename="../MultiProject/MultiProject.py" line="718" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;保存&lt;/b&gt;&lt;p&gt;保存当前多重项目。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="721" />
+      <location filename="../MultiProject/MultiProject.py" line="724" />
       <source>Save multiproject as</source>
       <translation>多重项目另存为</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="723" />
+      <location filename="../MultiProject/MultiProject.py" line="726" />
       <source>Save &amp;as...</source>
       <translation>另存为(&amp;A)…</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="730" />
-      <source>Save the current multiproject to a new file</source>
-      <translation>将当前多重项目保存到一个新文件中</translation>
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="733" />
+      <source>Save the current multiproject to a new file</source>
+      <translation>将当前多重项目保存到一个新文件中</translation>
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;另存为&lt;/b&gt;&lt;p&gt;将当前多重项目保存到一个新文件中。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="742" />
+      <location filename="../MultiProject/MultiProject.py" line="745" />
       <source>Add project to multiproject</source>
       <translation>为多重项目添加项目</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
+      <location filename="../MultiProject/MultiProject.py" line="747" />
       <source>Add &amp;project...</source>
       <translation type="unfinished">添加项目(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="751" />
-      <source>Add a project to the current multiproject</source>
-      <translation>将项目添加到当前多重项目中</translation>
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="754" />
+      <source>Add a project to the current multiproject</source>
+      <translation>将项目添加到当前多重项目中</translation>
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="757" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;添加项目…&lt;/b&gt;&lt;p&gt;打开一个对话框将项目添加到当前多重项目中。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <location filename="../MultiProject/MultiProject.py" line="767" />
       <source>Multiproject properties</source>
       <translation>多重项目属性</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="766" />
+      <location filename="../MultiProject/MultiProject.py" line="769" />
       <source>&amp;Properties...</source>
       <translation>属性(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="772" />
+      <location filename="../MultiProject/MultiProject.py" line="775" />
       <source>Show the multiproject properties</source>
       <translation>显示多重项目属性</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="774" />
+      <location filename="../MultiProject/MultiProject.py" line="777" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;属性…&lt;/b&gt;&lt;p&gt;显示一个对话框编辑多重项目属性。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="786" />
-      <location filename="../MultiProject/MultiProject.py" line="784" />
+      <location filename="../MultiProject/MultiProject.py" line="789" />
+      <location filename="../MultiProject/MultiProject.py" line="787" />
       <source>Clear Out</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="793" />
-      <source>Remove all projects marked as removed</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MultiProject/MultiProject.py" line="796" />
+      <source>Remove all projects marked as removed</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MultiProject/MultiProject.py" line="799" />
       <source>&lt;b&gt;Clear Out...&lt;/b&gt;&lt;p&gt;This removes all projects marked as removed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="818" />
+      <location filename="../MultiProject/MultiProject.py" line="821" />
       <source>&amp;Multiproject</source>
       <translation>多项目(&amp;M)</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
+      <location filename="../MultiProject/MultiProject.py" line="822" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation>打开最近的多重项目(&amp;R)</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="862" />
-      <location filename="../MultiProject/MultiProject.py" line="860" />
+      <location filename="../MultiProject/MultiProject.py" line="865" />
+      <location filename="../MultiProject/MultiProject.py" line="863" />
       <source>Multiproject</source>
       <translation>多重项目</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="918" />
+      <location filename="../MultiProject/MultiProject.py" line="921" />
       <source>&amp;Clear</source>
       <translation>清除(&amp;C)</translation>
     </message>
@@ -59462,108 +59477,108 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="562" />
+      <location filename="../PipInterface/Pip.py" line="563" />
       <source>Install Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="583" />
+      <location filename="../PipInterface/Pip.py" line="585" />
       <source>Install Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="618" />
-      <location filename="../PipInterface/Pip.py" line="608" />
+      <location filename="../PipInterface/Pip.py" line="620" />
+      <location filename="../PipInterface/Pip.py" line="610" />
       <source>Install 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="739" />
-      <location filename="../PipInterface/Pip.py" line="609" />
+      <location filename="../PipInterface/Pip.py" line="748" />
+      <location filename="../PipInterface/Pip.py" line="611" />
       <source>The selected 'pyproject.toml' file does not contain a 'project.dependencies' section. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="619" />
+      <location filename="../PipInterface/Pip.py" line="621" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="638" />
+      <location filename="../PipInterface/Pip.py" line="641" />
       <source>Install Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="766" />
-      <location filename="../PipInterface/Pip.py" line="695" />
-      <location filename="../PipInterface/Pip.py" line="667" />
-      <location filename="../PipInterface/Pip.py" line="658" />
+      <location filename="../PipInterface/Pip.py" line="775" />
+      <location filename="../PipInterface/Pip.py" line="701" />
+      <location filename="../PipInterface/Pip.py" line="671" />
+      <location filename="../PipInterface/Pip.py" line="662" />
       <source>Uninstall Packages</source>
       <translation type="unfinished">卸载包</translation>
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="767" />
-      <location filename="../PipInterface/Pip.py" line="696" />
-      <location filename="../PipInterface/Pip.py" line="659" />
+      <location filename="../PipInterface/Pip.py" line="776" />
+      <location filename="../PipInterface/Pip.py" line="702" />
+      <location filename="../PipInterface/Pip.py" line="663" />
       <source>Do you really want to uninstall these packages?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="712" />
+      <location filename="../PipInterface/Pip.py" line="719" />
       <source>Uninstall Packages from Requirements</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="749" />
-      <location filename="../PipInterface/Pip.py" line="738" />
+      <location filename="../PipInterface/Pip.py" line="758" />
+      <location filename="../PipInterface/Pip.py" line="747" />
       <source>Uninstall 'pyproject' Dependencies</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="750" />
+      <location filename="../PipInterface/Pip.py" line="759" />
       <source>&lt;p&gt;The selected 'pyproject.toml' file could not be read. &lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="777" />
+      <location filename="../PipInterface/Pip.py" line="786" />
       <source>Uninstall Packages from 'pyproject.toml'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1185" />
+      <location filename="../PipInterface/Pip.py" line="1195" />
       <source>Cache Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1211" />
-      <location filename="../PipInterface/Pip.py" line="1202" />
+      <location filename="../PipInterface/Pip.py" line="1221" />
+      <location filename="../PipInterface/Pip.py" line="1212" />
       <source>List Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1203" />
+      <location filename="../PipInterface/Pip.py" line="1213" />
       <source>Enter a file pattern (empty for all):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1235" />
-      <location filename="../PipInterface/Pip.py" line="1228" />
+      <location filename="../PipInterface/Pip.py" line="1245" />
+      <location filename="../PipInterface/Pip.py" line="1238" />
       <source>Remove Cached Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1229" />
+      <location filename="../PipInterface/Pip.py" line="1239" />
       <source>Enter a file pattern:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1260" />
-      <location filename="../PipInterface/Pip.py" line="1252" />
+      <location filename="../PipInterface/Pip.py" line="1270" />
+      <location filename="../PipInterface/Pip.py" line="1262" />
       <source>Purge Cache</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../PipInterface/Pip.py" line="1253" />
+      <location filename="../PipInterface/Pip.py" line="1263" />
       <source>Do you really want to purge the pip cache? All files need to be downloaded again.</source>
       <translation type="unfinished" />
     </message>
@@ -62146,18 +62161,18 @@
   <context>
     <name>Preferences</name>
     <message>
-      <location filename="../Preferences/__init__.py" line="1904" />
+      <location filename="../Preferences/__init__.py" line="1905" />
       <source>Export Preferences</source>
       <translation>导出首选项</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1933" />
-      <location filename="../Preferences/__init__.py" line="1906" />
+      <location filename="../Preferences/__init__.py" line="1934" />
+      <location filename="../Preferences/__init__.py" line="1907" />
       <source>Properties File (*.ini);;All Files (*)</source>
       <translation>属性文件 (*.ini);;所有文件 (*)</translation>
     </message>
     <message>
-      <location filename="../Preferences/__init__.py" line="1931" />
+      <location filename="../Preferences/__init__.py" line="1932" />
       <source>Import Preferences</source>
       <translation>导入首选项</translation>
     </message>
@@ -62178,7 +62193,7 @@
   <context>
     <name>PreviewModel</name>
     <message>
-      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="509" />
+      <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="520" />
       <source>Variable Name</source>
       <translation type="unfinished" />
     </message>
@@ -62805,1698 +62820,1698 @@
   <context>
     <name>Project</name>
     <message>
-      <location filename="../Project/Project.py" line="187" />
+      <location filename="../Project/Project.py" line="188" />
       <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="250" />
-      <source>Add File Category</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="251" />
+      <source>Add File Category</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="252" />
       <source>&lt;p&gt;The file category &lt;b&gt;{0}&lt;/b&gt; has already been added. This attempt will be ignored.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="336" />
-      <source>PyQt5 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="337" />
-      <source>PyQt5 Console</source>
+      <source>PyQt5 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="338" />
-      <source>PyQt6 GUI</source>
+      <source>PyQt5 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="339" />
-      <source>PyQt6 Console</source>
+      <source>PyQt6 GUI</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="340" />
-      <source>Eric7 Plugin</source>
+      <source>PyQt6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="341" />
-      <source>Console</source>
-      <translation>控制台程序</translation>
+      <source>Eric7 Plugin</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="342" />
+      <source>Console</source>
+      <translation>控制台程序</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="343" />
       <source>Other</source>
       <translation>其它</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="361" />
-      <source>PySide2 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="362" />
+      <source>PySide2 GUI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="363" />
       <source>PySide2 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="366" />
-      <source>PySide6 GUI</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="367" />
+      <source>PySide6 GUI</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="368" />
       <source>PySide6 Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="465" />
-      <location filename="../Project/Project.py" line="453" />
-      <location filename="../Project/Project.py" line="442" />
-      <source>Registering Project Type</source>
-      <translation>注册项目类型</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="443" />
-      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="454" />
-      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="466" />
+      <location filename="../Project/Project.py" line="454" />
+      <location filename="../Project/Project.py" line="443" />
+      <source>Registering Project Type</source>
+      <translation>注册项目类型</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="444" />
+      <source>&lt;p&gt;The Programming Language &lt;b&gt;{0}&lt;/b&gt; is not supported (project type: {1}).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="455" />
+      <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered with Programming Language &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="467" />
       <source>&lt;p&gt;The Project type &lt;b&gt;{0}&lt;/b&gt; is already registered.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="771" />
+      <location filename="../Project/Project.py" line="772" />
       <source>All Files (*)</source>
       <translation type="unfinished">所有文件 (*)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1332" />
+      <location filename="../Project/Project.py" line="1333" />
       <source>Read Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1578" />
-      <location filename="../Project/Project.py" line="1552" />
-      <location filename="../Project/Project.py" line="1516" />
-      <location filename="../Project/Project.py" line="1434" />
-      <location filename="../Project/Project.py" line="1395" />
-      <location filename="../Project/Project.py" line="1370" />
-      <location filename="../Project/Project.py" line="1333" />
+      <location filename="../Project/Project.py" line="1579" />
+      <location filename="../Project/Project.py" line="1553" />
+      <location filename="../Project/Project.py" line="1517" />
+      <location filename="../Project/Project.py" line="1435" />
+      <location filename="../Project/Project.py" line="1396" />
+      <location filename="../Project/Project.py" line="1371" />
+      <location filename="../Project/Project.py" line="1334" />
       <source>Please save the project first.</source>
       <translation>请先保存项目。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1369" />
+      <location filename="../Project/Project.py" line="1370" />
       <source>Save Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1411" />
-      <location filename="../Project/Project.py" line="1394" />
+      <location filename="../Project/Project.py" line="1412" />
+      <location filename="../Project/Project.py" line="1395" />
       <source>Delete Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1401" />
+      <location filename="../Project/Project.py" line="1402" />
       <source>Delete Remote Project Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1420" />
+      <location filename="../Project/Project.py" line="1421" />
       <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1433" />
+      <location filename="../Project/Project.py" line="1434" />
       <source>Read Tasks</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1515" />
+      <location filename="../Project/Project.py" line="1516" />
       <source>Read Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1551" />
+      <location filename="../Project/Project.py" line="1552" />
       <source>Save Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1594" />
-      <location filename="../Project/Project.py" line="1577" />
+      <location filename="../Project/Project.py" line="1595" />
+      <location filename="../Project/Project.py" line="1578" />
       <source>Delete Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1584" />
+      <location filename="../Project/Project.py" line="1585" />
       <source>Delete Remote Debugger Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1603" />
+      <location filename="../Project/Project.py" line="1604" />
       <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1774" />
+      <location filename="../Project/Project.py" line="1777" />
       <source>Add Language</source>
       <translation>添加语言</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1775" />
+      <location filename="../Project/Project.py" line="1778" />
       <source>You have to specify a translation pattern first.</source>
       <translation>必须先指定一个翻译样式。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1916" />
+      <location filename="../Project/Project.py" line="1919" />
       <source>Delete Translation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1943" />
-      <location filename="../Project/Project.py" line="1917" />
+      <location filename="../Project/Project.py" line="1946" />
+      <location filename="../Project/Project.py" line="1920" />
       <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="1942" />
+      <location filename="../Project/Project.py" line="1945" />
       <source>Delete translation</source>
       <translation>删除翻译</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2093" />
-      <location filename="../Project/Project.py" line="2076" />
+      <location filename="../Project/Project.py" line="2098" />
+      <location filename="../Project/Project.py" line="2081" />
       <source>Add File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2195" />
-      <location filename="../Project/Project.py" line="2077" />
+      <location filename="../Project/Project.py" line="2200" />
+      <location filename="../Project/Project.py" line="2082" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2094" />
+      <location filename="../Project/Project.py" line="2099" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2106" />
+      <location filename="../Project/Project.py" line="2111" />
       <source>Add file</source>
       <translation>添加文件</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2289" />
-      <location filename="../Project/Project.py" line="2107" />
+      <location filename="../Project/Project.py" line="2296" />
+      <location filename="../Project/Project.py" line="2112" />
       <source>The target directory must not be empty.</source>
       <translation>目标文件夹不能为空。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2194" />
-      <location filename="../Project/Project.py" line="2167" />
-      <location filename="../Project/Project.py" line="2147" />
+      <location filename="../Project/Project.py" line="2199" />
+      <location filename="../Project/Project.py" line="2172" />
+      <location filename="../Project/Project.py" line="2152" />
       <source>Add Directory</source>
       <translation type="unfinished">添加文件夹</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2148" />
+      <location filename="../Project/Project.py" line="2153" />
       <source>&lt;p&gt;The source directory doesn't contain any files belonging to the selected category.&lt;/p&gt;</source>
       <translation>&lt;p&gt;源文件夹不包含任何属于所选类别的文件。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2168" />
+      <location filename="../Project/Project.py" line="2173" />
       <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2300" />
-      <location filename="../Project/Project.py" line="2288" />
+      <location filename="../Project/Project.py" line="2307" />
+      <location filename="../Project/Project.py" line="2295" />
       <source>Add directory</source>
       <translation>添加文件夹</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2301" />
+      <location filename="../Project/Project.py" line="2308" />
       <source>The source directory must not be empty.</source>
       <translation>源文件夹不能为空。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2415" />
-      <location filename="../Project/Project.py" line="2397" />
+      <location filename="../Project/Project.py" line="2422" />
+      <location filename="../Project/Project.py" line="2404" />
+      <location filename="../Project/Project.py" line="2388" />
       <location filename="../Project/Project.py" line="2381" />
-      <location filename="../Project/Project.py" line="2374" />
       <source>Rename File</source>
       <translation>重命名文件</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8055" />
-      <location filename="../Project/Project.py" line="3898" />
-      <location filename="../Project/Project.py" line="2398" />
+      <location filename="../Project/Project.py" line="8089" />
+      <location filename="../Project/Project.py" line="3909" />
+      <location filename="../Project/Project.py" line="2405" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2416" />
+      <location filename="../Project/Project.py" line="2423" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2683" />
+      <location filename="../Project/Project.py" line="2690" />
       <source>Delete File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2684" />
+      <location filename="../Project/Project.py" line="2691" />
       <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2712" />
+      <location filename="../Project/Project.py" line="2719" />
       <source>Delete Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2713" />
+      <location filename="../Project/Project.py" line="2720" />
       <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2846" />
+      <location filename="../Project/Project.py" line="2853" />
       <source>Create project directory</source>
       <translation>创建项目文件夹</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2847" />
+      <location filename="../Project/Project.py" line="2854" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3671" />
-      <location filename="../Project/Project.py" line="2947" />
+      <location filename="../Project/Project.py" line="3682" />
+      <location filename="../Project/Project.py" line="2954" />
       <source>Create project management directory</source>
       <translation>创建项目管理目录</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3672" />
-      <location filename="../Project/Project.py" line="2948" />
+      <location filename="../Project/Project.py" line="3683" />
+      <location filename="../Project/Project.py" line="2955" />
       <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
       <translation>&lt;p&gt;项目目录 &lt;b&gt;{0}&lt;/b&gt; 不可写。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2988" />
+      <location filename="../Project/Project.py" line="2995" />
       <source>Create main script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="2989" />
+      <location filename="../Project/Project.py" line="2996" />
       <source>&lt;p&gt;The main script &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3454" />
-      <location filename="../Project/Project.py" line="3013" />
+      <location filename="../Project/Project.py" line="3463" />
+      <location filename="../Project/Project.py" line="3020" />
       <source>Create Makefile</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3455" />
-      <location filename="../Project/Project.py" line="3014" />
+      <location filename="../Project/Project.py" line="3464" />
+      <location filename="../Project/Project.py" line="3021" />
       <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3701" />
-      <location filename="../Project/Project.py" line="3164" />
-      <location filename="../Project/Project.py" line="3135" />
-      <location filename="../Project/Project.py" line="3103" />
-      <location filename="../Project/Project.py" line="3087" />
-      <location filename="../Project/Project.py" line="3062" />
-      <location filename="../Project/Project.py" line="3024" />
+      <location filename="../Project/Project.py" line="3712" />
+      <location filename="../Project/Project.py" line="3173" />
+      <location filename="../Project/Project.py" line="3144" />
+      <location filename="../Project/Project.py" line="3112" />
+      <location filename="../Project/Project.py" line="3094" />
+      <location filename="../Project/Project.py" line="3069" />
+      <location filename="../Project/Project.py" line="3031" />
       <source>New Project</source>
       <translation>新建项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3025" />
+      <location filename="../Project/Project.py" line="3032" />
       <source>Add existing files to the project?</source>
       <translation>是否将已有文件添加到项目中?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3702" />
-      <location filename="../Project/Project.py" line="3063" />
+      <location filename="../Project/Project.py" line="3713" />
+      <location filename="../Project/Project.py" line="3070" />
       <source>Select Version Control System</source>
       <translation>选择版本控制系统</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3165" />
-      <location filename="../Project/Project.py" line="3088" />
+      <location filename="../Project/Project.py" line="3174" />
+      <location filename="../Project/Project.py" line="3095" />
       <source>Would you like to edit the VCS command options?</source>
       <translation>是否编辑版本控制系统命令选项?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3104" />
+      <location filename="../Project/Project.py" line="3113" />
       <source>Shall the project file be added to the repository?</source>
       <translation>是否将项目文件添加到仓库?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3141" />
-      <location filename="../Project/Project.py" line="3130" />
+      <location filename="../Project/Project.py" line="3150" />
+      <location filename="../Project/Project.py" line="3139" />
       <source>None</source>
       <translation>无</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3136" />
+      <location filename="../Project/Project.py" line="3145" />
       <source>Select version control system for the project</source>
       <translation>为项目选择版本控制系统</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3347" />
+      <location filename="../Project/Project.py" line="3356" />
       <source>Translation Pattern</source>
       <translation>翻译样式</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3348" />
+      <location filename="../Project/Project.py" line="3357" />
       <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source>
       <translation>为翻译文件输入路径样式(在语言代码的相应位置使用“'%language%”):</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3650" />
+      <location filename="../Project/Project.py" line="3661" />
       <source>Open Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8041" />
-      <location filename="../Project/Project.py" line="8035" />
-      <location filename="../Project/Project.py" line="8025" />
-      <location filename="../Project/Project.py" line="3883" />
-      <location filename="../Project/Project.py" line="3873" />
-      <location filename="../Project/Project.py" line="3652" />
+      <location filename="../Project/Project.py" line="8075" />
+      <location filename="../Project/Project.py" line="8069" />
+      <location filename="../Project/Project.py" line="8059" />
+      <location filename="../Project/Project.py" line="3894" />
+      <location filename="../Project/Project.py" line="3884" />
+      <location filename="../Project/Project.py" line="3663" />
       <source>Project Files (*.epj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3897" />
-      <location filename="../Project/Project.py" line="3881" />
+      <location filename="../Project/Project.py" line="3908" />
+      <location filename="../Project/Project.py" line="3892" />
       <source>Save Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3936" />
+      <location filename="../Project/Project.py" line="3947" />
       <source>Close Project</source>
       <translation>关闭项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="3937" />
+      <location filename="../Project/Project.py" line="3948" />
       <source>The current project has unsaved changes.</source>
       <translation>当前项目的更改未保存。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4137" />
-      <location filename="../Project/Project.py" line="4101" />
+      <location filename="../Project/Project.py" line="4148" />
+      <location filename="../Project/Project.py" line="4112" />
       <source>Syntax Errors Detected</source>
       <translation type="unfinished" />
     </message>
     <message numerus="yes">
-      <location filename="../Project/Project.py" line="4138" />
-      <location filename="../Project/Project.py" line="4102" />
+      <location filename="../Project/Project.py" line="4149" />
+      <location filename="../Project/Project.py" line="4113" />
       <source>The project contains %n file(s) with syntax errors.</source>
       <translation>
         <numerusform>项目包含 %n 文件有语法错误。</numerusform>
       </translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4796" />
+      <location filename="../Project/Project.py" line="4807" />
       <source>New project</source>
       <translation>新建项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4798" />
+      <location filename="../Project/Project.py" line="4809" />
       <source>&amp;New...</source>
       <translation>新建(&amp;N)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4804" />
+      <location filename="../Project/Project.py" line="4815" />
       <source>Generate a new project</source>
       <translation>生成新项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4806" />
+      <location filename="../Project/Project.py" line="4817" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;新建…&lt;/b&gt;&lt;p&gt;打开一个对话框为新项目输入信息。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4816" />
+      <location filename="../Project/Project.py" line="4827" />
       <source>Open project</source>
       <translation>打开项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4818" />
+      <location filename="../Project/Project.py" line="4829" />
       <source>&amp;Open...</source>
       <translation>打开(&amp;O)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4824" />
+      <location filename="../Project/Project.py" line="4835" />
       <source>Open an existing project</source>
       <translation>打开一个已有项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4826" />
+      <location filename="../Project/Project.py" line="4837" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;打开…&lt;/b&gt;&lt;p&gt;打开一个已有项目。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4832" />
+      <location filename="../Project/Project.py" line="4843" />
       <source>Open remote project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4834" />
+      <location filename="../Project/Project.py" line="4845" />
       <source>Open (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4840" />
-      <source>Open an existing remote project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4842" />
-      <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4851" />
-      <source>Reload project</source>
-      <translation>重新载入项目</translation>
+      <source>Open an existing remote project</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="4853" />
+      <source>&lt;b&gt;Open (Remote)...&lt;/b&gt;&lt;p&gt;This opens an existing remote project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4862" />
+      <source>Reload project</source>
+      <translation>重新载入项目</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4864" />
       <source>Re&amp;load</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4859" />
+      <location filename="../Project/Project.py" line="4870" />
       <source>Reload the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4861" />
+      <location filename="../Project/Project.py" line="4872" />
       <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;This reloads the current project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4867" />
+      <location filename="../Project/Project.py" line="4878" />
       <source>Close project</source>
       <translation>关闭项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4869" />
+      <location filename="../Project/Project.py" line="4880" />
       <source>&amp;Close</source>
       <translation>关闭(&amp;C)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4875" />
+      <location filename="../Project/Project.py" line="4886" />
       <source>Close the current project</source>
       <translation>关闭当前项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4877" />
+      <location filename="../Project/Project.py" line="4888" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;关闭&lt;/b&gt;&lt;p&gt;关闭当前项目。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4883" />
+      <location filename="../Project/Project.py" line="4894" />
       <source>Save project</source>
       <translation>保存项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5180" />
-      <location filename="../Project/Project.py" line="4885" />
+      <location filename="../Project/Project.py" line="5191" />
+      <location filename="../Project/Project.py" line="4896" />
       <source>&amp;Save</source>
       <translation>保存(&amp;S)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4891" />
+      <location filename="../Project/Project.py" line="4902" />
       <source>Save the current project</source>
       <translation>保存当前项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4893" />
+      <location filename="../Project/Project.py" line="4904" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;保存&lt;/b&gt;&lt;p&gt;保存当前项目&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4899" />
+      <location filename="../Project/Project.py" line="4910" />
       <source>Save project as</source>
       <translation>项目另存为</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4901" />
+      <location filename="../Project/Project.py" line="4912" />
       <source>Save &amp;as...</source>
       <translation>另存为(&amp;A)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4907" />
-      <source>Save the current project to a new file</source>
-      <translation>将当前项目另存为一个新文件</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="4909" />
-      <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;另存为&lt;/b&gt;&lt;p&gt;将当前项目另存为一个新文件。&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4918" />
-      <source>Save project as (Remote)</source>
-      <translation type="unfinished" />
+      <source>Save the current project to a new file</source>
+      <translation>将当前项目另存为一个新文件</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="4920" />
+      <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;另存为&lt;/b&gt;&lt;p&gt;将当前项目另存为一个新文件。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4929" />
+      <source>Save project as (Remote)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4931" />
       <source>Save as (Remote)...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4927" />
+      <location filename="../Project/Project.py" line="4938" />
       <source>Save the current project to a new remote file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4930" />
+      <location filename="../Project/Project.py" line="4941" />
       <source>&lt;b&gt;Save as (Remote)&lt;/b&gt;&lt;p&gt;This saves the current project to a new remote file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4946" />
+      <location filename="../Project/Project.py" line="4957" />
       <source>Add files to project</source>
       <translation>将文件添加到项目中</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4948" />
+      <location filename="../Project/Project.py" line="4959" />
       <source>Add &amp;files...</source>
       <translation>添加文件(&amp;F)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4954" />
+      <location filename="../Project/Project.py" line="4965" />
       <source>Add files to the current project</source>
       <translation>将文件添加到当前项目中</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4956" />
-      <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;添加文件…&lt;/b&gt;&lt;p&gt;打开一个对话框为当前项目添加文件。添加的位置由文件扩展名决定。&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="4967" />
+      <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;添加文件…&lt;/b&gt;&lt;p&gt;打开一个对话框为当前项目添加文件。添加的位置由文件扩展名决定。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="4978" />
       <source>Add directory to project</source>
       <translation>将文件夹添加到项目中</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4969" />
+      <location filename="../Project/Project.py" line="4980" />
       <source>Add directory...</source>
       <translation>添加文件夹…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4976" />
+      <location filename="../Project/Project.py" line="4987" />
       <source>Add a directory to the current project</source>
       <translation>为当前工程添加文件夹</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4979" />
+      <location filename="../Project/Project.py" line="4990" />
       <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;添加文件夹…&lt;/b&gt;&lt;p&gt;打开一个对话框将文件夹添加到当前项目中。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4989" />
+      <location filename="../Project/Project.py" line="5000" />
       <source>Add translation to project</source>
       <translation>将翻译添加到项目中</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4991" />
+      <location filename="../Project/Project.py" line="5002" />
       <source>Add &amp;translation...</source>
       <translation>添加翻译(&amp;T)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="4998" />
+      <location filename="../Project/Project.py" line="5009" />
       <source>Add a translation to the current project</source>
       <translation>将翻译添加到当前项目中</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5001" />
-      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;添加翻译…&lt;/b&gt;&lt;p&gt;打开一个对话框将翻译添加到当前项目中。&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5011" />
-      <source>Search new files</source>
-      <translation>搜索新文件</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5012" />
+      <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;添加翻译…&lt;/b&gt;&lt;p&gt;打开一个对话框将翻译添加到当前项目中。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5022" />
+      <source>Search new files</source>
+      <translation>搜索新文件</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5023" />
       <source>Searc&amp;h new files...</source>
       <translation>搜索新文件(&amp;H)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5018" />
+      <location filename="../Project/Project.py" line="5029" />
       <source>Search new files in the project directory.</source>
       <translation>在项目文件夹中搜索新文件。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5020" />
-      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5030" />
-      <source>Search Project File</source>
-      <translation type="unfinished">搜索项目文件</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5031" />
+      <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5041" />
+      <source>Search Project File</source>
+      <translation type="unfinished">搜索项目文件</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5042" />
       <source>Search Project File...</source>
       <translation type="unfinished">搜索项目文件…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5032" />
+      <location filename="../Project/Project.py" line="5043" />
       <source>Alt+Ctrl+P</source>
       <comment>Project|Search Project File</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5037" />
-      <source>Search for a file in the project list of files.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5039" />
-      <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5048" />
-      <source>Project properties</source>
-      <translation>项目属性</translation>
+      <source>Search for a file in the project list of files.</source>
+      <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5050" />
+      <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5059" />
+      <source>Project properties</source>
+      <translation>项目属性</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5061" />
       <source>&amp;Properties...</source>
       <translation>属性(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5056" />
-      <source>Show the project properties</source>
-      <translation>显示项目属性</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5058" />
-      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;属性…&lt;/b&gt;&lt;p&gt;显示一个对话框可编辑项目属性。&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5067" />
-      <source>User project properties</source>
-      <translation>用户项目属性</translation>
+      <source>Show the project properties</source>
+      <translation>显示项目属性</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5069" />
+      <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;属性…&lt;/b&gt;&lt;p&gt;显示一个对话框可编辑项目属性。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5078" />
+      <source>User project properties</source>
+      <translation>用户项目属性</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5080" />
       <source>&amp;User Properties...</source>
       <translation>用户属性(&amp;U)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5076" />
+      <location filename="../Project/Project.py" line="5087" />
       <source>Show the user specific project properties</source>
       <translation>显示用户指定的项目属性</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5079" />
-      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;用户属性…&lt;/b&gt;&lt;p&gt;显示一个对话框可编辑用户指定的项目属性。&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5089" />
-      <source>Filetype Associations</source>
-      <translation>文件类型关联</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5090" />
-      <source>Filetype Associations...</source>
-      <translation>文件类型关联…</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5097" />
-      <source>Show the project file type associations</source>
-      <translation type="unfinished" />
+      <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;用户属性…&lt;/b&gt;&lt;p&gt;显示一个对话框可编辑用户指定的项目属性。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5100" />
+      <source>Filetype Associations</source>
+      <translation>文件类型关联</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5101" />
+      <source>Filetype Associations...</source>
+      <translation>文件类型关联…</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5108" />
+      <source>Show the project file type associations</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5111" />
       <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5113" />
-      <source>Lexer Associations</source>
-      <translation type="unfinished">词法分析器联想</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5114" />
-      <source>Lexer Associations...</source>
-      <translation type="unfinished">词法分析器联想…</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5121" />
-      <source>Show the project lexer associations (overriding defaults)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5124" />
+      <source>Lexer Associations</source>
+      <translation type="unfinished">词法分析器联想</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5125" />
+      <source>Lexer Associations...</source>
+      <translation type="unfinished">词法分析器联想…</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5132" />
+      <source>Show the project lexer associations (overriding defaults)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5135" />
       <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5142" />
+      <location filename="../Project/Project.py" line="5153" />
       <source>Debugger Properties</source>
       <translation>调试器属性</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5143" />
+      <location filename="../Project/Project.py" line="5154" />
       <source>Debugger &amp;Properties...</source>
       <translation>调试器属性(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5149" />
+      <location filename="../Project/Project.py" line="5160" />
       <source>Show the debugger properties</source>
       <translation>显示调试器属性</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5151" />
-      <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;调试器属性…&lt;/b&gt;&lt;p&gt;显示一个对话框以编辑项目指定的调试器设定。&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5161" />
-      <source>Load</source>
-      <translation>载入</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5162" />
+      <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;调试器属性…&lt;/b&gt;&lt;p&gt;显示一个对话框以编辑项目指定的调试器设定。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5172" />
+      <source>Load</source>
+      <translation>载入</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5173" />
       <source>&amp;Load</source>
       <translation>载入(&amp;L)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5168" />
-      <source>Load the debugger properties</source>
-      <translation>载入调试器属性</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5170" />
-      <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;载入调试器属性&lt;/b&gt;&lt;p&gt;载入项目指定的调试器设定。&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5179" />
+      <source>Load the debugger properties</source>
+      <translation>载入调试器属性</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5181" />
+      <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;载入调试器属性&lt;/b&gt;&lt;p&gt;载入项目指定的调试器设定。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5190" />
       <source>Save</source>
       <translation>保存</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5186" />
-      <source>Save the debugger properties</source>
-      <translation>保存调试器属性</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5188" />
-      <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;保存调试器属性&lt;/b&gt;&lt;p&gt;保存项目指定的调试器设置。&lt;/p&gt;</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5197" />
+      <source>Save the debugger properties</source>
+      <translation>保存调试器属性</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5199" />
+      <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;保存调试器属性&lt;/b&gt;&lt;p&gt;保存项目指定的调试器设置。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5208" />
       <source>Delete</source>
       <translation>删除</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5198" />
+      <location filename="../Project/Project.py" line="5209" />
       <source>&amp;Delete</source>
       <translation>删除(&amp;D)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5204" />
+      <location filename="../Project/Project.py" line="5215" />
       <source>Delete the debugger properties</source>
       <translation>删除调试器属性</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5206" />
-      <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;删除调试器属性&lt;/b&gt;&lt;p&gt;删除包含项目指定调试器设置的文件。&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5216" />
-      <source>Reset</source>
-      <translation>重置</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5217" />
+      <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;删除调试器属性&lt;/b&gt;&lt;p&gt;删除包含项目指定调试器设置的文件。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5227" />
+      <source>Reset</source>
+      <translation>重置</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5228" />
       <source>&amp;Reset</source>
       <translation>重置(&amp;R)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5223" />
+      <location filename="../Project/Project.py" line="5234" />
       <source>Reset the debugger properties</source>
       <translation>重围调试器属性</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5225" />
+      <location filename="../Project/Project.py" line="5236" />
       <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;重置调试器属性&lt;/b&gt;&lt;p&gt;重置项目指定的调试器设置。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5241" />
-      <location filename="../Project/Project.py" line="5240" />
+      <location filename="../Project/Project.py" line="5252" />
+      <location filename="../Project/Project.py" line="5251" />
       <source>Load session</source>
       <translation>载入会话</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5247" />
+      <location filename="../Project/Project.py" line="5258" />
       <source>Load the projects session file.</source>
       <translation>载入项目会话文件。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5249" />
+      <location filename="../Project/Project.py" line="5260" />
       <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;载入会话&lt;/b&gt;&lt;p&gt;载入项目会话文件。会话包括如下数据。&lt;br&gt;- 所有打开的源文件&lt;br&gt;- 所有断点&lt;br&gt;- 命令行参数&lt;br&gt;- 工作文件夹&lt;br&gt;- 异常报告标志&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5265" />
-      <location filename="../Project/Project.py" line="5264" />
+      <location filename="../Project/Project.py" line="5276" />
+      <location filename="../Project/Project.py" line="5275" />
       <source>Save session</source>
       <translation>保存会话</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5271" />
+      <location filename="../Project/Project.py" line="5282" />
       <source>Save the projects session file.</source>
       <translation>保存项目会话文件。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5273" />
+      <location filename="../Project/Project.py" line="5284" />
       <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
       <translation>&lt;b&gt;保存会话&lt;/b&gt;&lt;p&gt;保存项目会话文件。会话包括如下数据。&lt;br&gt;- 所有打开的源文件&lt;br&gt;- 所有断点&lt;br&gt;- 命令行参数&lt;br&gt;- 工作文件夹&lt;br&gt;- 异常报告标志&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5289" />
-      <location filename="../Project/Project.py" line="5288" />
+      <location filename="../Project/Project.py" line="5300" />
+      <location filename="../Project/Project.py" line="5299" />
       <source>Delete session</source>
       <translation>删除会话</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5295" />
+      <location filename="../Project/Project.py" line="5306" />
       <source>Delete the projects session file.</source>
       <translation>删除项目会话文件。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5297" />
+      <location filename="../Project/Project.py" line="5308" />
       <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
       <translation>&lt;b&gt;删除会话&lt;/b&gt;&lt;p&gt;删除项目会话文件&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5312" />
-      <source>Code Metrics</source>
-      <translation>代码度量</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5313" />
-      <source>&amp;Code Metrics...</source>
-      <translation>代码度量(&amp;C)…</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5320" />
-      <source>Show some code metrics for the project.</source>
-      <translation>显示项目的部分代码度量。</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5323" />
-      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;代码度量…&lt;/b&gt;&lt;p&gt;显示项目中所有 Python 文件的部分代码度量。&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5333" />
-      <source>Python Code Coverage</source>
-      <translation>Python 代码覆盖率</translation>
+      <source>Code Metrics</source>
+      <translation>代码度量</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5324" />
+      <source>&amp;Code Metrics...</source>
+      <translation>代码度量(&amp;C)…</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5331" />
+      <source>Show some code metrics for the project.</source>
+      <translation>显示项目的部分代码度量。</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5334" />
-      <source>Code Co&amp;verage...</source>
-      <translation>代码覆盖率(&amp;v)…</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5341" />
-      <source>Show code coverage information for the project.</source>
-      <translation>显示项目的代码覆盖率信息。</translation>
+      <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;代码度量…&lt;/b&gt;&lt;p&gt;显示项目中所有 Python 文件的部分代码度量。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5344" />
-      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;代码覆盖率…&lt;/b&gt;&lt;p&gt;显示项目中所有 Python 文件的代码覆盖率。&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="6778" />
-      <location filename="../Project/Project.py" line="6765" />
-      <location filename="../Project/Project.py" line="5354" />
-      <source>Profile Data</source>
-      <translation>剖析数据</translation>
+      <source>Python Code Coverage</source>
+      <translation>Python 代码覆盖率</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5345" />
+      <source>Code Co&amp;verage...</source>
+      <translation>代码覆盖率(&amp;v)…</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5352" />
+      <source>Show code coverage information for the project.</source>
+      <translation>显示项目的代码覆盖率信息。</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5355" />
+      <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
+      <translation>&lt;b&gt;代码覆盖率…&lt;/b&gt;&lt;p&gt;显示项目中所有 Python 文件的代码覆盖率。&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="6789" />
+      <location filename="../Project/Project.py" line="6776" />
+      <location filename="../Project/Project.py" line="5365" />
+      <source>Profile Data</source>
+      <translation>剖析数据</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5366" />
       <source>&amp;Profile Data...</source>
       <translation>剖析数据(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5362" />
+      <location filename="../Project/Project.py" line="5373" />
       <source>Show profiling data for the project.</source>
       <translation>显示项目的剖析数据。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5365" />
+      <location filename="../Project/Project.py" line="5376" />
       <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;剖析数据…&lt;/b&gt;&lt;p&gt;显示项目的剖析数据。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6830" />
-      <location filename="../Project/Project.py" line="5380" />
+      <location filename="../Project/Project.py" line="6841" />
+      <location filename="../Project/Project.py" line="5391" />
       <source>Application Diagram</source>
       <translation>应用程序图</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5381" />
+      <location filename="../Project/Project.py" line="5392" />
       <source>&amp;Application Diagram...</source>
       <translation>应用程序(&amp;A)图…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5388" />
+      <location filename="../Project/Project.py" line="5399" />
       <source>Show a diagram of the project.</source>
       <translation>显示项目图表。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5391" />
+      <location filename="../Project/Project.py" line="5402" />
       <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;应用程序图…&lt;/b&gt;&lt;p&gt;显示项目的图表。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5400" />
+      <location filename="../Project/Project.py" line="5411" />
       <source>Load Diagram</source>
       <translation type="unfinished">加载图表</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5401" />
+      <location filename="../Project/Project.py" line="5412" />
       <source>&amp;Load Diagram...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5407" />
+      <location filename="../Project/Project.py" line="5418" />
       <source>Load a diagram from file.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5409" />
+      <location filename="../Project/Project.py" line="5420" />
       <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6998" />
-      <location filename="../Project/Project.py" line="6943" />
-      <location filename="../Project/Project.py" line="5424" />
+      <location filename="../Project/Project.py" line="7009" />
+      <location filename="../Project/Project.py" line="6954" />
+      <location filename="../Project/Project.py" line="5435" />
       <source>Create Package List</source>
       <translation>创建程序包列表</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5426" />
+      <location filename="../Project/Project.py" line="5437" />
       <source>Create &amp;Package List</source>
       <translation type="unfinished">创建插件存档(&amp;A)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5433" />
+      <location filename="../Project/Project.py" line="5444" />
       <source>Create an initial PKGLIST file for an eric plugin.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5436" />
+      <location filename="../Project/Project.py" line="5447" />
       <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7068" />
-      <location filename="../Project/Project.py" line="5447" />
+      <location filename="../Project/Project.py" line="7080" />
+      <location filename="../Project/Project.py" line="5458" />
       <source>Create Plugin Archives</source>
       <translation type="unfinished">创建插件存档</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5449" />
+      <location filename="../Project/Project.py" line="5460" />
       <source>Create Plugin &amp;Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5455" />
+      <location filename="../Project/Project.py" line="5466" />
       <source>Create eric plugin archive files.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5457" />
+      <location filename="../Project/Project.py" line="5468" />
       <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5469" />
+      <location filename="../Project/Project.py" line="5480" />
       <source>Create Plugin Archives (Snapshot)</source>
       <translation type="unfinished">创建插件存档(快照)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5471" />
+      <location filename="../Project/Project.py" line="5482" />
       <source>Create Plugin Archives (&amp;Snapshot)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5478" />
+      <location filename="../Project/Project.py" line="5489" />
       <source>Create eric plugin archive files (snapshot releases).</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5481" />
+      <location filename="../Project/Project.py" line="5492" />
       <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7510" />
-      <location filename="../Project/Project.py" line="7481" />
-      <location filename="../Project/Project.py" line="7435" />
-      <location filename="../Project/Project.py" line="7387" />
-      <location filename="../Project/Project.py" line="5500" />
+      <location filename="../Project/Project.py" line="7536" />
+      <location filename="../Project/Project.py" line="7507" />
+      <location filename="../Project/Project.py" line="7461" />
+      <location filename="../Project/Project.py" line="7413" />
+      <location filename="../Project/Project.py" line="5511" />
       <source>Execute Make</source>
       <translation>执行make</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5501" />
+      <location filename="../Project/Project.py" line="5512" />
       <source>&amp;Execute Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5507" />
+      <location filename="../Project/Project.py" line="5518" />
       <source>Perform a 'make' run.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5509" />
-      <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7487" />
-      <location filename="../Project/Project.py" line="5519" />
-      <source>Test for Changes</source>
-      <translation>测试变更</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5520" />
+      <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a 'make' run to rebuild the configured target.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7513" />
+      <location filename="../Project/Project.py" line="5530" />
+      <source>Test for Changes</source>
+      <translation>测试变更</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5531" />
       <source>&amp;Test for Changes</source>
       <translation>&amp;测试变更</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5527" />
+      <location filename="../Project/Project.py" line="5538" />
       <source>Question 'make', if a rebuild is needed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5530" />
+      <location filename="../Project/Project.py" line="5541" />
       <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions 'make', if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5548" />
-      <source>Create SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5549" />
-      <source>Create &amp;SBOM File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5556" />
-      <source>Create a SBOM file of the project dependencies.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5559" />
-      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
+      <source>Create SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5560" />
+      <source>Create &amp;SBOM File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5567" />
+      <source>Create a SBOM file of the project dependencies.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5570" />
-      <source>Clear Byte Code Caches</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5571" />
-      <source>Clear Byte Code &amp;Caches</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5578" />
-      <source>Clear the byte code caches of the project.</source>
+      <source>&lt;b&gt;Create SBOM File&lt;/b&gt;&lt;p&gt;This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5581" />
+      <source>Clear Byte Code Caches</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5582" />
+      <source>Clear Byte Code &amp;Caches</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5589" />
+      <source>Clear the byte code caches of the project.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5592" />
       <source>&lt;b&gt;Clear Byte Code Caches&lt;/b&gt;&lt;p&gt;This deletes all directories containing byte code cache files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5597" />
+      <location filename="../Project/Project.py" line="5608" />
       <source>About Black</source>
       <translation type="unfinished">关于Black</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5598" />
+      <location filename="../Project/Project.py" line="5609" />
       <source>&amp;Black</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5604" />
+      <location filename="../Project/Project.py" line="5615" />
       <source>Show some information about 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5606" />
+      <location filename="../Project/Project.py" line="5617" />
       <source>&lt;b&gt;Black&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'Black' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5618" />
-      <source>Format Code</source>
-      <translation type="unfinished">格式化代码</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5619" />
-      <source>&amp;Format Code</source>
-      <translation type="unfinished">&amp;格式化代码</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5626" />
-      <source>Format the project sources with 'Black'.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5629" />
+      <source>Format Code</source>
+      <translation type="unfinished">格式化代码</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5630" />
+      <source>&amp;Format Code</source>
+      <translation type="unfinished">&amp;格式化代码</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5637" />
+      <source>Format the project sources with 'Black'.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5640" />
       <source>&lt;b&gt;Format Code&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5641" />
+      <location filename="../Project/Project.py" line="5652" />
       <source>Check Code Formatting</source>
       <translation>代码格式化</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5642" />
+      <location filename="../Project/Project.py" line="5653" />
       <source>&amp;Check Code Formatting</source>
       <translation type="unfinished">&amp;检查代码格式化</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5649" />
+      <location filename="../Project/Project.py" line="5660" />
       <source>Check, if the project sources need to be reformatted with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5654" />
+      <location filename="../Project/Project.py" line="5665" />
       <source>&lt;b&gt;Check Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5667" />
+      <location filename="../Project/Project.py" line="5678" />
       <source>Code Formatting Diff</source>
       <translation type="unfinished">代码格式化差异</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5668" />
+      <location filename="../Project/Project.py" line="5679" />
       <source>Code Formatting &amp;Diff</source>
       <translation type="unfinished">代码格式化&amp;差异</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5675" />
+      <location filename="../Project/Project.py" line="5686" />
       <source>Generate a unified diff of potential project source reformatting with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5681" />
+      <location filename="../Project/Project.py" line="5692" />
       <source>&lt;b&gt;Diff Code Formatting&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5846" />
-      <location filename="../Project/Project.py" line="5796" />
-      <location filename="../Project/Project.py" line="5795" />
-      <location filename="../Project/Project.py" line="5695" />
-      <location filename="../Project/Project.py" line="5694" />
+      <location filename="../Project/Project.py" line="5857" />
+      <location filename="../Project/Project.py" line="5807" />
+      <location filename="../Project/Project.py" line="5806" />
+      <location filename="../Project/Project.py" line="5706" />
+      <location filename="../Project/Project.py" line="5705" />
       <source>Configure</source>
       <translation type="unfinished">配置</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5702" />
+      <location filename="../Project/Project.py" line="5713" />
       <source>Enter the parameters for formatting the project sources with 'Black'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5707" />
+      <location filename="../Project/Project.py" line="5718" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for formatting the project sources with 'Black'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5723" />
+      <location filename="../Project/Project.py" line="5734" />
       <source>About isort</source>
       <translation type="unfinished">关于isort</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5724" />
+      <location filename="../Project/Project.py" line="5735" />
       <source>&amp;isort</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5730" />
+      <location filename="../Project/Project.py" line="5741" />
       <source>Show some information about 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5732" />
+      <location filename="../Project/Project.py" line="5743" />
       <source>&lt;b&gt;isort&lt;/b&gt;&lt;p&gt;This shows some information about the installed 'isort' tool.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5745" />
-      <location filename="../Project/Project.py" line="5744" />
+      <location filename="../Project/Project.py" line="5756" />
+      <location filename="../Project/Project.py" line="5755" />
       <source>Sort Imports</source>
       <translation type="unfinished">排序 Imports</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5752" />
+      <location filename="../Project/Project.py" line="5763" />
       <source>Sort the import statements of the project sources with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5755" />
+      <location filename="../Project/Project.py" line="5766" />
       <source>&lt;b&gt;Sort Imports&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5769" />
-      <location filename="../Project/Project.py" line="5768" />
+      <location filename="../Project/Project.py" line="5780" />
+      <location filename="../Project/Project.py" line="5779" />
       <source>Imports Sorting Diff</source>
       <translation type="unfinished">Imports 排序差异</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5776" />
+      <location filename="../Project/Project.py" line="5787" />
       <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5782" />
+      <location filename="../Project/Project.py" line="5793" />
       <source>&lt;b&gt;Imports Sorting Diff&lt;/b&gt;&lt;p&gt;This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5803" />
+      <location filename="../Project/Project.py" line="5814" />
       <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5809" />
+      <location filename="../Project/Project.py" line="5820" />
       <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5825" />
-      <source>Install Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5826" />
-      <source>&amp;Install Project</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5833" />
-      <source>Install the project into the embedded environment.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5836" />
-      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <source>Install Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5837" />
+      <source>&amp;Install Project</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5844" />
+      <source>Install the project into the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Project/Project.py" line="5847" />
+      <source>&lt;b&gt;Install Project&lt;/b&gt;&lt;p&gt;This installs the project into the embedded virtual environment in editable mode (i.e. development mode).&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5858" />
       <source>&amp;Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5854" />
+      <location filename="../Project/Project.py" line="5865" />
       <source>Configure the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5857" />
-      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5867" />
-      <source>Upgrade</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5868" />
+      <source>&lt;b&gt;Configure&lt;/b&gt;&lt;p&gt;This opens a dialog to configure the embedded virtual environment of the project.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5878" />
+      <source>Upgrade</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5879" />
       <source>&amp;Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5874" />
+      <location filename="../Project/Project.py" line="5885" />
       <source>Upgrade the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5876" />
+      <location filename="../Project/Project.py" line="5887" />
       <source>&lt;b&gt;Upgrade&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5888" />
+      <location filename="../Project/Project.py" line="5899" />
       <source>Recreate</source>
       <translation>重建</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5889" />
+      <location filename="../Project/Project.py" line="5900" />
       <source>&amp;Recreate</source>
       <translation>&amp;重建</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5895" />
+      <location filename="../Project/Project.py" line="5906" />
       <source>Recreate the embedded environment.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5897" />
+      <location filename="../Project/Project.py" line="5908" />
       <source>&lt;b&gt;Recreate&lt;/b&gt;&lt;p&gt;This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5929" />
+      <location filename="../Project/Project.py" line="5940" />
       <source>&amp;Project</source>
       <translation>项目(&amp;P)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5930" />
-      <source>Open &amp;Recent Projects</source>
-      <translation>打开最近的项目</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5932" />
-      <source>Session</source>
-      <translation>会话</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5933" />
-      <source>Debugger</source>
-      <translation>调试器</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5934" />
-      <source>Embedded Environment</source>
-      <translation type="unfinished">内嵌环境</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5936" />
-      <source>Project-T&amp;ools</source>
-      <translation>项目-工&amp;具</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5937" />
-      <source>&amp;Version Control</source>
-      <translation>版本控制(&amp;V)</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="5941" />
-      <source>Chec&amp;k</source>
-      <translation>检查(&amp;K)</translation>
+      <source>Open &amp;Recent Projects</source>
+      <translation>打开最近的项目</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5943" />
-      <source>Code &amp;Formatting</source>
-      <translation type="unfinished">代码&amp;格式化</translation>
+      <source>Session</source>
+      <translation>会话</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5944" />
+      <source>Debugger</source>
+      <translation>调试器</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5945" />
-      <source>Sho&amp;w</source>
-      <translation>显示(&amp;W)</translation>
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="5946" />
-      <source>&amp;Diagrams</source>
-      <translation>图表(&amp;D)</translation>
+      <source>Embedded Environment</source>
+      <translation type="unfinished">内嵌环境</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5947" />
-      <source>Pac&amp;kagers</source>
-      <translation>打包程序(&amp;K)</translation>
+      <source>Project-T&amp;ools</source>
+      <translation>项目-工&amp;具</translation>
     </message>
     <message>
       <location filename="../Project/Project.py" line="5948" />
+      <source>&amp;Version Control</source>
+      <translation>版本控制(&amp;V)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5952" />
+      <source>Chec&amp;k</source>
+      <translation>检查(&amp;K)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5954" />
+      <source>Code &amp;Formatting</source>
+      <translation type="unfinished">代码&amp;格式化</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5956" />
+      <source>Sho&amp;w</source>
+      <translation>显示(&amp;W)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5957" />
+      <source>&amp;Diagrams</source>
+      <translation>图表(&amp;D)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5958" />
+      <source>Pac&amp;kagers</source>
+      <translation>打包程序(&amp;K)</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="5959" />
       <source>Source &amp;Documentation</source>
       <translation>源文档(&amp;D)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5950" />
+      <location filename="../Project/Project.py" line="5961" />
       <source>Make</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="5951" />
+      <location filename="../Project/Project.py" line="5962" />
       <source>Other Tools</source>
       <translation>其它工具</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6113" />
-      <location filename="../Project/Project.py" line="6111" />
+      <location filename="../Project/Project.py" line="6124" />
+      <location filename="../Project/Project.py" line="6122" />
       <source>Project</source>
       <translation>项目</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6195" />
+      <location filename="../Project/Project.py" line="6206" />
       <source>&amp;Clear</source>
       <translation>清除(&amp;C)</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6392" />
+      <location filename="../Project/Project.py" line="6403" />
       <source>Search New Files</source>
       <translation>搜索新文件</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6393" />
+      <location filename="../Project/Project.py" line="6404" />
       <source>There were no new files found to be added.</source>
       <translation>没有要添加的新文件。</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6554" />
-      <location filename="../Project/Project.py" line="6541" />
+      <location filename="../Project/Project.py" line="6565" />
+      <location filename="../Project/Project.py" line="6552" />
       <source>Version Control System</source>
       <translation>版本控制系统</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6542" />
+      <location filename="../Project/Project.py" line="6553" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6555" />
+      <location filename="../Project/Project.py" line="6566" />
       <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6712" />
+      <location filename="../Project/Project.py" line="6723" />
       <source>Coverage Data</source>
       <translation>覆盖率数据</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6766" />
-      <location filename="../Project/Project.py" line="6713" />
+      <location filename="../Project/Project.py" line="6777" />
+      <location filename="../Project/Project.py" line="6724" />
       <source>There is no main script defined for the current project. Aborting</source>
       <translation>当前项目未定义主脚本。终止</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6725" />
+      <location filename="../Project/Project.py" line="6736" />
       <source>Code Coverage</source>
       <translation>代码覆盖率</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6726" />
+      <location filename="../Project/Project.py" line="6737" />
       <source>Please select a coverage file</source>
       <translation>请选择一个覆盖率文件</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6779" />
+      <location filename="../Project/Project.py" line="6790" />
       <source>Please select a profile file</source>
       <translation>请选择一个剖析文件</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6831" />
+      <location filename="../Project/Project.py" line="6842" />
       <source>Include module names?</source>
       <translation>包含模块名?</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6944" />
+      <location filename="../Project/Project.py" line="6955" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;文件 &lt;b&gt;PKGLIST&lt;/b&gt; 已存在。&lt;/p&gt;&lt;p&gt;是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="6999" />
+      <location filename="../Project/Project.py" line="7010" />
       <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7295" />
-      <location filename="../Project/Project.py" line="7251" />
-      <location filename="../Project/Project.py" line="7201" />
-      <location filename="../Project/Project.py" line="7190" />
-      <location filename="../Project/Project.py" line="7172" />
-      <location filename="../Project/Project.py" line="7139" />
-      <location filename="../Project/Project.py" line="7109" />
-      <location filename="../Project/Project.py" line="7081" />
-      <location filename="../Project/Project.py" line="7051" />
-      <location filename="../Project/Project.py" line="7037" />
-      <location filename="../Project/Project.py" line="7020" />
+      <location filename="../Project/Project.py" line="7321" />
+      <location filename="../Project/Project.py" line="7277" />
+      <location filename="../Project/Project.py" line="7227" />
+      <location filename="../Project/Project.py" line="7216" />
+      <location filename="../Project/Project.py" line="7198" />
+      <location filename="../Project/Project.py" line="7151" />
+      <location filename="../Project/Project.py" line="7121" />
+      <location filename="../Project/Project.py" line="7093" />
+      <location filename="../Project/Project.py" line="7063" />
+      <location filename="../Project/Project.py" line="7048" />
+      <location filename="../Project/Project.py" line="7031" />
       <source>Create Plugin Archive</source>
       <translation>创建插件存档</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7021" />
+      <location filename="../Project/Project.py" line="7032" />
       <source>The project does not have a main script defined. Aborting...</source>
       <translation>项目未定义主脚本。终止…</translation>
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7038" />
+      <location filename="../Project/Project.py" line="7049" />
       <source>Select package lists:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7052" />
-      <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7060" />
-      <source>Creating plugin archives...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project/Project.py" line="7061" />
-      <source>Abort</source>
-      <translation type="unfinished">终止</translation>
-    </message>
-    <message>
       <location filename="../Project/Project.py" line="7064" />
+      <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7072" />
+      <source>Creating plugin archives...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7073" />
+      <source>Abort</source>
+      <translation type="unfinished">终止</translation>
+    </message>
+    <message>
+      <location filename="../Project/Project.py" line="7076" />
       <source>%v/%m Archives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7082" />
+      <location filename="../Project/Project.py" line="7094" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7110" />
+      <location filename="../Project/Project.py" line="7122" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the'; initial_list' line of the header.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7140" />
+      <location filename="../Project/Project.py" line="7152" />
       <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7173" />
+      <location filename="../Project/Project.py" line="7199" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7191" />
+      <location filename="../Project/Project.py" line="7217" />
       <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7202" />
+      <location filename="../Project/Project.py" line="7228" />
       <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7252" />
+      <location filename="../Project/Project.py" line="7278" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7296" />
+      <location filename="../Project/Project.py" line="7322" />
       <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7388" />
+      <location filename="../Project/Project.py" line="7414" />
       <source>'Make' is not supported for remote projects. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7436" />
+      <location filename="../Project/Project.py" line="7462" />
       <source>The make process did not start.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7482" />
+      <location filename="../Project/Project.py" line="7508" />
       <source>The make process crashed.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7490" />
+      <location filename="../Project/Project.py" line="7516" />
       <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7495" />
+      <location filename="../Project/Project.py" line="7521" />
       <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7511" />
+      <location filename="../Project/Project.py" line="7537" />
       <source>The makefile contains errors.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7941" />
+      <location filename="../Project/Project.py" line="7975" />
       <source>Interpreter Missing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="7942" />
+      <location filename="../Project/Project.py" line="7976" />
       <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8023" />
+      <location filename="../Project/Project.py" line="8057" />
       <source>Open Remote Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/Project.py" line="8054" />
-      <location filename="../Project/Project.py" line="8039" />
+      <location filename="../Project/Project.py" line="8088" />
+      <location filename="../Project/Project.py" line="8073" />
       <source>Save Remote Project</source>
       <translation type="unfinished" />
     </message>
@@ -65283,50 +65298,50 @@
       <translation type="unfinished">该文件有 MIME 类型。&lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt;将其添加至文本 MIME 类型列表?</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="527" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="511" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="529" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="513" />
       <source>New directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="512" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="514" />
       <source>&lt;p&gt;A file or directory named &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="528" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="530" />
       <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="625" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="596" />
-      <location filename="../Project/ProjectOthersBrowser.py" line="577" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="627" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="598" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="579" />
       <source>New file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="578" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="580" />
       <source>Enter the path of the new file:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="597" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="599" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. The action will be aborted.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="626" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="628" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created. Aborting...&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="716" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="718" />
       <source>Delete files/directories</source>
       <translation>删除文件或文件夹</translation>
     </message>
     <message>
-      <location filename="../Project/ProjectOthersBrowser.py" line="717" />
+      <location filename="../Project/ProjectOthersBrowser.py" line="719" />
       <source>Do you really want to delete these entries from the project?</source>
       <translation>确定要从项目中删除这些条目吗?</translation>
     </message>
@@ -67068,22 +67083,22 @@
   <context>
     <name>Purge</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="74" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="76" />
       <source>Purge All Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="75" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="77" />
       <source>Do really want to delete all files not tracked by Mercurial (including ignored ones)?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="80" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="82" />
       <source>Purge Files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="81" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="83" />
       <source>Do really want to delete files not tracked by Mercurial?</source>
       <translation type="unfinished" />
     </message>
@@ -67191,7 +67206,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="453" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="455" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="235" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -67207,7 +67222,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="433" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="246" />
       <source>Flash MicroPython Firmware</source>
       <translation type="unfinished" />
@@ -67263,7 +67278,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="431" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="432" />
       <location filename="../MicroPython/Devices/PyBoardDevices.py" line="390" />
       <source>'dfu-util' Output</source>
       <translation type="unfinished" />
@@ -67274,37 +67289,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="416" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="417" />
       <source>Flash MicroPython/CircuitPython Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="419" />
       <source>MicroPython Firmware Files (*.dfu);;CircuitPython Firmware Files (*.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="454" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="456" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="484" />
       <source>unknown</source>
       <translation type="unfinished">未知</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="488" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="490" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="496" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="498" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="500" />
+      <location filename="../MicroPython/Devices/PyBoardDevices.py" line="502" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -69441,12 +69456,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="139" />
+      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="141" />
       <source>No current editor</source>
       <translation type="unfinished">没有当前编辑器</translation>
     </message>
     <message>
-      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="140" />
+      <location filename="../Plugins/PluginWizardQRegularExpression.py" line="142" />
       <source>Please open or create a file first.</source>
       <translation>请您先打开或创建一个文件。</translation>
     </message>
@@ -71239,7 +71254,7 @@
       <translation type="unfinished">管理插件…</translation>
     </message>
     <message>
-      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="122" />
+      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="124" />
       <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="82" />
       <source>Add Documentation</source>
       <translation type="unfinished">添加文档</translation>
@@ -71250,7 +71265,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="123" />
+      <location filename="../QtHelpInterface/QtHelpDocumentationSettingsWidget.py" line="125" />
       <source>The file &lt;b&gt;{0}&lt;/b&gt; could not be added.</source>
       <translation type="unfinished" />
     </message>
@@ -71508,191 +71523,191 @@
   <context>
     <name>Queues</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="226" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="228" />
       <source>New Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="277" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="279" />
       <source>Update Current Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="335" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="337" />
       <source>Pop Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="339" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="341" />
       <source>Push Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="343" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="345" />
       <source>Go to Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="437" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="369" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="356" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="441" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="371" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="358" />
       <source>Select Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="359" />
       <source>Select the target patch name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="452" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="456" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="372" />
       <source>No patches to select from.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="399" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="401" />
       <source>Finish Applied Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="423" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="427" />
       <source>Rename Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="438" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="442" />
       <source>Select the patch to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="446" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="450" />
       <source>Delete Patch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="488" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="482" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="475" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="492" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="486" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="479" />
       <source>Fold Patches</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="483" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="487" />
       <source>No patches selected.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="493" />
       <source>No patches available to be folded.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="510" />
       <source>List Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="507" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="511" />
       <source>No patches available to list guards for.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="536" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="540" />
       <source>Define Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="537" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="541" />
       <source>No patches available to define guards for.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="568" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="548" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="552" />
       <source>Drop All Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="549" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="553" />
       <source>Select the patch to drop guards for (leave empty for the current patch):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="597" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="590" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="606" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598" />
       <source>Set Active Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="598" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="607" />
       <source>No guards available to select from.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="618" />
       <source>Deactivate Guards</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649" />
       <source>Create New Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="649" />
       <source>Rename Active Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="658" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="673" />
       <source>Error while creating a new queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="660" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="675" />
       <source>Error while renaming the active queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="693" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="708" />
       <source>Purge Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="710" />
       <source>Delete Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="697" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="712" />
       <source>Activate Queue</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="717" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="736" />
       <source>Error while purging the queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="738" />
       <source>Error while deleting the queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="721" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="740" />
       <source>Error while setting the active queue.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="743" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="762" />
       <source>Available Queues</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="757" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="777" />
       <source>Initializing new queue repository</source>
       <translation type="unfinished" />
     </message>
@@ -72833,17 +72848,17 @@
   <context>
     <name>Rebase</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="83" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="86" />
       <source>Rebase Changesets</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="106" />
       <source>Rebase Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="121" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="127" />
       <source>Rebase Changesets (Abort)</source>
       <translation type="unfinished" />
     </message>
@@ -73094,7 +73109,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="421" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="423" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -73148,37 +73163,37 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="402" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="403" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="403" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="404" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="424" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
       <source>unknown</source>
       <translation type="unfinished">未知</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="456" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="466" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="468" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="470" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -76102,49 +76117,49 @@
   <context>
     <name>Shelve</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="102" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="105" />
       <source>Shelve current changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="144" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="151" />
       <source>Restore shelved changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="162" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="170" />
       <source>Abort restore operation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="182" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="191" />
       <source>Continue restore operation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="201" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211" />
       <source>Select the shelves to be deleted:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="220" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="211" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="222" />
       <source>Delete shelves</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="212" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="223" />
       <source>Do you really want to delete these shelves?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="238" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="231" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="249" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="242" />
       <source>Delete all shelves</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="232" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py" line="243" />
       <source>Do you really want to delete all shelved changes?</source>
       <translation type="unfinished" />
     </message>
@@ -78953,7 +78968,7 @@
   <context>
     <name>Strip</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="64" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/StripExtension/strip.py" line="68" />
       <source>Stripping changesets from repository</source>
       <translation type="unfinished" />
     </message>
@@ -79069,7 +79084,7 @@
       <translation>svn 进程已结束,返回值为 {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2138" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2173" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="185" />
       <source>The svn process did not finish within 30s.</source>
       <translation>svn 进程在 30 秒内未结束。</translation>
@@ -79105,338 +79120,338 @@
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="320" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="334" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="335" />
       <source>Importing project into Subversion repository</source>
       <translation>将项目导入到 Subversion 仓库中</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="379" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="375" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="378" />
       <source>Subversion Checkout</source>
       <translation>Subversion 检出</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="450" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="380" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="436" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="376" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="452" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="381" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="442" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="379" />
       <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source>
       <translation>标签必须是标准标签或分支标签。请从列表中选择。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="402" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="402" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="406" />
       <source>Checking project out of Subversion repository</source>
       <translation>正在从 Subversion 仓库中检出项目</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="449" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="435" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="441" />
       <source>Subversion Export</source>
       <translation>Subversion 导出</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="471" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="459" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="473" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="466" />
       <source>Exporting project from Subversion repository</source>
       <translation>正在从 Subversion 仓库中导出项目</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="554" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="541" />
       <source>Commit Changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="533" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="558" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="542" />
       <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="597" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="600" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="592" />
       <source>Commiting changes to Subversion repository</source>
       <translation>正在将改变提交到 Subversion 仓库中</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="670" />
       <source>Synchronizing with the Subversion repository</source>
       <translation>正在与 Subversion 仓库同步</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="816" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="774" />
       <source>Adding files/directories to the Subversion repository</source>
       <translation>将文件或文件夹添加到 Subversion 仓库</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="927" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="852" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="933" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="869" />
       <source>Adding directory trees to the Subversion repository</source>
       <translation>将目录树添加到 Subversion 仓库</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="968" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="889" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="975" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="908" />
       <source>Removing files/directories from the Subversion repository</source>
       <translation>从Subversion 仓库移除文件或文件夹</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1032" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="953" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1042" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="973" />
       <source>Moving {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1331" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1302" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1162" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1132" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1216" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1187" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1064" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1035" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1351" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1319" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1176" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1143" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1243" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1211" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1087" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1055" />
       <source>Subversion Error</source>
       <translation>Subversion 错误</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1133" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1036" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1144" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1056" />
       <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source>
       <translation>项目仓库的 URL 无法从工作拷贝中获取。标签操作将被终止</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1163" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1065" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1177" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1088" />
       <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source>
       <translation>项目仓库的 URL 包含无效格式。标签操作将被终止</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1214" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1199" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1185" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1099" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1122" />
       <source>Tagging {0} in the Subversion repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1246" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1235" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1143" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1132" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1262" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1251" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1167" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1156" />
       <source>Revert changes</source>
       <translation type="unfinished">还原改变</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1236" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1133" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1252" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1157" />
       <source>Do you really want to revert all changes to these files or directories?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1247" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1144" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1263" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1168" />
       <source>Do you really want to revert all changes of the project?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1255" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1150" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1271" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1174" />
       <source>Reverting changes</source>
       <translation>还原改变</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1303" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1188" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1320" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1212" />
       <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source>
       <translation>项目仓库的 URL 无法从工作拷贝中检索。转换操作将被终止</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1332" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1217" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1352" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1244" />
       <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source>
       <translation>项目仓库的 URL 包含无效格式。转换操作将被终止</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1355" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1246" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1375" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1273" />
       <source>Switching to {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1456" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1313" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1481" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1344" />
       <source>Merging {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1787" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1602" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1813" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633" />
       <source>Cleaning up {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1828" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1859" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1666" />
       <source>Subversion command</source>
       <translation>Subversion 命令</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1960" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1991" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1849" />
       <source>Resolving conficts</source>
       <translation>解析冲突</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2004" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1852" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2036" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1885" />
       <source>Copying {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2084" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2067" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1923" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1902" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2117" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2100" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1956" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1935" />
       <source>Subversion Set Property</source>
       <translation>Subversion 设置属性</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2131" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2068" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1951" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1903" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2101" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1984" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1936" />
       <source>You have to supply a property name. Aborting.</source>
       <translation>您必须提供一个属性名。终止。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2147" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2130" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1968" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1950" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1939" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2181" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2164" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2001" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1983" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1972" />
       <source>Subversion Delete Property</source>
       <translation>Subversion 删除属性</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1940" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1973" />
       <source>Enter property name</source>
       <translation>输入属性名</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2140" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2175" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2403" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2391" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2382" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2206" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2194" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2185" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2440" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2428" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2419" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2241" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2229" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2220" />
       <source>Subversion Side-by-Side Difference</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2404" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2207" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2441" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2242" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 无法读取。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2466" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2260" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2503" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2295" />
       <source>Locking in the Subversion repository</source>
       <translation>在 Subversion 仓库中锁定</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2508" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2288" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2545" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2324" />
       <source>Unlocking in the Subversion repository</source>
       <translation>在 Subversion 仓库中解锁</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2558" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2314" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2595" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2351" />
       <source>Relocating</source>
       <translation>重新定位</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2584" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2333" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2621" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2370" />
       <source>Repository Browser</source>
       <translation>仓库浏览器</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2585" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2334" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2371" />
       <source>Enter the repository URL.</source>
       <translation>输入仓库 URL。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2610" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2647" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2441" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2404" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2367" />
       <source>Remove from changelist</source>
       <translation>从更改列表中移除</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2649" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2638" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2383" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2687" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2676" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2420" />
       <source>Add to changelist</source>
       <translation>添加更改列表</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2639" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2384" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2677" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2421" />
       <source>Enter name of the changelist:</source>
       <translation>输入更改列表名称:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2706" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2474" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2746" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="2511" />
       <source>Upgrade</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="338" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="339" />
       <source>Imported revision {0}.
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="635" />
       <source>Committed revision {0}.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1363" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1210" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1384" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1226" />
       <source>Revision {0}.
 </source>
       <translation type="unfinished">版本 {0}。
 </translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2107" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2141" />
       <source>Property set.</source>
       <translation>属性设置。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2165" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2200" />
       <source>Property deleted.</source>
       <translation>属性已删除。</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2448" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2485" />
       <source>Subversion Lock</source>
       <translation>Subversion 锁定</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2449" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2486" />
       <source>Enter lock comment</source>
       <translation>输入锁定注释</translation>
     </message>
@@ -89788,133 +89803,133 @@
   <context>
     <name>UF2FlashDialog</name>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="722" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="732" />
       <source>&lt;h3&gt;CircuitPython Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Switch your device to 'bootloader' mode by double-pressing the reset button.&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;(If this does not happen, then try shorter or longer pauses between presses.)&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="748" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="758" />
       <source>&lt;h3&gt;Pi Pico (RP2040/RP2350) Board&lt;/h3&gt;&lt;p&gt;In order to prepare the board for flashing follow these steps:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Enter 'bootloader' mode (board &lt;b&gt;without&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;Plug in your board while holding the BOOTSEL button.&lt;/li&gt;&lt;/ul&gt;Enter 'bootloader' mode (board &lt;b&gt;with&lt;/b&gt; RESET button):&lt;ul&gt;&lt;li&gt;hold down RESET&lt;/li&gt;&lt;li&gt;hold down BOOTSEL&lt;/li&gt;&lt;li&gt;release RESET&lt;/li&gt;&lt;li&gt;release BOOTSEL&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it).&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/UF2FlashDialog.ui" line="0" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1248" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1256" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1258" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1266" />
       <source>Flash UF2 Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1257" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1267" />
       <source>Select the Boot Volume of the device:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="861" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="871" />
       <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="928" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="920" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="904" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="938" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="930" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="914" />
       <source>Manual Select</source>
       <translation type="unfinished">手动选择</translation>
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1032" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1000" />
-      <location filename="../MicroPython/UF2FlashDialog.py" line="977" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1042" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1010" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="987" />
       <source>Reset Instructions:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="979" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="989" />
       <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the appropriate instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1003" />
-      <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/UF2FlashDialog.py" line="1013" />
+      <source>&lt;h4&gt;Flash {0} Firmware&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;&lt;hr/&gt;{1}</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1023" />
       <source>&lt;h4&gt;Potentially UF2 capable devices found&lt;/h4&gt;&lt;p&gt;Found these potentially UF2 capable devices:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1034" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1044" />
       <source>&lt;h4&gt;No known devices detected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set &lt;b&gt;one&lt;/b&gt; board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1046" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1056" />
       <source>Flash Instructions:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1048" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1058" />
       <source>&lt;h4&gt;Flash method 'manual' selected.&lt;/h4&gt;&lt;p&gt;Follow the instructions below to flash a device by entering the data manually.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Change the device to 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Wait until the device has entered 'bootloader' mode.&lt;/li&gt;&lt;li&gt;Ensure the boot volume is available (this may require mounting it) and select its path.&lt;/li&gt;&lt;li&gt;Select the firmware file to be flashed and click the flash button.&lt;/li&gt;&lt;/ol&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1073" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1083" />
       <source>Boot Volume not found:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1075" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1085" />
       <source>&lt;h4&gt;No Boot Volume detected.&lt;/h4&gt;&lt;p&gt;Please ensure that the boot volume of the device to be flashed is available. </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1081" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1091" />
       <source>This volume should be named &lt;b&gt;{0}&lt;/b&gt;. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1086" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1096" />
       <source>This volume should have one of these names.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1093" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1103" />
       <source>&lt;h4&gt;Reset Instructions&lt;/h4&gt;&lt;p&gt;Follow the instructions below to set the board into 'bootloader' mode. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1112" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1122" />
       <source>Multiple Boot Volumes found:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1114" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1124" />
       <source>&lt;h4&gt;Multiple Boot Volumes were found&lt;/h4&gt;&lt;p&gt;These volume paths were found.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please ensure that only one device of a type is ready for flashing. Press &lt;b&gt;Refresh&lt;/b&gt; when ready.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1133" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1143" />
       <source>Flashing Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1135" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1145" />
       <source>&lt;p&gt;Flashing the selected firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1142" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1152" />
       <source>Flashing {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1144" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1154" />
       <source>&lt;p&gt;Flashing the {0} firmware to the device. Please wait until the device resets automatically.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UF2FlashDialog.py" line="1249" />
+      <location filename="../MicroPython/UF2FlashDialog.py" line="1259" />
       <source>No UF2 device 'boot' volumes found.</source>
       <translation type="unfinished" />
     </message>
@@ -90480,24 +90495,24 @@
       <translation>图形</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="405" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="392" />
-      <location filename="../Graphics/UMLGraphicsView.py" line="375" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="409" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="396" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="379" />
       <source>Save Diagram</source>
       <translation>保存图表</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="377" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="381" />
       <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
       <translation>便携式网络图形 (*.png);;可缩放的向量图形 (*.svg)</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="393" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="397" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Graphics/UMLGraphicsView.py" line="406" />
+      <location filename="../Graphics/UMLGraphicsView.py" line="410" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 无法保存。&lt;/p&gt;</translation>
     </message>
@@ -90675,44 +90690,44 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="95" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="97" />
       <source>{0} (*)</source>
       <comment>list entry is modified</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="179" />
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="158" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="181" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="160" />
       <source>Delete Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="159" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="161" />
       <source>The selected entries contain some with modified data. Shall they really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="180" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="182" />
       <source>The list contains some devices with modified data. Shall they really be deleted?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="198" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="200" />
       <source>Restore Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="199" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="201" />
       <source>Restoring the list of unknown devices will overwrite all changes made. Do you really want to restore the list?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="263" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="265" />
       <source>Unsaved Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/UnknownDevicesDialog.py" line="264" />
+      <location filename="../MicroPython/UnknownDevicesDialog.py" line="266" />
       <source>The list of devices contains some with modified data.</source>
       <translation type="unfinished" />
     </message>
@@ -91225,7 +91240,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7883" />
+      <location filename="../UI/UserInterface.py" line="7890" />
       <location filename="../UI/UserInterface.py" line="1955" />
       <location filename="../UI/UserInterface.py" line="1948" />
       <source>Load session</source>
@@ -92316,7 +92331,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6626" />
+      <location filename="../UI/UserInterface.py" line="6630" />
       <location filename="../UI/UserInterface.py" line="3172" />
       <source>Snapshot</source>
       <translation>快照</translation>
@@ -92553,8 +92568,8 @@
       <translation>&lt;b&gt;键盘快捷键&lt;/b&gt;&lt;p&gt;将程序的键盘快捷键设置成你喜欢的按键。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7591" />
-      <location filename="../UI/UserInterface.py" line="7572" />
+      <location filename="../UI/UserInterface.py" line="7598" />
+      <location filename="../UI/UserInterface.py" line="7579" />
       <location filename="../UI/UserInterface.py" line="3402" />
       <source>Export Keyboard Shortcuts</source>
       <translation>导出键盘快捷键</translation>
@@ -92575,7 +92590,7 @@
       <translation>&lt;b&gt;导出键盘快捷键&lt;/b&gt;&lt;p&gt;导出程序的键盘快捷键。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7610" />
+      <location filename="../UI/UserInterface.py" line="7617" />
       <location filename="../UI/UserInterface.py" line="3421" />
       <source>Import Keyboard Shortcuts</source>
       <translation>导入键盘快捷键</translation>
@@ -92984,7 +92999,7 @@
       <translation>设置</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6354" />
+      <location filename="../UI/UserInterface.py" line="6358" />
       <location filename="../UI/UserInterface.py" line="4194" />
       <location filename="../UI/UserInterface.py" line="4179" />
       <source>Help</source>
@@ -93156,315 +93171,315 @@
       <translation>全部隐藏(&amp;H)</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6491" />
-      <location filename="../UI/UserInterface.py" line="6480" />
-      <location filename="../UI/UserInterface.py" line="6432" />
-      <location filename="../UI/UserInterface.py" line="6422" />
-      <location filename="../UI/UserInterface.py" line="6245" />
-      <location filename="../UI/UserInterface.py" line="6235" />
-      <location filename="../UI/UserInterface.py" line="6177" />
-      <location filename="../UI/UserInterface.py" line="6167" />
+      <location filename="../UI/UserInterface.py" line="6495" />
+      <location filename="../UI/UserInterface.py" line="6484" />
+      <location filename="../UI/UserInterface.py" line="6436" />
+      <location filename="../UI/UserInterface.py" line="6426" />
+      <location filename="../UI/UserInterface.py" line="6249" />
+      <location filename="../UI/UserInterface.py" line="6239" />
+      <location filename="../UI/UserInterface.py" line="6181" />
+      <location filename="../UI/UserInterface.py" line="6171" />
       <source>Problem</source>
       <translation>问题</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6492" />
-      <location filename="../UI/UserInterface.py" line="6481" />
-      <location filename="../UI/UserInterface.py" line="6433" />
-      <location filename="../UI/UserInterface.py" line="6423" />
-      <location filename="../UI/UserInterface.py" line="6246" />
-      <location filename="../UI/UserInterface.py" line="6236" />
-      <location filename="../UI/UserInterface.py" line="6178" />
-      <location filename="../UI/UserInterface.py" line="6168" />
+      <location filename="../UI/UserInterface.py" line="6496" />
+      <location filename="../UI/UserInterface.py" line="6485" />
+      <location filename="../UI/UserInterface.py" line="6437" />
+      <location filename="../UI/UserInterface.py" line="6427" />
+      <location filename="../UI/UserInterface.py" line="6250" />
+      <location filename="../UI/UserInterface.py" line="6240" />
+      <location filename="../UI/UserInterface.py" line="6182" />
+      <location filename="../UI/UserInterface.py" line="6172" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
       <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 不存在或者长度为零。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6735" />
-      <location filename="../UI/UserInterface.py" line="6646" />
-      <location filename="../UI/UserInterface.py" line="6527" />
-      <location filename="../UI/UserInterface.py" line="6504" />
-      <location filename="../UI/UserInterface.py" line="6445" />
-      <location filename="../UI/UserInterface.py" line="6392" />
-      <location filename="../UI/UserInterface.py" line="6370" />
-      <location filename="../UI/UserInterface.py" line="6321" />
-      <location filename="../UI/UserInterface.py" line="6312" />
-      <location filename="../UI/UserInterface.py" line="6277" />
-      <location filename="../UI/UserInterface.py" line="6268" />
-      <location filename="../UI/UserInterface.py" line="6209" />
-      <location filename="../UI/UserInterface.py" line="6200" />
+      <location filename="../UI/UserInterface.py" line="6739" />
+      <location filename="../UI/UserInterface.py" line="6650" />
+      <location filename="../UI/UserInterface.py" line="6531" />
+      <location filename="../UI/UserInterface.py" line="6508" />
+      <location filename="../UI/UserInterface.py" line="6449" />
+      <location filename="../UI/UserInterface.py" line="6396" />
+      <location filename="../UI/UserInterface.py" line="6374" />
+      <location filename="../UI/UserInterface.py" line="6325" />
+      <location filename="../UI/UserInterface.py" line="6316" />
+      <location filename="../UI/UserInterface.py" line="6281" />
+      <location filename="../UI/UserInterface.py" line="6272" />
+      <location filename="../UI/UserInterface.py" line="6213" />
+      <location filename="../UI/UserInterface.py" line="6204" />
       <source>Process Generation Error</source>
       <translation>进程生成错误</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6201" />
+      <location filename="../UI/UserInterface.py" line="6205" />
       <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法启动 Qt 设计师。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6210" />
+      <location filename="../UI/UserInterface.py" line="6214" />
       <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6269" />
+      <location filename="../UI/UserInterface.py" line="6273" />
       <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法启动 Qt 语言家。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6278" />
+      <location filename="../UI/UserInterface.py" line="6282" />
       <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6313" />
+      <location filename="../UI/UserInterface.py" line="6317" />
       <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法启动 Qt 助手。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6322" />
+      <location filename="../UI/UserInterface.py" line="6326" />
       <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6355" />
+      <location filename="../UI/UserInterface.py" line="6359" />
       <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
       <translation>目前没有选择自定义浏览器。请使用首选项对话框指定一个。</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6371" />
+      <location filename="../UI/UserInterface.py" line="6375" />
       <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法启动自定义的查看器。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6393" />
+      <location filename="../UI/UserInterface.py" line="6397" />
       <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法开启帮助浏览器。&lt;br&gt;确保其有效如 &lt;b&gt;hh&lt;/b&gt;。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6446" />
+      <location filename="../UI/UserInterface.py" line="6450" />
       <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法启动 UI 预览器。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6505" />
+      <location filename="../UI/UserInterface.py" line="6509" />
       <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法启动翻译预览器。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6528" />
+      <location filename="../UI/UserInterface.py" line="6532" />
       <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法启动 SQL 浏览器。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6627" />
+      <location filename="../UI/UserInterface.py" line="6631" />
       <source>&lt;p&gt;The snapshot utility is not available for Wayland desktop sessions.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6647" />
+      <location filename="../UI/UserInterface.py" line="6651" />
       <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;无法启动快照工具。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6680" />
-      <location filename="../UI/UserInterface.py" line="6670" />
+      <location filename="../UI/UserInterface.py" line="6684" />
+      <location filename="../UI/UserInterface.py" line="6674" />
       <source>External Tools</source>
       <translation>外部工具</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6671" />
+      <location filename="../UI/UserInterface.py" line="6675" />
       <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6681" />
+      <location filename="../UI/UserInterface.py" line="6685" />
       <source>No toolgroup entry '{0}' found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6718" />
+      <location filename="../UI/UserInterface.py" line="6722" />
       <source>Starting process '{0} {1}'.
 </source>
       <translation>正在启动进程“{0} {1}”。
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6736" />
+      <location filename="../UI/UserInterface.py" line="6740" />
       <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" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6815" />
+      <location filename="../UI/UserInterface.py" line="6819" />
       <source>Process '{0}' has exited.
 </source>
       <translation>进程“{0}”已退出。
 </translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7102" />
-      <location filename="../UI/UserInterface.py" line="7040" />
-      <location filename="../UI/UserInterface.py" line="6996" />
-      <location filename="../UI/UserInterface.py" line="6922" />
-      <location filename="../UI/UserInterface.py" line="6858" />
+      <location filename="../UI/UserInterface.py" line="7106" />
+      <location filename="../UI/UserInterface.py" line="7044" />
+      <location filename="../UI/UserInterface.py" line="7000" />
+      <location filename="../UI/UserInterface.py" line="6926" />
+      <location filename="../UI/UserInterface.py" line="6862" />
       <source>Documentation Missing</source>
       <translation>文档缺失</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7103" />
-      <location filename="../UI/UserInterface.py" line="7041" />
-      <location filename="../UI/UserInterface.py" line="6997" />
-      <location filename="../UI/UserInterface.py" line="6923" />
-      <location filename="../UI/UserInterface.py" line="6859" />
+      <location filename="../UI/UserInterface.py" line="7107" />
+      <location filename="../UI/UserInterface.py" line="7045" />
+      <location filename="../UI/UserInterface.py" line="7001" />
+      <location filename="../UI/UserInterface.py" line="6927" />
+      <location filename="../UI/UserInterface.py" line="6863" />
       <source>&lt;p&gt;The documentation starting point "&lt;b&gt;{0}&lt;/b&gt;" could not be found.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7084" />
-      <location filename="../UI/UserInterface.py" line="6966" />
+      <location filename="../UI/UserInterface.py" line="7088" />
+      <location filename="../UI/UserInterface.py" line="6970" />
       <source>Documentation</source>
       <translation>文档</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="6967" />
+      <location filename="../UI/UserInterface.py" line="6971" />
       <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7085" />
+      <location filename="../UI/UserInterface.py" line="7089" />
       <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7264" />
-      <location filename="../UI/UserInterface.py" line="7200" />
+      <location filename="../UI/UserInterface.py" line="7268" />
+      <location filename="../UI/UserInterface.py" line="7204" />
       <source>Start Web Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7201" />
+      <location filename="../UI/UserInterface.py" line="7205" />
       <source>The eric web browser could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7265" />
+      <location filename="../UI/UserInterface.py" line="7269" />
       <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7311" />
+      <location filename="../UI/UserInterface.py" line="7315" />
       <source>Open Browser</source>
       <translation>打开浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7311" />
+      <location filename="../UI/UserInterface.py" line="7315" />
       <source>Could not start a web browser</source>
       <translation>无法启动网络浏览器</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7612" />
-      <location filename="../UI/UserInterface.py" line="7574" />
+      <location filename="../UI/UserInterface.py" line="7619" />
+      <location filename="../UI/UserInterface.py" line="7581" />
       <source>Keyboard Shortcuts File (*.ekj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7592" />
+      <location filename="../UI/UserInterface.py" line="7599" />
       <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7796" />
+      <location filename="../UI/UserInterface.py" line="7803" />
       <source>Load crash session...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7799" />
+      <location filename="../UI/UserInterface.py" line="7806" />
       <source>Clean crash sessions...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7836" />
+      <location filename="../UI/UserInterface.py" line="7843" />
       <source>Read Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7837" />
+      <location filename="../UI/UserInterface.py" line="7844" />
       <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;会话文件 &lt;b&gt;{0}&lt;/b&gt; 无法读取。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7860" />
+      <location filename="../UI/UserInterface.py" line="7867" />
       <source>Save Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7885" />
-      <location filename="../UI/UserInterface.py" line="7862" />
+      <location filename="../UI/UserInterface.py" line="7892" />
+      <location filename="../UI/UserInterface.py" line="7869" />
       <source>eric Session Files (*.esj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7954" />
+      <location filename="../UI/UserInterface.py" line="7961" />
       <source>Found Crash Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="7955" />
+      <location filename="../UI/UserInterface.py" line="7962" />
       <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8028" />
+      <location filename="../UI/UserInterface.py" line="8035" />
       <source>Clean stale crash sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8029" />
+      <location filename="../UI/UserInterface.py" line="8036" />
       <source>Do you really want to delete these stale crash session files?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8405" />
+      <location filename="../UI/UserInterface.py" line="8412" />
       <source>Drop Error</source>
       <translation>降落误差</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8406" />
+      <location filename="../UI/UserInterface.py" line="8413" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; 不是一个文件。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8594" />
+      <location filename="../UI/UserInterface.py" line="8605" />
       <source>Upgrade available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8595" />
+      <location filename="../UI/UserInterface.py" line="8606" />
       <source>&lt;p&gt;A newer version of the &lt;b&gt;eric-ide&lt;/b&gt; package is available at &lt;a href="{0}/eric-ide/"&gt;PyPI&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Installed: {1}&lt;br/&gt;Available: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Shall &lt;b&gt;eric-ide&lt;/b&gt; be upgraded?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8640" />
+      <location filename="../UI/UserInterface.py" line="8651" />
       <source>First time usage</source>
       <translation>第一次使用</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8641" />
+      <location filename="../UI/UserInterface.py" line="8652" />
       <source>eric has not been configured yet. The configuration dialog will be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8663" />
+      <location filename="../UI/UserInterface.py" line="8674" />
       <source>Select Workspace Directory</source>
       <translation>选择工作区目录</translation>
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8831" />
+      <location filename="../UI/UserInterface.py" line="8842" />
       <source>Unsaved Data Detected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../UI/UserInterface.py" line="8832" />
+      <location filename="../UI/UserInterface.py" line="8843" />
       <source>Some editors contain unsaved data. Shall these be saved?</source>
       <translation type="unfinished" />
     </message>
@@ -94175,8 +94190,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/PluginVcsGit.py" line="134" />
-      <location filename="../Plugins/PluginVcsGit.py" line="98" />
+      <location filename="../Plugins/PluginVcsGit.py" line="133" />
+      <location filename="../Plugins/PluginVcsGit.py" line="97" />
       <source>Git</source>
       <translation type="unfinished" />
     </message>
@@ -94390,156 +94405,156 @@
   <context>
     <name>VcsProjectHelper</name>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="76" />
+      <location filename="../VCS/ProjectHelper.py" line="77" />
       <source>New from repository</source>
       <translation>从仓库新建</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="78" />
+      <location filename="../VCS/ProjectHelper.py" line="79" />
       <source>&amp;New from repository...</source>
       <translation>从仓库新建(&amp;N)…</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="85" />
+      <location filename="../VCS/ProjectHelper.py" line="86" />
       <source>Create a new project from the VCS repository</source>
       <translation>从版本控制系统仓库创建新项目</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="90" />
+      <location filename="../VCS/ProjectHelper.py" line="91" />
       <source>&lt;b&gt;New from repository&lt;/b&gt;&lt;p&gt;This creates a new local project from the VCS repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;从仓库新建&lt;/b&gt;&lt;p&gt;从版本控制系统仓库中创建新的本地项目。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="101" />
+      <location filename="../VCS/ProjectHelper.py" line="102" />
       <source>Export from repository</source>
       <translation>从仓库导出</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="103" />
+      <location filename="../VCS/ProjectHelper.py" line="104" />
       <source>&amp;Export from repository...</source>
       <translation>从仓库导出(&amp;E)…</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="112" />
+      <location filename="../VCS/ProjectHelper.py" line="113" />
       <source>Export a project from the repository</source>
       <translation>从仓库中导出一个项目</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="117" />
+      <location filename="../VCS/ProjectHelper.py" line="118" />
       <source>&lt;b&gt;Export from repository&lt;/b&gt;&lt;p&gt;This exports a project from the repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;从仓库导出&lt;/b&gt;&lt;p&gt;从仓库导出一个项目。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="127" />
+      <location filename="../VCS/ProjectHelper.py" line="128" />
       <source>Add to repository</source>
       <translation>添加到仓库</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="129" />
+      <location filename="../VCS/ProjectHelper.py" line="130" />
       <source>&amp;Add to repository...</source>
       <translation>添加到仓库(&amp;A)…</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="136" />
+      <location filename="../VCS/ProjectHelper.py" line="137" />
       <source>Add the local project to the VCS repository</source>
       <translation>将本地项目添加到版本控制系统仓库中</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="141" />
+      <location filename="../VCS/ProjectHelper.py" line="142" />
       <source>&lt;b&gt;Add to repository&lt;/b&gt;&lt;p&gt;This adds (imports) the local project to the VCS repository.&lt;/p&gt;</source>
       <translation>&lt;b&gt;添加到储存库&lt;/b&gt;&lt;p&gt;将本地项目添加(导入)到版本控制系统储存库中。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="192" />
-      <location filename="../VCS/ProjectHelper.py" line="190" />
+      <location filename="../VCS/ProjectHelper.py" line="193" />
+      <location filename="../VCS/ProjectHelper.py" line="191" />
       <source>VCS</source>
       <translation>版本控制系统</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="265" />
-      <location filename="../VCS/ProjectHelper.py" line="236" />
+      <location filename="../VCS/ProjectHelper.py" line="266" />
+      <location filename="../VCS/ProjectHelper.py" line="237" />
       <source>New Project</source>
       <translation>新建项目</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="462" />
-      <location filename="../VCS/ProjectHelper.py" line="237" />
+      <location filename="../VCS/ProjectHelper.py" line="465" />
+      <location filename="../VCS/ProjectHelper.py" line="238" />
       <source>Select version control system for the project</source>
       <translation>为项目选择版本控制系统</translation>
     </message>
     <message>
+      <location filename="../VCS/ProjectHelper.py" line="497" />
+      <location filename="../VCS/ProjectHelper.py" line="267" />
+      <source>Would you like to edit the VCS command options?</source>
+      <translation>是否编辑版本控制系统命令选项?</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="287" />
+      <source>Create project directory</source>
+      <translation>创建项目文件夹</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="290" />
+      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="396" />
+      <location filename="../VCS/ProjectHelper.py" line="380" />
+      <location filename="../VCS/ProjectHelper.py" line="336" />
+      <location filename="../VCS/ProjectHelper.py" line="316" />
+      <source>New project from repository</source>
+      <translation>从储存库新建项目</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="319" />
+      <source>Select a project file to open.</source>
+      <translation>选择要打开的项目文件</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="339" />
+      <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="384" />
+      <source>Shall the project file be added to the repository?</source>
+      <translation>是否将项目文件添加到储存库?</translation>
+    </message>
+    <message>
+      <location filename="../VCS/ProjectHelper.py" line="399" />
+      <source>The project could not be retrieved from the repository.</source>
+      <translation>无法从储存库中检索项目。</translation>
+    </message>
+    <message>
       <location filename="../VCS/ProjectHelper.py" line="494" />
-      <location filename="../VCS/ProjectHelper.py" line="266" />
-      <source>Would you like to edit the VCS command options?</source>
-      <translation>是否编辑版本控制系统命令选项?</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="286" />
-      <source>Create project directory</source>
-      <translation>创建项目文件夹</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="289" />
-      <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="393" />
-      <location filename="../VCS/ProjectHelper.py" line="377" />
-      <location filename="../VCS/ProjectHelper.py" line="335" />
-      <location filename="../VCS/ProjectHelper.py" line="315" />
-      <source>New project from repository</source>
-      <translation>从储存库新建项目</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="318" />
-      <source>Select a project file to open.</source>
-      <translation>选择要打开的项目文件</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="338" />
-      <source>The project retrieved from the repository does not contain an eric project file (*.epj). Create it?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="381" />
-      <source>Shall the project file be added to the repository?</source>
-      <translation>是否将项目文件添加到储存库?</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="396" />
-      <source>The project could not be retrieved from the repository.</source>
-      <translation>无法从储存库中检索项目。</translation>
-    </message>
-    <message>
-      <location filename="../VCS/ProjectHelper.py" line="491" />
-      <location filename="../VCS/ProjectHelper.py" line="461" />
+      <location filename="../VCS/ProjectHelper.py" line="464" />
       <source>Import Project</source>
       <translation>导入项目</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="535" />
+      <location filename="../VCS/ProjectHelper.py" line="540" />
       <source>Update</source>
       <translation>更新</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="669" />
-      <location filename="../VCS/ProjectHelper.py" line="536" />
+      <location filename="../VCS/ProjectHelper.py" line="674" />
+      <location filename="../VCS/ProjectHelper.py" line="541" />
       <source>The project should be reread. Do this now?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="572" />
+      <location filename="../VCS/ProjectHelper.py" line="577" />
       <source>Remove project from repository</source>
       <translation>从仓库中移除项目</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="575" />
+      <location filename="../VCS/ProjectHelper.py" line="580" />
       <source>Dou you really want to remove this project from the repository (and disk)?</source>
       <translation type="unfinished">确定要从仓库(磁盘)中移除该项目?</translation>
     </message>
     <message>
-      <location filename="../VCS/ProjectHelper.py" line="668" />
+      <location filename="../VCS/ProjectHelper.py" line="673" />
       <source>Switch</source>
       <translation type="unfinished">转换</translation>
     </message>
@@ -99530,54 +99545,54 @@
   <context>
     <name>VirtualenvManager</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="318" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="322" />
       <source>Add Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="319" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="323" />
       <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="356" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="362" />
       <source>Change Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="389" />
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="357" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="395" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="363" />
       <source>A virtual environment named &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting!</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="388" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="394" />
       <source>Rename Virtual Environment</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="480" />
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="413" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="486" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="419" />
       <source>{0} - {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="420" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="426" />
       <source>Delete Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="421" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="427" />
       <source>Do you really want to delete these virtual environments?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="487" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="493" />
       <source>Remove Virtual Environments</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManager.py" line="488" />
+      <location filename="../VirtualEnv/VirtualenvManager.py" line="494" />
       <source>Do you really want to remove these virtual environments?</source>
       <translation type="unfinished" />
     </message>
@@ -99585,7 +99600,7 @@
   <context>
     <name>VirtualenvManagerDialog</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" />
+      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="449" />
       <source>Manage Virtual Environments</source>
       <translation type="unfinished" />
     </message>
@@ -99708,7 +99723,7 @@
   <context>
     <name>VirtualenvManagerWindow</name>
     <message>
-      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" />
+      <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="489" />
       <source>Manage Virtual Environments</source>
       <translation type="unfinished" />
     </message>
@@ -104809,22 +104824,22 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="125" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="117" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="127" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="119" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="49" />
       <source>Connect WiFi</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="173" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="167" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="175" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="169" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="50" />
       <source>Check Internet Connection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="147" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="141" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="149" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="143" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="51" />
       <source>Disconnect WiFi</source>
       <translation type="unfinished" />
@@ -104835,40 +104850,40 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="244" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="235" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="225" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="215" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="249" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="240" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="230" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="220" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="55" />
       <source>Write WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="282" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="272" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="261" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="287" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="277" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="266" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="56" />
       <source>Remove WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="495" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="486" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="500" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="491" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="58" />
       <source>Enable WebREPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="529" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="520" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="512" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="534" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="525" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="517" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="59" />
       <source>Disable WebREPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="313" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="329" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="318" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="61" />
       <source>Start WiFi Access Point</source>
       <translation type="unfinished" />
@@ -104879,14 +104894,14 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="378" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="383" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="66" />
       <source>Show Connected Clients</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="345" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="359" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="350" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="68" />
       <source>Stop WiFi Access Point</source>
       <translation type="unfinished" />
@@ -104902,186 +104917,186 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="464" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="448" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="428" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="419" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="469" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="433" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="424" />
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="79" />
       <source>Set Network Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="118" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="120" />
       <source>&lt;p&gt;The device was connected to &lt;b&gt;{0}&lt;/b&gt; successfully.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="126" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="128" />
       <source>&lt;p&gt;The device could not connect to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="533" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="499" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="286" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="248" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="150" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="129" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="538" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="504" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="291" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="253" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="178" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="152" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="131" />
       <source>unknown</source>
       <translation type="unfinished">未知</translation>
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="142" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="144" />
       <source>&lt;p&gt;The device was disconnected from the WiFi network.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="148" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="150" />
       <source>&lt;p&gt;The device could not be disconnected.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="161" />
-      <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="163" />
+      <source>&lt;p&gt;The internet connection is &lt;b&gt;available&lt;/b&gt;.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="165" />
       <source>&lt;p&gt;The internet connection is &lt;b&gt;not available&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="174" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="176" />
       <source>&lt;p&gt;The internet is not available.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="236" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="216" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="241" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="221" />
       <source>&lt;p&gt;The WiFi credentials were saved on the device. The device will connect to the WiFi network at boot time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="226" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="231" />
       <source>&lt;p&gt;The WiFi credentials and a connect script were saved on the device. Use the script by simply importing it.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="245" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="250" />
       <source>&lt;p&gt;The WiFi credentials could not be saved on the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="262" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="267" />
       <source>Shall the saved WiFi credentials really be removed from the connected device?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="273" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="278" />
       <source>&lt;p&gt;The WiFi credentials were removed from the device. The device will not connect to the WiFi network at boot time anymore.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="283" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="288" />
       <source>&lt;p&gt;The WiFi credentials could not be removed from the device.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="314" />
-      <source>The WiFi Access Point interface was started successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="319" />
+      <source>The WiFi Access Point interface was started successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="324" />
       <source>&lt;p&gt;The WiFi Access Point could not be started.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="405" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="356" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="326" />
+      <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351" />
+      <source>The WiFi Access Point interface was stopped successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="354" />
+      <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="384" />
+      <source>No clients are connected to the access point.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="408" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="399" />
+      <source>Deactivate WiFi Interface</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="400" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="351" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="321" />
-      <source>&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="346" />
-      <source>The WiFi Access Point interface was stopped successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="349" />
-      <source>&lt;p&gt;The WiFi Access Point could not be stopped.&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="379" />
-      <source>No clients are connected to the access point.</source>
+      <source>The WiFi interface was deactivated successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="403" />
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="394" />
-      <source>Deactivate WiFi Interface</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="395" />
-      <source>The WiFi interface was deactivated successfully.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="398" />
       <source>&lt;p&gt;The WiFi interface could not be deactivated.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="420" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="425" />
       <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;adafruit_ntp&lt;/b&gt; is not installed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="429" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="434" />
       <source>&lt;p&gt;The device does not support network time synchronization. The module &lt;b&gt;ntptime&lt;/b&gt; is not available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="449" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="454" />
       <source>The device time was synchronized successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="453" />
-      <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/WifiDialogs/WifiController.py" line="458" />
+      <source>&lt;p&gt;The device time could not be synchronized.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="463" />
       <source>&lt;p&gt;The device time could not be synchronized. Is the device connected to a WiFi network?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="487" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="492" />
       <source>&lt;p&gt;The WebREPL server of the device will be activated after a reboot.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="496" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="501" />
       <source>&lt;p&gt;The WebREPL server of the device could not be enabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="513" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="518" />
       <source>Shall the WebREPL server of the device really be disabled?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="521" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="526" />
       <source>&lt;p&gt;The WebREPL server of the device will not be enabled at boot time anymore.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="530" />
+      <location filename="../MicroPython/WifiDialogs/WifiController.py" line="535" />
       <source>&lt;p&gt;The WebREPL server of the device could not be disabled.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -105642,38 +105657,38 @@
   <context>
     <name>mercurial</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1349" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1383" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1913" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1357" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1955" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1391" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1919" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1363" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1961" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1397" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1926" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1370" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1968" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1404" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1376" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1410" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1395" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1429" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;
 &lt;p&gt;&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Mercurial V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
@@ -105684,35 +105699,35 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1887" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1929" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Head #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1894" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1936" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1901" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1943" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
 </source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1906" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1948" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Changeset&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1933" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1975" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1939" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/hg.py" line="1981" />
       <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;
@@ -106373,17 +106388,17 @@
   <context>
     <name>subversion</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1736" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1769" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1888" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1919" />
       <source>unknown</source>
       <translation>未知</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1892" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1923" />
       <source>&lt;h3&gt;Repository information&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;PySvn V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subversion API V.&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;URL&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Current revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committed date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{6}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Comitted time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{7}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Last author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>

eric ide

mercurial