MicroPython

Sun, 28 Mar 2021 18:51:58 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 28 Mar 2021 18:51:58 +0200
changeset 8181
72f55caf6258
parent 8180
845d3c572a94
child 8182
58a42ec84587

MicroPython
- added option to select the baud rate for flashing ESP32 and ESP8266 boards

docs/changelog file | annotate | diff | comparison | revisions
eric6/Documentation/Help/source.qch file | annotate | diff | comparison | revisions
eric6/Documentation/Source/eric6.MicroPython.EspFirmwareSelectionDialog.html file | annotate | diff | comparison | revisions
eric6/MicroPython/EspDevices.py file | annotate | diff | comparison | revisions
eric6/MicroPython/EspFirmwareSelectionDialog.py file | annotate | diff | comparison | revisions
eric6/MicroPython/EspFirmwareSelectionDialog.ui file | annotate | diff | comparison | revisions
eric6/i18n/eric6_cs.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_de.qm file | annotate | diff | comparison | revisions
eric6/i18n/eric6_de.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_empty.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_en.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_es.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_fr.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_it.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_pt.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_ru.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_tr.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_zh_CN.ts file | annotate | diff | comparison | revisions
--- a/docs/changelog	Sun Mar 28 18:51:40 2021 +0200
+++ b/docs/changelog	Sun Mar 28 18:51:58 2021 +0200
@@ -1,5 +1,10 @@
 Change Log
 ----------
+Version 21.5:
+- bug fixes
+- MicroPython
+  -- added option to select the baud rate for flashing ESP32 and ESP8266 boards
+
 Version 21.4:
 - bug fixes
 - Code Style Checker
Binary file eric6/Documentation/Help/source.qch has changed
--- a/eric6/Documentation/Source/eric6.MicroPython.EspFirmwareSelectionDialog.html	Sun Mar 28 18:51:40 2021 +0200
+++ b/eric6/Documentation/Source/eric6.MicroPython.EspFirmwareSelectionDialog.html	Sun Mar 28 18:51:58 2021 +0200
@@ -133,13 +133,14 @@
 <dt>Return:</dt>
 <dd>
 tuple containing the selected chip type, the path of the
-            firmware file, the flash mode and the flash address
+            firmware file, the baud rate, the flash mode and the flash
+            address
 </dd>
 </dl>
 <dl>
 <dt>Return Type:</dt>
 <dd>
-tuple of (str, str, str, str)
+tuple of (str, str, str, str, str)
 </dd>
 </dl>
 <a NAME="EspFirmwareSelectionDialog.on_espComboBox_currentTextChanged" ID="EspFirmwareSelectionDialog.on_espComboBox_currentTextChanged"></a>
--- a/eric6/MicroPython/EspDevices.py	Sun Mar 28 18:51:40 2021 +0200
+++ b/eric6/MicroPython/EspDevices.py	Sun Mar 28 18:51:58 2021 +0200
@@ -201,7 +201,7 @@
         from .EspFirmwareSelectionDialog import EspFirmwareSelectionDialog
         dlg = EspFirmwareSelectionDialog()
         if dlg.exec() == QDialog.DialogCode.Accepted:
-            chip, firmware, flashMode, _ = dlg.getData()
+            chip, firmware, baudRate, flashMode, _ = dlg.getData()
             if chip == "esp8266":
                 flashAddress = "0x0000"
             elif chip == "esp32":
@@ -216,6 +216,10 @@
                 "--port", self.microPython.getCurrentPort(),
                 "write_flash",
             ]
+            if baudRate != "115200":
+                flashArgs.extend([
+                    "--baud", baudRate
+                ])
             if flashMode:
                 flashArgs.extend([
                     "--flash_mode", flashMode
@@ -239,7 +243,7 @@
         from .EspFirmwareSelectionDialog import EspFirmwareSelectionDialog
         dlg = EspFirmwareSelectionDialog(addon=True)
         if dlg.exec() == QDialog.DialogCode.Accepted:
-            chip, firmware, flashMode, flashAddress = dlg.getData()
+            chip, firmware, baudRate, flashMode, flashAddress = dlg.getData()
             flashArgs = [
                 "-u",
                 "-m", "esptool",
@@ -247,6 +251,10 @@
                 "--port", self.microPython.getCurrentPort(),
                 "write_flash",
             ]
+            if baudRate != "115200":
+                flashArgs.extend([
+                    "--baud", baudRate
+                ])
             if flashMode:
                 flashArgs.extend([
                     "--flash_mode", flashMode
--- a/eric6/MicroPython/EspFirmwareSelectionDialog.py	Sun Mar 28 18:51:40 2021 +0200
+++ b/eric6/MicroPython/EspFirmwareSelectionDialog.py	Sun Mar 28 18:51:58 2021 +0200
@@ -52,6 +52,10 @@
         
         self.espComboBox.addItems(["", "ESP32", "ESP8266"])
         
+        self.baudRateComboBox.addItems([
+            "74.880", "115.200", "230.400", "460.800", "921.600", "1.500.000"])
+        self.baudRateComboBox.setCurrentIndex(1)
+        
         for text, mode in self.FlashModes:
             self.modeComboBox.addItem(text, mode)
         
@@ -104,8 +108,9 @@
         Public method to get the entered data.
         
         @return tuple containing the selected chip type, the path of the
-            firmware file, the flash mode and the flash address
-        @rtype tuple of (str, str, str, str)
+            firmware file, the baud rate, the flash mode and the flash
+            address
+        @rtype tuple of (str, str, str, str, str)
         """
         if self.__addon:
             address = self.addressEdit.text()
@@ -115,6 +120,7 @@
         return (
             self.espComboBox.currentText().lower(),
             self.firmwarePicker.text(),
+            self.baudRateComboBox.currentText.replace(".", ""),
             self.modeComboBox.currentData(),
             address,
         )
--- a/eric6/MicroPython/EspFirmwareSelectionDialog.ui	Sun Mar 28 18:51:40 2021 +0200
+++ b/eric6/MicroPython/EspFirmwareSelectionDialog.ui	Sun Mar 28 18:51:58 2021 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>500</width>
-    <height>140</height>
+    <height>198</height>
    </rect>
   </property>
   <property name="windowTitle">
@@ -67,6 +67,33 @@
       </widget>
      </item>
      <item row="2" column="0">
+      <widget class="QLabel" name="label_5">
+       <property name="text">
+        <string>Baud Rate:</string>
+       </property>
+      </widget>
+     </item>
+     <item row="2" column="1">
+      <widget class="QComboBox" name="baudRateComboBox">
+       <property name="toolTip">
+        <string>Select the baud rate to be used foor flashing (default: 115.200 bps)</string>
+       </property>
+      </widget>
+     </item>
+     <item row="2" column="2">
+      <spacer name="horizontalSpacer_2">
+       <property name="orientation">
+        <enum>Qt::Horizontal</enum>
+       </property>
+       <property name="sizeHint" stdset="0">
+        <size>
+         <width>298</width>
+         <height>20</height>
+        </size>
+       </property>
+      </spacer>
+     </item>
+     <item row="3" column="0">
       <widget class="QLabel" name="label_3">
        <property name="toolTip">
         <string/>
@@ -76,28 +103,28 @@
        </property>
       </widget>
      </item>
-     <item row="2" column="1">
+     <item row="3" column="1">
       <widget class="QComboBox" name="modeComboBox">
        <property name="toolTip">
         <string>Select the flash mode</string>
        </property>
       </widget>
      </item>
-     <item row="2" column="2">
+     <item row="3" column="2">
       <widget class="QLabel" name="label_4">
        <property name="text">
         <string>Leave empty to use the default mode.</string>
        </property>
       </widget>
      </item>
-     <item row="3" column="0">
+     <item row="4" column="0">
       <widget class="QLabel" name="addressLabel">
        <property name="text">
         <string>Address:</string>
        </property>
       </widget>
      </item>
-     <item row="3" column="1" colspan="2">
+     <item row="4" column="1" colspan="2">
       <widget class="E5ClearableLineEdit" name="addressEdit">
        <property name="toolTip">
         <string>Enter the flash addres in the hexadecimal form</string>
@@ -137,6 +164,7 @@
  <tabstops>
   <tabstop>espComboBox</tabstop>
   <tabstop>firmwarePicker</tabstop>
+  <tabstop>baudRateComboBox</tabstop>
   <tabstop>modeComboBox</tabstop>
   <tabstop>addressEdit</tabstop>
  </tabstops>
--- a/eric6/i18n/eric6_cs.ts	Sun Mar 28 18:51:40 2021 +0200
+++ b/eric6/i18n/eric6_cs.ts	Sun Mar 28 18:51:58 2021 +0200
@@ -1617,37 +1617,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="135"/>
+        <location filename="../Utilities/BackgroundService.py" line="138"/>
         <source>{0} not configured.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="190"/>
+        <location filename="../Utilities/BackgroundService.py" line="193"/>
         <source>Restart background client?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="445"/>
+        <location filename="../Utilities/BackgroundService.py" line="448"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="451"/>
+        <location filename="../Utilities/BackgroundService.py" line="454"/>
         <source>Background client disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="190"/>
+        <location filename="../Utilities/BackgroundService.py" line="193"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="451"/>
+        <location filename="../Utilities/BackgroundService.py" line="454"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="216"/>
+        <location filename="../Utilities/BackgroundService.py" line="219"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3553,7 +3553,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="578"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9966,7 +9966,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="35"/>
+        <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="32"/>
         <source>&lt;b&gt;Error Message Filters&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress error messages from within Qt.&lt;/p&gt;&lt;p&gt;A default list of message filters is added to this user list.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12165,7 +12165,7 @@
         <translation>Použít Pygments lexer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7991"/>
+        <location filename="../QScintilla/Editor.py" line="7992"/>
         <source>Check spelling...</source>
         <translation>Zatrhnout kontrolu...</translation>
     </message>
@@ -12175,12 +12175,12 @@
         <translation>Zatrhnout výběr kontroly...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7994"/>
+        <location filename="../QScintilla/Editor.py" line="7995"/>
         <source>Add to dictionary</source>
         <translation>Přidat do slovníku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7996"/>
+        <location filename="../QScintilla/Editor.py" line="7997"/>
         <source>Ignore All</source>
         <translation>Ignorovat vše</translation>
     </message>
@@ -12315,12 +12315,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8412"/>
+        <location filename="../QScintilla/Editor.py" line="8413"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8412"/>
+        <location filename="../QScintilla/Editor.py" line="8413"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12395,12 +12395,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8501"/>
+        <location filename="../QScintilla/Editor.py" line="8502"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8501"/>
+        <location filename="../QScintilla/Editor.py" line="8502"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12430,12 +12430,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8622"/>
+        <location filename="../QScintilla/Editor.py" line="8623"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8622"/>
+        <location filename="../QScintilla/Editor.py" line="8623"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12480,7 +12480,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8816"/>
+        <location filename="../QScintilla/Editor.py" line="8817"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18381,12 +18381,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="227"/>
+        <location filename="../MicroPython/EspDevices.py" line="231"/>
         <source>Flash MicroPython Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="258"/>
+        <location filename="../MicroPython/EspDevices.py" line="266"/>
         <source>Flash Additional Firmware</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18411,7 +18411,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="319"/>
+        <location filename="../MicroPython/EspDevices.py" line="327"/>
         <source>&apos;esptool write_flash&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18421,47 +18421,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="285"/>
+        <location filename="../MicroPython/EspDevices.py" line="293"/>
         <source>Backup Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="319"/>
+        <location filename="../MicroPython/EspDevices.py" line="327"/>
         <source>Restore Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="337"/>
+        <location filename="../MicroPython/EspDevices.py" line="345"/>
         <source>Show Chip ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="354"/>
+        <location filename="../MicroPython/EspDevices.py" line="362"/>
         <source>Show Flash ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="371"/>
+        <location filename="../MicroPython/EspDevices.py" line="379"/>
         <source>Show MAC Address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="285"/>
+        <location filename="../MicroPython/EspDevices.py" line="293"/>
         <source>&apos;esptool read_flash&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="337"/>
+        <location filename="../MicroPython/EspDevices.py" line="345"/>
         <source>&apos;esptool chip_id&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="354"/>
+        <location filename="../MicroPython/EspDevices.py" line="362"/>
         <source>&apos;esptool flash_id&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="371"/>
+        <location filename="../MicroPython/EspDevices.py" line="379"/>
         <source>&apos;esptool read_mac&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18494,12 +18494,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="96"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="123"/>
         <source>Address:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="103"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="130"/>
         <source>Enter the flash addres in the hexadecimal form</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18509,20 +18509,30 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="75"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="102"/>
         <source>Flash Mode:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="82"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="109"/>
         <source>Select the flash mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="89"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="116"/>
         <source>Leave empty to use the default mode.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="72"/>
+        <source>Baud Rate:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="79"/>
+        <source>Select the baud rate to be used foor flashing (default: 115.200 bps)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ExceptionLogger</name>
@@ -48406,599 +48416,599 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>New</source>
         <translation>Nový</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>&amp;New</source>
         <translation>&amp;Nový</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="567"/>
-        <source>Open an empty editor window</source>
-        <translation>Otevřít prázdné editační okno</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="568"/>
+        <source>Open an empty editor window</source>
+        <translation>Otevřít prázdné editační okno</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="569"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nový&lt;/b&gt;&lt;p&gt;Bude otevřeno prázdné editační okno.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>Open</source>
         <translation>Otevřít</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>&amp;Open...</source>
         <translation>&amp;Otevřít...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="581"/>
-        <source>Open a file</source>
-        <translation>Otevřít soubor</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="582"/>
+        <source>Open a file</source>
+        <translation>Otevřít soubor</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="583"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Otevřít soubor&lt;/b&gt;&lt;p&gt;Budete dotázáni na jméno souboru, který se má otevřít do editačního okna.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>Save</source>
         <translation>Uložit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>&amp;Save</source>
         <translation>&amp;Uložit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
-        <source>Save the current file</source>
-        <translation>Uložit aktuální soubor</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="596"/>
+        <source>Save the current file</source>
+        <translation>Uložit aktuální soubor</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="597"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Uložit soubor&lt;/b&gt;&lt;p&gt;Uložit obsah aktuálního editačního okna.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save as</source>
         <translation>Uložit jako</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save &amp;as...</source>
         <translation>Uložit j&amp;ako...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="609"/>
+        <location filename="../QScintilla/MiniEditor.py" line="610"/>
         <source>Save the current file to a new one</source>
         <translation>Uložit aktuální soubor do nového</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="611"/>
+        <location filename="../QScintilla/MiniEditor.py" line="612"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Uložit soubor jako&lt;/b&gt;&lt;p&gt;Uložit obsah aktuálního editačního okna do nového souboru. Název souboru bude zadán v dialogu výběru souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>Close</source>
         <translation>Zavřít</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>&amp;Close</source>
         <translation>&amp;Zavřít</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="640"/>
-        <source>Close the editor window</source>
-        <translation>Zavřít editační okno</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="641"/>
+        <source>Close the editor window</source>
+        <translation>Zavřít editační okno</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="642"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zavřít okno&lt;/b&gt;&lt;p&gt;Zavřít aktuální okno.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Undo</source>
         <translation>Vrátit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>&amp;Undo</source>
         <translation>&amp;Vrátit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="687"/>
-        <source>Undo the last change</source>
-        <translation>Vrátit poslední změnu</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="688"/>
+        <source>Undo the last change</source>
+        <translation>Vrátit poslední změnu</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="689"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Vrátit poslední změnu v aktuálním editačním okně.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>Redo</source>
         <translation>Znovu použít</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>&amp;Redo</source>
         <translation>&amp;Znovu použít</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="701"/>
-        <source>Redo the last change</source>
-        <translation>Znovu použít poslední změnu</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="702"/>
+        <source>Redo the last change</source>
+        <translation>Znovu použít poslední změnu</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="703"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Znovu použít poslení změnu, která byla provedena v aktuálním editačním okně.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Cut</source>
         <translation>Vyjmout</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Cu&amp;t</source>
         <translation>Vyjmou&amp;t</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="716"/>
-        <source>Cut the selection</source>
-        <translation>Vyjmout výběr</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="717"/>
+        <source>Cut the selection</source>
+        <translation>Vyjmout výběr</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="718"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vyjmout&lt;/b&gt;&lt;p&gt;Vyjme vybraný text z aktuálního editačního okna a vloží jej do schránky.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Copy</source>
         <translation>Kopírovat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopírovat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="732"/>
-        <source>Copy the selection</source>
-        <translation>Kopírovat výběr</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="733"/>
+        <source>Copy the selection</source>
+        <translation>Kopírovat výběr</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="734"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kopírovat&lt;/b&gt;&lt;p&gt;Zkopíruje vybraný text v aktuálním editačním okně a uloží jej do schránky.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Paste</source>
         <translation>Vložit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>&amp;Paste</source>
         <translation>V&amp;ložit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="748"/>
+        <location filename="../QScintilla/MiniEditor.py" line="749"/>
         <source>Paste the last cut/copied text</source>
         <translation>Vložit text ze schránky</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="750"/>
+        <location filename="../QScintilla/MiniEditor.py" line="751"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vložit&lt;/b&gt;&lt;p&gt;Vloží text, který byl uložen do schránky při předchozím kroku Vyjmout nebo Kopírovat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Clear</source>
         <translation>Vyčistit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Cl&amp;ear</source>
         <translation>Vyči&amp;stit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="765"/>
-        <source>Clear all text</source>
-        <translation>Vyčistit všechen text</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="766"/>
+        <source>Clear all text</source>
+        <translation>Vyčistit všechen text</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="767"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vyčistit&lt;/b&gt;&lt;p&gt;Smazat všechnen text v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2373"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2374"/>
         <source>About</source>
         <translation>O aplikaci</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2373"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2374"/>
         <source>&amp;About</source>
         <translation>O &amp;aplikaci</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2377"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
         <source>Display information about this software</source>
         <translation>Zobrazit informace a tomto software</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2380"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;O aplikaci&lt;/b&gt;&lt;p&gt;Zobrazí se informace o tomto software.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <source>About Qt</source>
         <translation>O Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <source>About &amp;Qt</source>
         <translation>O &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2389"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2390"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Zobrazit informace o Qt toolkitu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2391"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2392"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;O Qt&lt;/b&gt;&lt;p&gt;Zobrazit informace o Qt toolkitu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2421"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2422"/>
         <source>&amp;File</source>
         <translation>S&amp;oubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2433"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2434"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2459"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2460"/>
         <source>&amp;Help</source>
         <translation>&amp;Nápověda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2536"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2537"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Tato část status baru zobrazuje číslo řádku v editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2543"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2544"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Tato část status baru zobrazuje pozici kurzoru v editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2560"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2561"/>
         <source>Ready</source>
         <translation>Hotovo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2642"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2643"/>
         <source>File loaded</source>
         <translation>Soubor načten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3089"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3090"/>
         <source>Untitled</source>
         <translation>Beze jména</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2757"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2758"/>
         <source>Mini Editor</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3130"/>
-        <source>Select all</source>
-        <translation>Vybrat vše</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="3131"/>
+        <source>Select all</source>
+        <translation>Vybrat vše</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3132"/>
         <source>Deselect all</source>
         <translation>Zrušit celý výběr</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3145"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3146"/>
         <source>Languages</source>
         <translation>Jazyky</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3148"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3149"/>
         <source>No Language</source>
         <translation>Žádný jazyk</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2614"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2615"/>
         <source>Open File</source>
         <translation>Otevřít soubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2728"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2729"/>
         <source>File saved</source>
         <translation>Soubor uložen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2529"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2530"/>
         <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Tato část statusbaru zobrazuje indikátor práva zápisu editoru do souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>What&apos;s This?</source>
         <translation>Co je to?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Co je to?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2404"/>
-        <source>Context sensitive help</source>
-        <translation>Kontextově senzitivní nápověda</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2405"/>
+        <source>Context sensitive help</source>
+        <translation>Kontextově senzitivní nápověda</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2406"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zobrazit kontextově senzitivní nápovědu&lt;/b&gt;&lt;p&gt;V režimu &quot;Co je to?&quot; se nad různými prvky aplikace u kurzoru zobrazí otazník. Když pak kliknete na tyto prvky, zobrazí se krátký popis co daný prvek znamená a jak jej použít. V dialogových oknech se tato funkce spustí tlačítkem kontextové nápovědy na horní liště.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2471"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2472"/>
         <source>File</source>
         <translation>Soubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2484"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2485"/>
         <source>Edit</source>
         <translation>Editovat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2494"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <source>Find</source>
         <translation>Hledat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2508"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2509"/>
         <source>Help</source>
         <translation>Nápověda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>Print</source>
         <translation>Tisk</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>&amp;Print</source>
         <translation>&amp;Tisk</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="654"/>
-        <source>Print the current file</source>
-        <translation>Tisk aktuálního souboru</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3049"/>
-        <source>Printing...</source>
-        <translation>Tisk...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3070"/>
-        <source>Printing completed</source>
-        <translation>Tisk je hotov</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3072"/>
-        <source>Error while printing</source>
-        <translation>Chyba během tisku</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3075"/>
-        <source>Printing aborted</source>
-        <translation>Tisk byl zrušen</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="655"/>
+        <source>Print the current file</source>
+        <translation>Tisk aktuálního souboru</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3050"/>
+        <source>Printing...</source>
+        <translation>Tisk...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3071"/>
+        <source>Printing completed</source>
+        <translation>Tisk je hotov</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3073"/>
+        <source>Error while printing</source>
+        <translation>Chyba během tisku</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3076"/>
+        <source>Printing aborted</source>
+        <translation>Tisk byl zrušen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="656"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tisk souboru&lt;/b&gt;&lt;p&gt;Tisk obsahu aktuálního souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="662"/>
+        <location filename="../QScintilla/MiniEditor.py" line="663"/>
         <source>Print Preview</source>
         <translation>Náhled tisku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="667"/>
+        <location filename="../QScintilla/MiniEditor.py" line="668"/>
         <source>Print preview of the current file</source>
         <translation>Náhled tisku aktuálního souboru</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="669"/>
+        <location filename="../QScintilla/MiniEditor.py" line="670"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Náhkled tisku&lt;/b&gt;&lt;p&gt;Náhkled tisku aktuálního souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3172"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3173"/>
         <source>Guessed</source>
         <translation>Odhadem</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3194"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Alternatives</source>
         <translation>Alternativy</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3218"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3219"/>
         <source>Pygments Lexer</source>
         <translation>Pygments Lexer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3218"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3219"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Použít Pygments lexer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="483"/>
+        <location filename="../QScintilla/MiniEditor.py" line="484"/>
         <source>Line: {0:5}</source>
         <translation>Řádek: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="487"/>
+        <location filename="../QScintilla/MiniEditor.py" line="488"/>
         <source>Pos: {0:5}</source>
         <translation>Poz: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2614"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2615"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nelze otevřít.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2722"/>
         <source>Save File</source>
         <translation>Uložit soubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2722"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nelze uložit.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2757"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2758"/>
         <source>{0}[*] - {1}</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3190"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3191"/>
         <source>Alternatives ({0})</source>
         <translation>Alternativy ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2588"/>
         <source>The document has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49018,77 +49028,77 @@
         <translation type="obsolete">eric5 Mini Editor {6 ?}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="619"/>
+        <location filename="../QScintilla/MiniEditor.py" line="620"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="619"/>
+        <location filename="../QScintilla/MiniEditor.py" line="620"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="624"/>
+        <location filename="../QScintilla/MiniEditor.py" line="625"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="626"/>
+        <location filename="../QScintilla/MiniEditor.py" line="627"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3735"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3736"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3735"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3736"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2740"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2741"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="502"/>
+        <location filename="../QScintilla/MiniEditor.py" line="503"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2451"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2452"/>
         <source>&amp;View</source>
         <translation type="unfinished">Poh&amp;led</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2501"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2502"/>
         <source>View</source>
         <translation type="unfinished">Pohled</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2521"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2522"/>
         <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2554"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2555"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="414"/>
         <source>About eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="414"/>
         <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don&apos;t need the power of a full blown editor.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2588"/>
         <source>eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78042,112 +78052,112 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="519"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="522"/>
         <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="590"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="593"/>
         <source>Manual Select</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="691"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="698"/>
         <source>Reset Instructions:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="635"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="638"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="658"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="665"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="668"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="675"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="693"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="700"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="705"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="712"/>
         <source>Flash Instructions:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="732"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="739"/>
         <source>Boot Volume not found:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="734"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="741"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="740"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="747"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="745"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="752"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="771"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="778"/>
         <source>Multiple Boot Volumes found:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="773"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="780"/>
         <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"></translation>
     </message>
     <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="806"/>
+        <source>Flashing {0}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="714"/>
+        <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 type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="808"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="487"/>
+        <source>&apos;{0}&apos; Board</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../MicroPython/UF2FlashDialog.py" line="799"/>
-        <source>Flashing {0}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="707"/>
-        <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 type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="801"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="484"/>
-        <source>&apos;{0}&apos; Board</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="792"/>
         <source>Flashing Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="793"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="800"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="752"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="759"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="414"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="416"/>
         <source>&lt;h3&gt;Pi Pico (RP2040) 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 type="unfinished"></translation>
     </message>
Binary file eric6/i18n/eric6_de.qm has changed
--- a/eric6/i18n/eric6_de.ts	Sun Mar 28 18:51:40 2021 +0200
+++ b/eric6/i18n/eric6_de.ts	Sun Mar 28 18:51:58 2021 +0200
@@ -1,5 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS><TS version="2.0" language="de" sourcelanguage="">
+<!DOCTYPE TS>
+<TS version="2.1" language="de">
 <context>
     <name>AboutDialog</name>
     <message>
@@ -1599,37 +1600,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="135"/>
+        <location filename="../Utilities/BackgroundService.py" line="138"/>
         <source>{0} not configured.</source>
         <translation>{0} nicht konfiguriert.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="190"/>
+        <location filename="../Utilities/BackgroundService.py" line="193"/>
         <source>Restart background client?</source>
         <translation>Hintergrund Client neu starten?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="451"/>
+        <location filename="../Utilities/BackgroundService.py" line="454"/>
         <source>Background client disconnected.</source>
         <translation>Hintergrund Client wurde getrennt.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="445"/>
+        <location filename="../Utilities/BackgroundService.py" line="448"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation>Die Verbindung zu Erics Hintergund Client wurde aus unbekanntem Grund getrennt.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="190"/>
+        <location filename="../Utilities/BackgroundService.py" line="193"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Hintergund Client für &lt;b&gt;{0}&lt;/b&gt; wurde durch eine Exception gestoppt. Er wird für verschiedene Plugins, wie z.B. die Checker, verwendet.&lt;/p&gt;&lt;p&gt;Wähle:&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Ja&apos;&lt;/b&gt;, um den Client aber nicht den letzten Job neu zu starten&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Wiederholen&apos;&lt;/b&gt;, um den Client und letzten Job neu zu starten&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Nein&apos;&lt;/b&gt;, um den Client nicht neu zu starten.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Hinweis: Der Client kann immer wieder gestartet werden, indem der Einstellungsdialog mit Ok geschlossen wird oder durch das Neuladen/ Wechseln des Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="451"/>
+        <location filename="../Utilities/BackgroundService.py" line="454"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation>Die Verbindung zum Hintergund Client für &lt;b&gt;{0}&lt;/b&gt; wurde aus unbekanntem Grund getrennt.&lt;br&gt;Soll er neu gestartet werden?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="216"/>
+        <location filename="../Utilities/BackgroundService.py" line="219"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation>Ein Fehler im Eric Hintergrunddienst hat den Dienst beendet.</translation>
     </message>
@@ -2115,8 +2116,8 @@
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksMenu.py" line="170"/>
-        <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source>
-        <translation>In neuem Register öffnen<byte value="x9"/>Strg+LMK</translation>
+        <source>Open in New Tab	Ctrl+LMB</source>
+        <translation>In neuem Register öffnen	Strg+LMK</translation>
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksMenu.py" line="174"/>
@@ -2184,8 +2185,8 @@
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksToolBar.py" line="90"/>
-        <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source>
-        <translation>In neuem Register öffnen<byte value="x9"/>Strg+LMK</translation>
+        <source>Open in New Tab	Ctrl+LMB</source>
+        <translation>In neuem Register öffnen	Strg+LMK</translation>
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksToolBar.py" line="94"/>
@@ -3485,7 +3486,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="578"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation>Keine Nachricht für &apos;{0}&apos; definiert.</translation>
     </message>
@@ -9674,7 +9675,7 @@
         <translation>Fehlermeldungsfilter</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="35"/>
+        <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="32"/>
         <source>&lt;b&gt;Error Message Filters&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress error messages from within Qt.&lt;/p&gt;&lt;p&gt;A default list of message filters is added to this user list.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fehlermeldungsfilter&lt;/b&gt;&lt;p&gt;Diese Liste zeigt alle konfigurierten Fehlermeldungsfilter zur Unterdrückung von Qt Fehlermeldung.&lt;/p&gt;&lt;p&gt;Eine Standardfehlerliste wird dieser Nutzer definierten Liste angefügt.&lt;/p&gt;</translation>
     </message>
@@ -11829,7 +11830,7 @@
         <translation>Wähle den anzuwendenden Pygments Lexer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7991"/>
+        <location filename="../QScintilla/Editor.py" line="7992"/>
         <source>Check spelling...</source>
         <translation>Rechtschreibprüfung...</translation>
     </message>
@@ -11839,12 +11840,12 @@
         <translation>Rechtschreibprüfung für Auswahl...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7994"/>
+        <location filename="../QScintilla/Editor.py" line="7995"/>
         <source>Add to dictionary</source>
         <translation>Zum Wörterbuch hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7996"/>
+        <location filename="../QScintilla/Editor.py" line="7997"/>
         <source>Ignore All</source>
         <translation>Alle ignorieren</translation>
     </message>
@@ -11929,12 +11930,12 @@
         <translation>Vorherige Änderung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8412"/>
+        <location filename="../QScintilla/Editor.py" line="8413"/>
         <source>Sort Lines</source>
         <translation>Zeilen sortieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8412"/>
+        <location filename="../QScintilla/Editor.py" line="8413"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation>Die Auswahl enthält für eine numerische Sortierung ungültige Daten.</translation>
     </message>
@@ -12004,12 +12005,12 @@
         <translation>Der Calltipps-Provider namens &apos;{0}&apos; ist bereits registriert. Die Wiederholung wird ignoriert.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8501"/>
+        <location filename="../QScintilla/Editor.py" line="8502"/>
         <source>Register Mouse Click Handler</source>
         <translation>Maus Klick Handler registrieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8501"/>
+        <location filename="../QScintilla/Editor.py" line="8502"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation>Ein Maus Klick Handler für &quot;{0}&quot; wurde bereits durch &quot;{1}&quot; registriert. Die Anfrage durch &quot;{2}&quot; wird abgebrochen...</translation>
     </message>
@@ -12039,12 +12040,12 @@
         <translation>Auswahl in Konsole ausführen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8622"/>
+        <location filename="../QScintilla/Editor.py" line="8623"/>
         <source>EditorConfig Properties</source>
         <translation>EditorConfig Eigenschaften</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8622"/>
+        <location filename="../QScintilla/Editor.py" line="8623"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die EditorConfig Eigenschaften für die Datei &lt;b&gt;{0}&lt;/b&gt; konnten nicht geladen werden.&lt;/p&gt;</translation>
     </message>
@@ -12089,7 +12090,7 @@
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; wurde geändert, während sie in eric geöffnet war. Neu einlesen?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8816"/>
+        <location filename="../QScintilla/Editor.py" line="8817"/>
         <source>Generate Docstring</source>
         <translation>Docstring erzeugen</translation>
     </message>
@@ -17643,12 +17644,12 @@
         <translation>Flash löschen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="227"/>
+        <location filename="../MicroPython/EspDevices.py" line="231"/>
         <source>Flash MicroPython Firmware</source>
         <translation>MicroPython Firmware flashen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="258"/>
+        <location filename="../MicroPython/EspDevices.py" line="266"/>
         <source>Flash Additional Firmware</source>
         <translation>Zusätzliche Firmware flashen</translation>
     </message>
@@ -17673,7 +17674,7 @@
         <translation>Chiptyp &apos;{0}&apos; wird nicht unterstützt.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="319"/>
+        <location filename="../MicroPython/EspDevices.py" line="327"/>
         <source>&apos;esptool write_flash&apos; Output</source>
         <translation>Ausgabe von &apos;esptool write_flash&apos;</translation>
     </message>
@@ -17683,47 +17684,47 @@
         <translation>Gerät zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="285"/>
+        <location filename="../MicroPython/EspDevices.py" line="293"/>
         <source>Backup Firmware</source>
         <translation>Firmware sichern</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="319"/>
+        <location filename="../MicroPython/EspDevices.py" line="327"/>
         <source>Restore Firmware</source>
         <translation>Firmware zurückspielen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="337"/>
+        <location filename="../MicroPython/EspDevices.py" line="345"/>
         <source>Show Chip ID</source>
         <translation>Chip ID anzeigen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="354"/>
+        <location filename="../MicroPython/EspDevices.py" line="362"/>
         <source>Show Flash ID</source>
         <translation>Flash ID anzeigen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="371"/>
+        <location filename="../MicroPython/EspDevices.py" line="379"/>
         <source>Show MAC Address</source>
         <translation>MAC Adresse anzeigen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="285"/>
+        <location filename="../MicroPython/EspDevices.py" line="293"/>
         <source>&apos;esptool read_flash&apos; Output</source>
         <translation>Ausgabe von &apos;esptool read_flash&apos;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="337"/>
+        <location filename="../MicroPython/EspDevices.py" line="345"/>
         <source>&apos;esptool chip_id&apos; Output</source>
         <translation>Ausgabe von &apos;esptool chip_id&apos;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="354"/>
+        <location filename="../MicroPython/EspDevices.py" line="362"/>
         <source>&apos;esptool flash_id&apos; Output</source>
         <translation>Ausgabe von &apos;esptool flash_id&apos;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="371"/>
+        <location filename="../MicroPython/EspDevices.py" line="379"/>
         <source>&apos;esptool read_mac&apos; Output</source>
         <translation>Ausgabe von &apos;esptool read_mac&apos;</translation>
     </message>
@@ -17756,12 +17757,12 @@
         <translation>Gib den Pfad der Firmwaredatei ein</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="96"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="123"/>
         <source>Address:</source>
         <translation>Adresse:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="103"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="130"/>
         <source>Enter the flash addres in the hexadecimal form</source>
         <translation>Gib die Flash Speicheradresse in Hexadezimalform ein</translation>
     </message>
@@ -17771,20 +17772,30 @@
         <translation>Firmwaredateien (*.bin);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="75"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="102"/>
         <source>Flash Mode:</source>
         <translation>Flash Modus:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="82"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="109"/>
         <source>Select the flash mode</source>
         <translation>Wähle den Flashmodus aus</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="89"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="116"/>
         <source>Leave empty to use the default mode.</source>
         <translation>Leer lassen, um den Standardmodus zu verwenden.</translation>
     </message>
+    <message>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="72"/>
+        <source>Baud Rate:</source>
+        <translation>Baudrate:</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="79"/>
+        <source>Select the baud rate to be used foor flashing (default: 115.200 bps)</source>
+        <translation>Wähle die zum Flashen zu verwendende Baudrate (Standard: 115.200 BpS)</translation>
+    </message>
 </context>
 <context>
     <name>ExceptionLogger</name>
@@ -44781,12 +44792,12 @@
     </message>
     <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1195"/>
-        <source>&#xc2;&#xb5;Py Chart</source>
+        <source>µPy Chart</source>
         <translation>µPy Chart</translation>
     </message>
     <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1278"/>
-        <source>&#xc2;&#xb5;Py Files</source>
+        <source>µPy Files</source>
         <translation>µPy Dateien</translation>
     </message>
     <message>
@@ -45085,674 +45096,674 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>New</source>
         <translation>Neu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>&amp;New</source>
         <translation>&amp;Neu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="567"/>
-        <source>Open an empty editor window</source>
-        <translation>Öffnet ein leeres Editorfenster</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="568"/>
+        <source>Open an empty editor window</source>
+        <translation>Öffnet ein leeres Editorfenster</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="569"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neu&lt;/b&gt;&lt;p&gt;Ein neues Editorfenster wird geöffnet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>Open</source>
         <translation>Öffnen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>&amp;Open...</source>
         <translation>&amp;Öffnen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="581"/>
+        <location filename="../QScintilla/MiniEditor.py" line="582"/>
         <source>Open a file</source>
         <translation>Datei öffnen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="582"/>
+        <location filename="../QScintilla/MiniEditor.py" line="583"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datei öffnen&lt;/b&gt;&lt;p&gt;Sie werden nach dem Namen einer Datei gefragt, die geöffnet werden soll.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>Save</source>
         <translation>Speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>&amp;Save</source>
         <translation>&amp;Speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
-        <source>Save the current file</source>
-        <translation>Speichert die aktuelle Datei</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="596"/>
+        <source>Save the current file</source>
+        <translation>Speichert die aktuelle Datei</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="597"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datei speichern&lt;/b&gt;&lt;p&gt;Dies speichert den Inhalt des aktuellen Editorfensters.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save as</source>
         <translation>Speichern unter</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save &amp;as...</source>
         <translation>Speichern &amp;unter...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="609"/>
+        <location filename="../QScintilla/MiniEditor.py" line="610"/>
         <source>Save the current file to a new one</source>
         <translation>Speichere die aktuelle Datei unter neuem Namen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="611"/>
+        <location filename="../QScintilla/MiniEditor.py" line="612"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Speichen unter&lt;/b&gt;&lt;p&gt;Dies speichert den Inhalt des aktuellen Editors in eine neue Datei. Die Datei kann mit einem Dateiauswahldialog eingegeben werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>Close</source>
         <translation>Schließen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>&amp;Close</source>
         <translation>Schl&amp;ießen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="640"/>
+        <location filename="../QScintilla/MiniEditor.py" line="641"/>
         <source>Close the editor window</source>
         <translation>Schließt das Editorfenster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="641"/>
+        <location filename="../QScintilla/MiniEditor.py" line="642"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fenster schließen&lt;/b&gt;&lt;p&gt;Dies schließt das aktuelle Editorfenster.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Undo</source>
         <translation>Rückgängig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>&amp;Undo</source>
         <translation>&amp;Rückgängig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="687"/>
+        <location filename="../QScintilla/MiniEditor.py" line="688"/>
         <source>Undo the last change</source>
         <translation>Die letzte Änderung rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="688"/>
+        <location filename="../QScintilla/MiniEditor.py" line="689"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rückgängig&lt;/b&gt;&lt;p&gt;Dies macht die letzte Änderung des aktuellen Editors rückgängig.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>Redo</source>
         <translation>Wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>&amp;Redo</source>
         <translation>Wieder&amp;herstellen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="702"/>
         <source>Redo the last change</source>
         <translation>Die letzte Änderung wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="702"/>
+        <location filename="../QScintilla/MiniEditor.py" line="703"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Wiederherstellen&lt;/b&gt;&lt;p&gt;Dies stellt die letzte Änderung des aktuellen Editors wieder her.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Cut</source>
         <translation>Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Cu&amp;t</source>
         <translation>&amp;Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="716"/>
-        <source>Cut the selection</source>
-        <translation>Schneidet die Auswahl aus</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="717"/>
+        <source>Cut the selection</source>
+        <translation>Schneidet die Auswahl aus</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="718"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ausschneiden&lt;/b&gt;&lt;p&gt;Dies schneidet den ausgewählten Text des aktuellen Editors aus und legt ihn in der Zwischenablage ab.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Copy</source>
         <translation>Kopieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Einfg</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="732"/>
-        <source>Copy the selection</source>
-        <translation>Kopiert die Auswahl</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="733"/>
+        <source>Copy the selection</source>
+        <translation>Kopiert die Auswahl</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="734"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kopieren&lt;/b&gt;&lt;p&gt;Dies kopiert den ausgewählten Text des aktuellen Editors in die Zwischenablage.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Paste</source>
         <translation>Einfügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>&amp;Paste</source>
         <translation>Ein&amp;fügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="748"/>
+        <location filename="../QScintilla/MiniEditor.py" line="749"/>
         <source>Paste the last cut/copied text</source>
         <translation>Fügt den Inhalt der Zwischenablage ein</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="750"/>
+        <location filename="../QScintilla/MiniEditor.py" line="751"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Einfügen&lt;/b&gt;&lt;p&gt;Dies fügt den zuletzt ausgeschnittenen/kopierten Text aus der Zwischenablage in den aktuellen Editor ein.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Clear</source>
         <translation>Löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Cl&amp;ear</source>
         <translation>All&amp;es löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="765"/>
-        <source>Clear all text</source>
-        <translation>Löscht den gesamten Text</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="766"/>
+        <source>Clear all text</source>
+        <translation>Löscht den gesamten Text</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="767"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alles Löschen&lt;/b&gt;&lt;p&gt;Dies löscht den gesamten Text des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2373"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2374"/>
         <source>About</source>
         <translation>Über</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2373"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2374"/>
         <source>&amp;About</source>
         <translation>&amp;Über</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2377"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
         <source>Display information about this software</source>
         <translation>Zeigt Informationen zu diesem Programm an</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2380"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Über&lt;/b&gt;&lt;p&gt;Zeigt einige Informationen über dieses Programm an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <source>About Qt</source>
         <translation>Über Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <source>About &amp;Qt</source>
         <translation>Über &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2389"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2390"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Zeige Informationen über das Qt-Toolkit an</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2391"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2392"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Über Qt&lt;/b&gt;&lt;p&gt;Zeige Informationen über das Qt-Toolkit an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2421"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2422"/>
         <source>&amp;File</source>
         <translation>&amp;Datei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2433"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2434"/>
         <source>&amp;Edit</source>
         <translation>&amp;Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2459"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2460"/>
         <source>&amp;Help</source>
         <translation>&amp;Hilfe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2536"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2537"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Zeilennummer des Editors an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2543"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2544"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Cursorposition des Editors an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2560"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2561"/>
         <source>Ready</source>
         <translation>Bereit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2642"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2643"/>
         <source>File loaded</source>
         <translation>Datei geladen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3089"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3090"/>
         <source>Untitled</source>
         <translation>Unbenannt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2757"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2758"/>
         <source>{0}[*] - {1}</source>
         <translation>{0} [*] – {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2757"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2758"/>
         <source>Mini Editor</source>
         <translation>Mini Editor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3130"/>
-        <source>Select all</source>
-        <translation>Alles auswählen</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="3131"/>
+        <source>Select all</source>
+        <translation>Alles auswählen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3132"/>
         <source>Deselect all</source>
         <translation>Auswahl aufheben</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3145"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3146"/>
         <source>Languages</source>
         <translation>Sprachen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3148"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3149"/>
         <source>No Language</source>
         <translation>Keine Sprache</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2614"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2615"/>
         <source>Open File</source>
         <translation>Datei öffnen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2728"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2729"/>
         <source>File saved</source>
         <translation>Datei gespeichert</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2529"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2530"/>
         <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt an, ob die Datei geschrieben werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>What&apos;s This?</source>
         <translation>Was ist das?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Was ist das?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2404"/>
-        <source>Context sensitive help</source>
-        <translation>Kontextsensitive Hilfe</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2405"/>
+        <source>Context sensitive help</source>
+        <translation>Kontextsensitive Hilfe</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2406"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zeige kontextsensitive Hilfe an&lt;b&gt;&lt;/p&gt;Im „Was ist das?“-Modus (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2471"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2472"/>
         <source>File</source>
         <translation>Datei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2484"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2485"/>
         <source>Edit</source>
         <translation>Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2494"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <source>Find</source>
         <translation>Suchen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2508"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2509"/>
         <source>Help</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>Print</source>
         <translation>Drucken</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>&amp;Print</source>
         <translation>&amp;Drucken</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="654"/>
-        <source>Print the current file</source>
-        <translation>Druckt die aktuelle Datei</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3049"/>
-        <source>Printing...</source>
-        <translation>Drucke...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3070"/>
-        <source>Printing completed</source>
-        <translation>Drucken beendet</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3072"/>
-        <source>Error while printing</source>
-        <translation>Fehler beim Drucken</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3075"/>
-        <source>Printing aborted</source>
-        <translation>Drucken abgebrochen</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="655"/>
+        <source>Print the current file</source>
+        <translation>Druckt die aktuelle Datei</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3050"/>
+        <source>Printing...</source>
+        <translation>Drucke...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3071"/>
+        <source>Printing completed</source>
+        <translation>Drucken beendet</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3073"/>
+        <source>Error while printing</source>
+        <translation>Fehler beim Drucken</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3076"/>
+        <source>Printing aborted</source>
+        <translation>Drucken abgebrochen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="656"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datei drucken&lt;/b&gt;&lt;p&gt;Dies druckt den Inhalt der aktuellen Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="662"/>
+        <location filename="../QScintilla/MiniEditor.py" line="663"/>
         <source>Print Preview</source>
         <translation>Druckvorschau</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="667"/>
+        <location filename="../QScintilla/MiniEditor.py" line="668"/>
         <source>Print preview of the current file</source>
         <translation>Druckvorschau der aktuellen Datei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="669"/>
+        <location filename="../QScintilla/MiniEditor.py" line="670"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Druckvorschau&lt;/b&gt;&lt;p&gt;Zeift eine Druckvorschau der aktuellen Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3172"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3173"/>
         <source>Guessed</source>
         <translation>Ermittelt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3194"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Alternatives</source>
         <translation>Alternativen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3190"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3191"/>
         <source>Alternatives ({0})</source>
         <translation>Alternativen ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3218"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3219"/>
         <source>Pygments Lexer</source>
         <translation>Pygments Lexer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3218"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3219"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Wähle den anzuwendenden Pygments Lexer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="483"/>
+        <location filename="../QScintilla/MiniEditor.py" line="484"/>
         <source>Line: {0:5}</source>
         <translation>Zeile: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="487"/>
+        <location filename="../QScintilla/MiniEditor.py" line="488"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2614"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2615"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geöffnet werden.&lt;p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2722"/>
         <source>Save File</source>
         <translation>Datei speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2722"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gesichert werden.&lt;br/&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2588"/>
         <source>The document has unsaved changes.</source>
         <translation>Das Dokument hat ungesicherte Änderungen.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="619"/>
+        <location filename="../QScintilla/MiniEditor.py" line="620"/>
         <source>Save Copy</source>
         <translation>Kopie speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="619"/>
+        <location filename="../QScintilla/MiniEditor.py" line="620"/>
         <source>Save &amp;Copy...</source>
         <translation>&amp;Kopie speichern...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="624"/>
+        <location filename="../QScintilla/MiniEditor.py" line="625"/>
         <source>Save a copy of the current file</source>
         <translation>Speichert eine Kopie der aktuellen Datei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="626"/>
+        <location filename="../QScintilla/MiniEditor.py" line="627"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kopie speichern&lt;/b&gt;&lt;p&gt;Speichern einer Kopie des Inhalts des aktuellen Editorfensters. Die Datei kann mit einem Dateiauswahldialog eingegeben werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3735"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3736"/>
         <source>EditorConfig Properties</source>
         <translation>EditorConfig Eigenschaften</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3735"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3736"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die EditorConfig Eigenschaften für die Datei &lt;b&gt;{0}&lt;/b&gt; konnten nicht geladen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2740"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2741"/>
         <source>[*] - {0}</source>
         <translation>[*] - {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="502"/>
+        <location filename="../QScintilla/MiniEditor.py" line="503"/>
         <source>Language: {0}</source>
         <translation>Sprache: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2451"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2452"/>
         <source>&amp;View</source>
         <translation>&amp;Ansicht</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2501"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2502"/>
         <source>View</source>
         <translation>Ansicht</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2521"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2522"/>
         <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Sprache des Editors an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2554"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2555"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste ermöglicht das Zoomen des Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="414"/>
         <source>About eric Mini Editor</source>
         <translation>Über den eric Mini Editor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="414"/>
         <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don&apos;t need the power of a full blown editor.</source>
         <translation>Der eric Mini-Editor ist eine Editorkomponente, die auf QScintilla basiert. Sie kann für einfachere Editieraufgaben, die keinen ausgewachsenen Editor benötigen, verwendet werden.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2588"/>
         <source>eric Mini Editor</source>
         <translation>eric Mini Editor</translation>
     </message>
@@ -73659,112 +73670,112 @@
         <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="519"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="522"/>
         <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source>
         <translation>MicroPython/CircuitPython Dateien (*.uf2);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="590"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="593"/>
         <source>Manual Select</source>
         <translation>Manuelle Auswahl</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="691"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="698"/>
         <source>Reset Instructions:</source>
         <translation>Reset Instruktionen:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="635"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="638"/>
         <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="658"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="665"/>
         <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="668"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="675"/>
         <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="693"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="700"/>
         <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="705"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="712"/>
         <source>Flash Instructions:</source>
         <translation>Flash Instruktionen:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="732"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="739"/>
         <source>Boot Volume not found:</source>
         <translation>Boot Datenträger nicht gefunden:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="734"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="741"/>
         <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="740"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="747"/>
         <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="745"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="752"/>
         <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="771"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="778"/>
         <source>Multiple Boot Volumes found:</source>
         <translation>Mehrere Boot Datenträger erkannt:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="773"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="780"/>
         <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="806"/>
+        <source>Flashing {0}</source>
+        <translation>Flashe {0}</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="714"/>
+        <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="808"/>
+        <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="487"/>
+        <source>&apos;{0}&apos; Board</source>
+        <translation>&apos;{0}&apos; Board</translation>
+    </message>
+    <message>
         <location filename="../MicroPython/UF2FlashDialog.py" line="799"/>
-        <source>Flashing {0}</source>
-        <translation>Flashe {0}</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="707"/>
-        <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="801"/>
-        <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="484"/>
-        <source>&apos;{0}&apos; Board</source>
-        <translation>&apos;{0}&apos; Board</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="792"/>
         <source>Flashing Firmware</source>
         <translation>Flashe Firmware</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="793"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="800"/>
         <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="752"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="759"/>
         <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="414"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="416"/>
         <source>&lt;h3&gt;Pi Pico (RP2040) 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) 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>
@@ -84547,8 +84558,8 @@
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserView.py" line="666"/>
-        <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source>
-        <translation>Link in neuem Fenster öffnen<byte value="x9"/>Strg+LMK</translation>
+        <source>Open Link in New Tab	Ctrl+LMB</source>
+        <translation>Link in neuem Fenster öffnen	Strg+LMK</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserView.py" line="672"/>
--- a/eric6/i18n/eric6_empty.ts	Sun Mar 28 18:51:40 2021 +0200
+++ b/eric6/i18n/eric6_empty.ts	Sun Mar 28 18:51:58 2021 +0200
@@ -1583,37 +1583,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="135"/>
+        <location filename="../Utilities/BackgroundService.py" line="138"/>
         <source>{0} not configured.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="190"/>
+        <location filename="../Utilities/BackgroundService.py" line="193"/>
         <source>Restart background client?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="190"/>
+        <location filename="../Utilities/BackgroundService.py" line="193"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="445"/>
+        <location filename="../Utilities/BackgroundService.py" line="448"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="451"/>
+        <location filename="../Utilities/BackgroundService.py" line="454"/>
         <source>Background client disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="451"/>
+        <location filename="../Utilities/BackgroundService.py" line="454"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="216"/>
+        <location filename="../Utilities/BackgroundService.py" line="219"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3449,7 +3449,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="578"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9590,7 +9590,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="35"/>
+        <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="32"/>
         <source>&lt;b&gt;Error Message Filters&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress error messages from within Qt.&lt;/p&gt;&lt;p&gt;A default list of message filters is added to this user list.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11152,7 +11152,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7991"/>
+        <location filename="../QScintilla/Editor.py" line="7992"/>
         <source>Check spelling...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11887,32 +11887,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7994"/>
+        <location filename="../QScintilla/Editor.py" line="7995"/>
         <source>Add to dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7996"/>
+        <location filename="../QScintilla/Editor.py" line="7997"/>
         <source>Ignore All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8412"/>
+        <location filename="../QScintilla/Editor.py" line="8413"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8412"/>
+        <location filename="../QScintilla/Editor.py" line="8413"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8501"/>
+        <location filename="../QScintilla/Editor.py" line="8502"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8501"/>
+        <location filename="../QScintilla/Editor.py" line="8502"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11937,12 +11937,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8622"/>
+        <location filename="../QScintilla/Editor.py" line="8623"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8622"/>
+        <location filename="../QScintilla/Editor.py" line="8623"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11987,7 +11987,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8816"/>
+        <location filename="../QScintilla/Editor.py" line="8817"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17527,12 +17527,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="227"/>
+        <location filename="../MicroPython/EspDevices.py" line="231"/>
         <source>Flash MicroPython Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="258"/>
+        <location filename="../MicroPython/EspDevices.py" line="266"/>
         <source>Flash Additional Firmware</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17557,7 +17557,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="319"/>
+        <location filename="../MicroPython/EspDevices.py" line="327"/>
         <source>&apos;esptool write_flash&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17567,47 +17567,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="285"/>
+        <location filename="../MicroPython/EspDevices.py" line="293"/>
         <source>Backup Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="319"/>
+        <location filename="../MicroPython/EspDevices.py" line="327"/>
         <source>Restore Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="337"/>
+        <location filename="../MicroPython/EspDevices.py" line="345"/>
         <source>Show Chip ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="354"/>
+        <location filename="../MicroPython/EspDevices.py" line="362"/>
         <source>Show Flash ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="371"/>
+        <location filename="../MicroPython/EspDevices.py" line="379"/>
         <source>Show MAC Address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="285"/>
+        <location filename="../MicroPython/EspDevices.py" line="293"/>
         <source>&apos;esptool read_flash&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="337"/>
+        <location filename="../MicroPython/EspDevices.py" line="345"/>
         <source>&apos;esptool chip_id&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="354"/>
+        <location filename="../MicroPython/EspDevices.py" line="362"/>
         <source>&apos;esptool flash_id&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="371"/>
+        <location filename="../MicroPython/EspDevices.py" line="379"/>
         <source>&apos;esptool read_mac&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17640,12 +17640,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="96"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="123"/>
         <source>Address:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="103"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="130"/>
         <source>Enter the flash addres in the hexadecimal form</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17655,20 +17655,30 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="75"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="102"/>
         <source>Flash Mode:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="82"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="109"/>
         <source>Select the flash mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="89"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="116"/>
         <source>Leave empty to use the default mode.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="72"/>
+        <source>Baud Rate:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="79"/>
+        <source>Select the baud rate to be used foor flashing (default: 115.200 bps)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ExceptionLogger</name>
@@ -44853,674 +44863,674 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2722"/>
         <source>Save File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2722"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2728"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2729"/>
         <source>File saved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="483"/>
+        <location filename="../QScintilla/MiniEditor.py" line="484"/>
         <source>Line: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="487"/>
+        <location filename="../QScintilla/MiniEditor.py" line="488"/>
         <source>Pos: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>&amp;New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="567"/>
-        <source>Open an empty editor window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="568"/>
+        <source>Open an empty editor window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="569"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>&amp;Open...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="581"/>
-        <source>Open a file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="582"/>
+        <source>Open a file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="583"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>&amp;Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
-        <source>Save the current file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="596"/>
+        <source>Save the current file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="597"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save &amp;as...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="609"/>
+        <location filename="../QScintilla/MiniEditor.py" line="610"/>
         <source>Save the current file to a new one</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="611"/>
+        <location filename="../QScintilla/MiniEditor.py" line="612"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="619"/>
+        <location filename="../QScintilla/MiniEditor.py" line="620"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="619"/>
+        <location filename="../QScintilla/MiniEditor.py" line="620"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="624"/>
+        <location filename="../QScintilla/MiniEditor.py" line="625"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="626"/>
+        <location filename="../QScintilla/MiniEditor.py" line="627"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>&amp;Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="640"/>
-        <source>Close the editor window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="641"/>
+        <source>Close the editor window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="642"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>&amp;Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="654"/>
-        <source>Print the current file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="655"/>
+        <source>Print the current file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="656"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="662"/>
+        <location filename="../QScintilla/MiniEditor.py" line="663"/>
         <source>Print Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="667"/>
+        <location filename="../QScintilla/MiniEditor.py" line="668"/>
         <source>Print preview of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="669"/>
+        <location filename="../QScintilla/MiniEditor.py" line="670"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>&amp;Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="687"/>
-        <source>Undo the last change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="688"/>
+        <source>Undo the last change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="689"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>&amp;Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="701"/>
-        <source>Redo the last change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="702"/>
+        <source>Redo the last change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="703"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="716"/>
-        <source>Cut the selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="717"/>
+        <source>Cut the selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="718"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>&amp;Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="732"/>
-        <source>Copy the selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="733"/>
+        <source>Copy the selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="734"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>&amp;Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="748"/>
+        <location filename="../QScintilla/MiniEditor.py" line="749"/>
         <source>Paste the last cut/copied text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="750"/>
+        <location filename="../QScintilla/MiniEditor.py" line="751"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Cl&amp;ear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="765"/>
-        <source>Clear all text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="766"/>
+        <source>Clear all text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="767"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2373"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2374"/>
         <source>About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2373"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2374"/>
         <source>&amp;About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2377"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
         <source>Display information about this software</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2380"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <source>About Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2389"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2390"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2391"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2392"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2404"/>
-        <source>Context sensitive help</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2405"/>
+        <source>Context sensitive help</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2406"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2421"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2422"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2433"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2434"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2459"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2460"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2471"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2472"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2484"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2485"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2494"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2508"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2509"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2529"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2530"/>
         <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2536"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2537"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2543"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2544"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2560"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2561"/>
         <source>Ready</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2588"/>
         <source>The document has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2614"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2615"/>
         <source>Open File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2614"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2615"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2642"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2643"/>
         <source>File loaded</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3089"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3090"/>
         <source>Untitled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2757"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2758"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2757"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2758"/>
         <source>Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3049"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3050"/>
         <source>Printing...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3070"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3071"/>
         <source>Printing completed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3072"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3073"/>
         <source>Error while printing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3075"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3076"/>
         <source>Printing aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3130"/>
-        <source>Select all</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="3131"/>
+        <source>Select all</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3132"/>
         <source>Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3145"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3146"/>
         <source>Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3148"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3149"/>
         <source>No Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3172"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3173"/>
         <source>Guessed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3194"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Alternatives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3190"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3191"/>
         <source>Alternatives ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3218"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3219"/>
         <source>Pygments Lexer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3218"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3219"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3735"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3736"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3735"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3736"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2740"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2741"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="502"/>
+        <location filename="../QScintilla/MiniEditor.py" line="503"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2451"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2452"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2501"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2502"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2521"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2522"/>
         <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2554"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2555"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="414"/>
         <source>About eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="414"/>
         <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don&apos;t need the power of a full blown editor.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2588"/>
         <source>eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73107,112 +73117,112 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="519"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="522"/>
         <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="590"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="593"/>
         <source>Manual Select</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="691"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="698"/>
         <source>Reset Instructions:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="635"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="638"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="658"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="665"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="668"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="675"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="693"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="700"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="705"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="712"/>
         <source>Flash Instructions:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="732"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="739"/>
         <source>Boot Volume not found:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="734"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="741"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="740"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="747"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="745"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="752"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="771"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="778"/>
         <source>Multiple Boot Volumes found:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="773"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="780"/>
         <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"></translation>
     </message>
     <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="806"/>
+        <source>Flashing {0}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="714"/>
+        <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 type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="808"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="487"/>
+        <source>&apos;{0}&apos; Board</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../MicroPython/UF2FlashDialog.py" line="799"/>
-        <source>Flashing {0}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="707"/>
-        <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 type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="801"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="484"/>
-        <source>&apos;{0}&apos; Board</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="792"/>
         <source>Flashing Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="793"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="800"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="752"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="759"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="414"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="416"/>
         <source>&lt;h3&gt;Pi Pico (RP2040) 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 type="unfinished"></translation>
     </message>
--- a/eric6/i18n/eric6_en.ts	Sun Mar 28 18:51:40 2021 +0200
+++ b/eric6/i18n/eric6_en.ts	Sun Mar 28 18:51:58 2021 +0200
@@ -1583,37 +1583,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="135"/>
+        <location filename="../Utilities/BackgroundService.py" line="138"/>
         <source>{0} not configured.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="190"/>
+        <location filename="../Utilities/BackgroundService.py" line="193"/>
         <source>Restart background client?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="445"/>
+        <location filename="../Utilities/BackgroundService.py" line="448"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="451"/>
+        <location filename="../Utilities/BackgroundService.py" line="454"/>
         <source>Background client disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="190"/>
+        <location filename="../Utilities/BackgroundService.py" line="193"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="451"/>
+        <location filename="../Utilities/BackgroundService.py" line="454"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="216"/>
+        <location filename="../Utilities/BackgroundService.py" line="219"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3449,7 +3449,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="578"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9605,7 +9605,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="35"/>
+        <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="32"/>
         <source>&lt;b&gt;Error Message Filters&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress error messages from within Qt.&lt;/p&gt;&lt;p&gt;A default list of message filters is added to this user list.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11167,7 +11167,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7991"/>
+        <location filename="../QScintilla/Editor.py" line="7992"/>
         <source>Check spelling...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11797,12 +11797,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7994"/>
+        <location filename="../QScintilla/Editor.py" line="7995"/>
         <source>Add to dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7996"/>
+        <location filename="../QScintilla/Editor.py" line="7997"/>
         <source>Ignore All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11842,12 +11842,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8412"/>
+        <location filename="../QScintilla/Editor.py" line="8413"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8412"/>
+        <location filename="../QScintilla/Editor.py" line="8413"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11917,12 +11917,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8501"/>
+        <location filename="../QScintilla/Editor.py" line="8502"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8501"/>
+        <location filename="../QScintilla/Editor.py" line="8502"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11952,12 +11952,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8622"/>
+        <location filename="../QScintilla/Editor.py" line="8623"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8622"/>
+        <location filename="../QScintilla/Editor.py" line="8623"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12002,7 +12002,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8816"/>
+        <location filename="../QScintilla/Editor.py" line="8817"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17542,12 +17542,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="227"/>
+        <location filename="../MicroPython/EspDevices.py" line="231"/>
         <source>Flash MicroPython Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="258"/>
+        <location filename="../MicroPython/EspDevices.py" line="266"/>
         <source>Flash Additional Firmware</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17572,7 +17572,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="319"/>
+        <location filename="../MicroPython/EspDevices.py" line="327"/>
         <source>&apos;esptool write_flash&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17582,47 +17582,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="285"/>
+        <location filename="../MicroPython/EspDevices.py" line="293"/>
         <source>Backup Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="319"/>
+        <location filename="../MicroPython/EspDevices.py" line="327"/>
         <source>Restore Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="337"/>
+        <location filename="../MicroPython/EspDevices.py" line="345"/>
         <source>Show Chip ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="354"/>
+        <location filename="../MicroPython/EspDevices.py" line="362"/>
         <source>Show Flash ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="371"/>
+        <location filename="../MicroPython/EspDevices.py" line="379"/>
         <source>Show MAC Address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="285"/>
+        <location filename="../MicroPython/EspDevices.py" line="293"/>
         <source>&apos;esptool read_flash&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="337"/>
+        <location filename="../MicroPython/EspDevices.py" line="345"/>
         <source>&apos;esptool chip_id&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="354"/>
+        <location filename="../MicroPython/EspDevices.py" line="362"/>
         <source>&apos;esptool flash_id&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="371"/>
+        <location filename="../MicroPython/EspDevices.py" line="379"/>
         <source>&apos;esptool read_mac&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17655,12 +17655,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="96"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="123"/>
         <source>Address:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="103"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="130"/>
         <source>Enter the flash addres in the hexadecimal form</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17670,20 +17670,30 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="75"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="102"/>
         <source>Flash Mode:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="82"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="109"/>
         <source>Select the flash mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="89"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="116"/>
         <source>Leave empty to use the default mode.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="72"/>
+        <source>Baud Rate:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="79"/>
+        <source>Select the baud rate to be used foor flashing (default: 115.200 bps)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ExceptionLogger</name>
@@ -44897,674 +44907,674 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="483"/>
+        <location filename="../QScintilla/MiniEditor.py" line="484"/>
         <source>Line: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="487"/>
+        <location filename="../QScintilla/MiniEditor.py" line="488"/>
         <source>Pos: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>&amp;New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="567"/>
-        <source>Open an empty editor window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="568"/>
+        <source>Open an empty editor window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="569"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>&amp;Open...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="581"/>
-        <source>Open a file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="582"/>
+        <source>Open a file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="583"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>&amp;Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
-        <source>Save the current file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="596"/>
+        <source>Save the current file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="597"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save &amp;as...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="609"/>
+        <location filename="../QScintilla/MiniEditor.py" line="610"/>
         <source>Save the current file to a new one</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="611"/>
+        <location filename="../QScintilla/MiniEditor.py" line="612"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>&amp;Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="640"/>
-        <source>Close the editor window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="641"/>
+        <source>Close the editor window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="642"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>&amp;Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="654"/>
-        <source>Print the current file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="655"/>
+        <source>Print the current file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="656"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="662"/>
+        <location filename="../QScintilla/MiniEditor.py" line="663"/>
         <source>Print Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="667"/>
+        <location filename="../QScintilla/MiniEditor.py" line="668"/>
         <source>Print preview of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="669"/>
+        <location filename="../QScintilla/MiniEditor.py" line="670"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>&amp;Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="687"/>
-        <source>Undo the last change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="688"/>
+        <source>Undo the last change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="689"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>&amp;Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="701"/>
-        <source>Redo the last change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="702"/>
+        <source>Redo the last change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="703"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="716"/>
-        <source>Cut the selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="717"/>
+        <source>Cut the selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="718"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>&amp;Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="732"/>
-        <source>Copy the selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="733"/>
+        <source>Copy the selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="734"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>&amp;Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="748"/>
+        <location filename="../QScintilla/MiniEditor.py" line="749"/>
         <source>Paste the last cut/copied text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="750"/>
+        <location filename="../QScintilla/MiniEditor.py" line="751"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Cl&amp;ear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="765"/>
-        <source>Clear all text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="766"/>
+        <source>Clear all text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="767"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2373"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2374"/>
         <source>About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2373"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2374"/>
         <source>&amp;About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2377"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
         <source>Display information about this software</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2380"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <source>About Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2389"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2390"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2391"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2392"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2404"/>
-        <source>Context sensitive help</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2405"/>
+        <source>Context sensitive help</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2406"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2421"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2422"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2433"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2434"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2459"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2460"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2471"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2472"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2484"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2485"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2494"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2508"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2509"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2529"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2530"/>
         <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2536"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2537"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2543"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2544"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2560"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2561"/>
         <source>Ready</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2588"/>
         <source>The document has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2614"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2615"/>
         <source>Open File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2614"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2615"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2642"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2643"/>
         <source>File loaded</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2722"/>
         <source>Save File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2722"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2728"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2729"/>
         <source>File saved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3089"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3090"/>
         <source>Untitled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2757"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2758"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2757"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2758"/>
         <source>Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3049"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3050"/>
         <source>Printing...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3070"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3071"/>
         <source>Printing completed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3072"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3073"/>
         <source>Error while printing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3075"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3076"/>
         <source>Printing aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3130"/>
-        <source>Select all</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="3131"/>
+        <source>Select all</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3132"/>
         <source>Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3145"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3146"/>
         <source>Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3148"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3149"/>
         <source>No Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3172"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3173"/>
         <source>Guessed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3194"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Alternatives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3190"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3191"/>
         <source>Alternatives ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3218"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3219"/>
         <source>Pygments Lexer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3218"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3219"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="619"/>
+        <location filename="../QScintilla/MiniEditor.py" line="620"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="619"/>
+        <location filename="../QScintilla/MiniEditor.py" line="620"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="624"/>
+        <location filename="../QScintilla/MiniEditor.py" line="625"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="626"/>
+        <location filename="../QScintilla/MiniEditor.py" line="627"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3735"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3736"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3735"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3736"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2740"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2741"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="502"/>
+        <location filename="../QScintilla/MiniEditor.py" line="503"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2451"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2452"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2501"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2502"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2521"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2522"/>
         <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2554"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2555"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="414"/>
         <source>About eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="414"/>
         <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don&apos;t need the power of a full blown editor.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2588"/>
         <source>eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73155,112 +73165,112 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="519"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="522"/>
         <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="590"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="593"/>
         <source>Manual Select</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="691"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="698"/>
         <source>Reset Instructions:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="635"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="638"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="658"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="665"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="668"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="675"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="693"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="700"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="705"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="712"/>
         <source>Flash Instructions:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="732"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="739"/>
         <source>Boot Volume not found:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="734"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="741"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="740"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="747"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="745"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="752"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="771"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="778"/>
         <source>Multiple Boot Volumes found:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="773"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="780"/>
         <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"></translation>
     </message>
     <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="806"/>
+        <source>Flashing {0}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="714"/>
+        <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 type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="808"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="487"/>
+        <source>&apos;{0}&apos; Board</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../MicroPython/UF2FlashDialog.py" line="799"/>
-        <source>Flashing {0}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="707"/>
-        <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 type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="801"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="484"/>
-        <source>&apos;{0}&apos; Board</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="792"/>
         <source>Flashing Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="793"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="800"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="752"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="759"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="414"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="416"/>
         <source>&lt;h3&gt;Pi Pico (RP2040) 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 type="unfinished"></translation>
     </message>
--- a/eric6/i18n/eric6_es.ts	Sun Mar 28 18:51:40 2021 +0200
+++ b/eric6/i18n/eric6_es.ts	Sun Mar 28 18:51:58 2021 +0200
@@ -17647,12 +17647,12 @@
         <translation>Borrar Flash</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="227"/>
+        <location filename="../MicroPython/EspDevices.py" line="231"/>
         <source>Flash MicroPython Firmware</source>
         <translation>Flash MicroPython Firmware</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="258"/>
+        <location filename="../MicroPython/EspDevices.py" line="266"/>
         <source>Flash Additional Firmware</source>
         <translation>Flash Additional Firmware</translation>
     </message>
@@ -17677,7 +17677,7 @@
         <translation>Tipo de chip no soportado &apos;{0}&apos;.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="319"/>
+        <location filename="../MicroPython/EspDevices.py" line="327"/>
         <source>&apos;esptool write_flash&apos; Output</source>
         <translation>Salida de &apos;esptool write_flash&apos;</translation>
     </message>
@@ -17687,47 +17687,47 @@
         <translation>Resetear Dispositivo</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="285"/>
+        <location filename="../MicroPython/EspDevices.py" line="293"/>
         <source>Backup Firmware</source>
         <translation>Copia de Seguridad de Firmware</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="319"/>
+        <location filename="../MicroPython/EspDevices.py" line="327"/>
         <source>Restore Firmware</source>
         <translation>Restaurar Firmware</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="337"/>
+        <location filename="../MicroPython/EspDevices.py" line="345"/>
         <source>Show Chip ID</source>
         <translation>Mostrar ID de Chip</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="354"/>
+        <location filename="../MicroPython/EspDevices.py" line="362"/>
         <source>Show Flash ID</source>
         <translation>Mostrar ID de Flash</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="371"/>
+        <location filename="../MicroPython/EspDevices.py" line="379"/>
         <source>Show MAC Address</source>
         <translation>Mostrar dirección MAC</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="285"/>
+        <location filename="../MicroPython/EspDevices.py" line="293"/>
         <source>&apos;esptool read_flash&apos; Output</source>
         <translation>Salida de &apos;esptool read_flash&apos;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="337"/>
+        <location filename="../MicroPython/EspDevices.py" line="345"/>
         <source>&apos;esptool chip_id&apos; Output</source>
         <translation>Salida de &apos;esptool chip_id&apos;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="354"/>
+        <location filename="../MicroPython/EspDevices.py" line="362"/>
         <source>&apos;esptool flash_id&apos; Output</source>
         <translation>Salida de &apos;esptool flash_id&apos;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="371"/>
+        <location filename="../MicroPython/EspDevices.py" line="379"/>
         <source>&apos;esptool read_mac&apos; Output</source>
         <translation>Salida de &apos;esptool read_mac&apos;</translation>
     </message>
@@ -17760,12 +17760,12 @@
         <translation>Introducir la ruta del archivo patch</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="96"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="123"/>
         <source>Address:</source>
         <translation>Dirección:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="103"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="130"/>
         <source>Enter the flash addres in the hexadecimal form</source>
         <translation>Introducir la dirección del flash en forma hexadecimal</translation>
     </message>
@@ -17775,20 +17775,30 @@
         <translation>Archivos de Firmware (*.bin);;Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="75"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="102"/>
         <source>Flash Mode:</source>
         <translation>Flash Mode:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="82"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="109"/>
         <source>Select the flash mode</source>
         <translation>Seleccionar el modo de flash</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="89"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="116"/>
         <source>Leave empty to use the default mode.</source>
         <translation>Dejar en blanco para usar el modo por defecto.</translation>
     </message>
+    <message>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="72"/>
+        <source>Baud Rate:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="79"/>
+        <source>Select the baud rate to be used foor flashing (default: 115.200 bps)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ExceptionLogger</name>
--- a/eric6/i18n/eric6_fr.ts	Sun Mar 28 18:51:40 2021 +0200
+++ b/eric6/i18n/eric6_fr.ts	Sun Mar 28 18:51:58 2021 +0200
@@ -1639,37 +1639,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="135"/>
+        <location filename="../Utilities/BackgroundService.py" line="138"/>
         <source>{0} not configured.</source>
         <translation>{0} n&apos;est pas configuré.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="190"/>
+        <location filename="../Utilities/BackgroundService.py" line="193"/>
         <source>Restart background client?</source>
         <translation>Redémarrer le client en arrière plan ?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="445"/>
+        <location filename="../Utilities/BackgroundService.py" line="448"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="451"/>
+        <location filename="../Utilities/BackgroundService.py" line="454"/>
         <source>Background client disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="190"/>
+        <location filename="../Utilities/BackgroundService.py" line="193"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="451"/>
+        <location filename="../Utilities/BackgroundService.py" line="454"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="216"/>
+        <location filename="../Utilities/BackgroundService.py" line="219"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3610,7 +3610,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="578"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation>Pas de message défini pour le code &apos;{0}&apos;.</translation>
     </message>
@@ -9993,7 +9993,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="35"/>
+        <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="32"/>
         <source>&lt;b&gt;Error Message Filters&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress error messages from within Qt.&lt;/p&gt;&lt;p&gt;A default list of message filters is added to this user list.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12147,7 +12147,7 @@
         <translation>Sélectionne l&apos;analyseur Pygments à appliquer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7991"/>
+        <location filename="../QScintilla/Editor.py" line="7992"/>
         <source>Check spelling...</source>
         <translation>Correction orthographique...</translation>
     </message>
@@ -12157,12 +12157,12 @@
         <translation>Correction orthographique de la sélection...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7994"/>
+        <location filename="../QScintilla/Editor.py" line="7995"/>
         <source>Add to dictionary</source>
         <translation>Ajouter au dictionnaire</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7996"/>
+        <location filename="../QScintilla/Editor.py" line="7997"/>
         <source>Ignore All</source>
         <translation>Tout ignorer</translation>
     </message>
@@ -12297,12 +12297,12 @@
         <translation>Modification précédente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8412"/>
+        <location filename="../QScintilla/Editor.py" line="8413"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8412"/>
+        <location filename="../QScintilla/Editor.py" line="8413"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation>La sélection contient des données illégales pour un tri numérique.</translation>
     </message>
@@ -12377,12 +12377,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8501"/>
+        <location filename="../QScintilla/Editor.py" line="8502"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8501"/>
+        <location filename="../QScintilla/Editor.py" line="8502"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12412,12 +12412,12 @@
         <translation>Exécuter la sélection en console</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8622"/>
+        <location filename="../QScintilla/Editor.py" line="8623"/>
         <source>EditorConfig Properties</source>
         <translation>Propriétés d&apos;EditorConfig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8622"/>
+        <location filename="../QScintilla/Editor.py" line="8623"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Les propriétés d&apos;EditorConfig du fichier &lt;b&gt;{0}&lt;/b&gt; n&apos;ont pas pu être chargées.&lt;/p&gt;</translation>
     </message>
@@ -12462,7 +12462,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8816"/>
+        <location filename="../QScintilla/Editor.py" line="8817"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18382,12 +18382,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="227"/>
+        <location filename="../MicroPython/EspDevices.py" line="231"/>
         <source>Flash MicroPython Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="258"/>
+        <location filename="../MicroPython/EspDevices.py" line="266"/>
         <source>Flash Additional Firmware</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18412,7 +18412,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="319"/>
+        <location filename="../MicroPython/EspDevices.py" line="327"/>
         <source>&apos;esptool write_flash&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18422,47 +18422,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="285"/>
+        <location filename="../MicroPython/EspDevices.py" line="293"/>
         <source>Backup Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="319"/>
+        <location filename="../MicroPython/EspDevices.py" line="327"/>
         <source>Restore Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="337"/>
+        <location filename="../MicroPython/EspDevices.py" line="345"/>
         <source>Show Chip ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="354"/>
+        <location filename="../MicroPython/EspDevices.py" line="362"/>
         <source>Show Flash ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="371"/>
+        <location filename="../MicroPython/EspDevices.py" line="379"/>
         <source>Show MAC Address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="285"/>
+        <location filename="../MicroPython/EspDevices.py" line="293"/>
         <source>&apos;esptool read_flash&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="337"/>
+        <location filename="../MicroPython/EspDevices.py" line="345"/>
         <source>&apos;esptool chip_id&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="354"/>
+        <location filename="../MicroPython/EspDevices.py" line="362"/>
         <source>&apos;esptool flash_id&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="371"/>
+        <location filename="../MicroPython/EspDevices.py" line="379"/>
         <source>&apos;esptool read_mac&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18495,12 +18495,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="96"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="123"/>
         <source>Address:</source>
         <translation>Adresse :</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="103"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="130"/>
         <source>Enter the flash addres in the hexadecimal form</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18510,20 +18510,30 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="75"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="102"/>
         <source>Flash Mode:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="82"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="109"/>
         <source>Select the flash mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="89"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="116"/>
         <source>Leave empty to use the default mode.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="72"/>
+        <source>Baud Rate:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="79"/>
+        <source>Select the baud rate to be used foor flashing (default: 115.200 bps)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ExceptionLogger</name>
@@ -47867,599 +47877,599 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>New</source>
         <translation>Nouveau</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>&amp;New</source>
         <translation>&amp;Nouveau</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="567"/>
-        <source>Open an empty editor window</source>
-        <translation>Ouvre une nouvelle page vide</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="568"/>
+        <source>Open an empty editor window</source>
+        <translation>Ouvre une nouvelle page vide</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="569"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nouveau&lt;/b&gt;&lt;p&gt;Ouverture d&apos;une nouvelle fenêtre d&apos;édition.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>Open</source>
         <translation>Ouvrir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>&amp;Open...</source>
         <translation>&amp;Ouvrir...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="581"/>
-        <source>Open a file</source>
-        <translation>Ouvrir un Fichier</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="582"/>
+        <source>Open a file</source>
+        <translation>Ouvrir un Fichier</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="583"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ouvrir un fichier&lt;/b&gt;&lt;p&gt;Permet de saisir le nom d&apos;un fichier à ouvrir&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>Save</source>
         <translation>Enregistrer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>&amp;Save</source>
         <translation>&amp;Enregistrer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
-        <source>Save the current file</source>
-        <translation>Enregistre le fichier courant</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="596"/>
+        <source>Save the current file</source>
+        <translation>Enregistre le fichier courant</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="597"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Enregistrer&lt;/b&gt;&lt;p&gt;Enregistre le fichier en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save as</source>
         <translation>Enregistrer sous</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save &amp;as...</source>
         <translation>&amp;Enregistrer sous...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="609"/>
+        <location filename="../QScintilla/MiniEditor.py" line="610"/>
         <source>Save the current file to a new one</source>
         <translation>Enregistre dans un nouveau fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="611"/>
+        <location filename="../QScintilla/MiniEditor.py" line="612"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Enregistrer sous&lt;/b&gt;&lt;p&gt;Enregistre le buffer dans un nouveau fichier. Le nom du fichier est choisi via une boite de sélection de fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>Close</source>
         <translation>Fermer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>&amp;Close</source>
         <translation>&amp;Fermer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="640"/>
-        <source>Close the editor window</source>
-        <translation>Ferme la fenêtre de l&apos;éditeur</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="641"/>
+        <source>Close the editor window</source>
+        <translation>Ferme la fenêtre de l&apos;éditeur</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="642"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fermer&lt;/b&gt;&lt;p&gt;Ferme la fenêtre en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Undo</source>
         <translation>Défaire</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>&amp;Undo</source>
         <translation>&amp;Défaire</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="687"/>
+        <location filename="../QScintilla/MiniEditor.py" line="688"/>
         <source>Undo the last change</source>
         <translation>Annule la dernière modification</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="688"/>
+        <location filename="../QScintilla/MiniEditor.py" line="689"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Défaire&lt;/b&gt;&lt;p&gt;Annule la dernière modification effectuée dans l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>Redo</source>
         <translation>Refaire</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>&amp;Redo</source>
         <translation>&amp;Refaire</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="701"/>
-        <source>Redo the last change</source>
-        <translation>Recharge la dernière modification</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="702"/>
+        <source>Redo the last change</source>
+        <translation>Recharge la dernière modification</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="703"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Refaire&lt;/b&gt;&lt;p&gt;Réeffectue la dernière modification dans l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Cut</source>
         <translation>Couper</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Cu&amp;t</source>
         <translation>Cou&amp;per</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="716"/>
-        <source>Cut the selection</source>
-        <translation>Coupe la sélection</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="717"/>
+        <source>Cut the selection</source>
+        <translation>Coupe la sélection</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="718"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Couper&lt;/b&gt;&lt;p&gt;Coupe  le texte sélectionné vers le presse-papier&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Copy</source>
         <translation>Copier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="732"/>
+        <location filename="../QScintilla/MiniEditor.py" line="733"/>
         <source>Copy the selection</source>
         <translation>Copie la sélection</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="733"/>
+        <location filename="../QScintilla/MiniEditor.py" line="734"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Copier&lt;/b&gt;&lt;p&gt;Copie le texte sélectionné vers le presse-papier&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Paste</source>
         <translation>Coller</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>&amp;Paste</source>
         <translation>Col&amp;ler</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="748"/>
+        <location filename="../QScintilla/MiniEditor.py" line="749"/>
         <source>Paste the last cut/copied text</source>
         <translation>Colle le dernier texte copié/coupé</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="750"/>
+        <location filename="../QScintilla/MiniEditor.py" line="751"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Coller&lt;/b&gt;&lt;p&gt;Colle le dernier texte copié/coupé dans l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Clear</source>
         <translation>Effacer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Cl&amp;ear</source>
         <translation>Ef&amp;facer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="765"/>
-        <source>Clear all text</source>
-        <translation>Efface tout le texte</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="766"/>
+        <source>Clear all text</source>
+        <translation>Efface tout le texte</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="767"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Effacer&lt;/b&gt;&lt;p&gt;Supprime tout le texte de l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2373"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2374"/>
         <source>About</source>
         <translation>À propos de</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2373"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2374"/>
         <source>&amp;About</source>
         <translation>&amp;À propos de </translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2377"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
         <source>Display information about this software</source>
         <translation>Affiche les informations concernant le logiciel</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2380"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;À propos de&lt;/b&gt;&lt;p&gt;Affiche certaines informations concernant le logiciel.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <source>About Qt</source>
         <translation>À propos de Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <source>About &amp;Qt</source>
         <translation>À propos de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2389"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2390"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Affiche les informations concernant Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2391"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2392"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;À propos de Qt&lt;/b&gt;&lt;p&gt;Affiche les informations concernant Qt&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2421"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2422"/>
         <source>&amp;File</source>
         <translation>&amp;Fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2433"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2434"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edition</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2459"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2460"/>
         <source>&amp;Help</source>
         <translation>A&amp;ide</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2536"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2537"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Cette zone de la barre d&apos;état affiche le numéro de ligne de l&apos;éditeur.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2543"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2544"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Cette zone de la barre d&apos;état affiche la position du curseur.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2560"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2561"/>
         <source>Ready</source>
         <translation>Prêt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2642"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2643"/>
         <source>File loaded</source>
         <translation>Fichier chargé</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3089"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3090"/>
         <source>Untitled</source>
         <translation>SansTitre</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2757"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2758"/>
         <source>Mini Editor</source>
         <translation>Mini éditeur</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3130"/>
-        <source>Select all</source>
-        <translation>Tout sélectionner</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="3131"/>
+        <source>Select all</source>
+        <translation>Tout sélectionner</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3132"/>
         <source>Deselect all</source>
         <translation>Tout déselectionner</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3145"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3146"/>
         <source>Languages</source>
         <translation>Langages</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3148"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3149"/>
         <source>No Language</source>
         <translation>Pas de langage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2614"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2615"/>
         <source>Open File</source>
         <translation>Ouvrir Fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2728"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2729"/>
         <source>File saved</source>
         <translation>Fichier enregistré</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2529"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2530"/>
         <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Cette zone de la barre d&apos;état affiche une indication sur les droits d&apos;écriture des fichiers.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>What&apos;s This?</source>
         <translation>Qu&apos;est-ce que c&apos;est ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Qu&apos;est-ce que c&apos;est?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2404"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2405"/>
         <source>Context sensitive help</source>
         <translation>Aide contextuelle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2405"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2406"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Affiche l&apos;aide contextuelle&lt;/b&gt;&lt;p&gt;Dans le mode &quot;Qu&apos;est-ce que c&apos;est?&quot;, la souris est affichée avec un point d&apos;interrogation, et on peut cliquer sur les éléments de  l&apos;interface pour obtenir une courte description de l&apos;élément. Cette fonction peut être obtenue avec le bouton d&apos;aide contextuelle de la barre principale.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2471"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2472"/>
         <source>File</source>
         <translation>Fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2484"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2485"/>
         <source>Edit</source>
         <translation>Editer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2494"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <source>Find</source>
         <translation>Rechercher</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2508"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2509"/>
         <source>Help</source>
         <translation>Aide</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>Print</source>
         <translation>Imprimer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>&amp;Print</source>
         <translation>&amp;Imprimer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="654"/>
+        <location filename="../QScintilla/MiniEditor.py" line="655"/>
         <source>Print the current file</source>
         <translation>Imprime le fichier courant</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3049"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3050"/>
         <source>Printing...</source>
         <translation>Impression....</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3070"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3071"/>
         <source>Printing completed</source>
         <translation>Impression terminée</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3072"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3073"/>
         <source>Error while printing</source>
         <translation>Erreur durant l&apos;impression</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3075"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3076"/>
         <source>Printing aborted</source>
         <translation>Impression abandonnée</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="655"/>
+        <location filename="../QScintilla/MiniEditor.py" line="656"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Imprimer le fichier&lt;/b&gt;&lt;p&gt;Imprime le fichier courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="662"/>
+        <location filename="../QScintilla/MiniEditor.py" line="663"/>
         <source>Print Preview</source>
         <translation>Aperçu avant impression</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="667"/>
+        <location filename="../QScintilla/MiniEditor.py" line="668"/>
         <source>Print preview of the current file</source>
         <translation>Aperçu avant impression du fichier courant</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="669"/>
+        <location filename="../QScintilla/MiniEditor.py" line="670"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aperçu avant impression&lt;/b&gt;&lt;p&gt;Aperçu avant impression du fichier courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3172"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3173"/>
         <source>Guessed</source>
         <translation>Suggestion</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3194"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Alternatives</source>
         <translation>Alternatives</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3218"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3219"/>
         <source>Pygments Lexer</source>
         <translation>Analyseur Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3218"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3219"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Sélectionne l&apos;analyseur Pygments à appliquer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="483"/>
+        <location filename="../QScintilla/MiniEditor.py" line="484"/>
         <source>Line: {0:5}</source>
         <translation>Ligne : {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="487"/>
+        <location filename="../QScintilla/MiniEditor.py" line="488"/>
         <source>Pos: {0:5}</source>
         <translation>Position : {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2614"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2615"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier&lt;b&gt;{0}&lt;/b&gt; ne peut être ouvert.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2722"/>
         <source>Save File</source>
         <translation>Enregistrer le fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2722"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être enregistré.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2757"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2758"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3190"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3191"/>
         <source>Alternatives ({0})</source>
         <translation>Alternatives ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2588"/>
         <source>The document has unsaved changes.</source>
         <translation>Le document a des modifications non enregistrées.</translation>
     </message>
@@ -48479,57 +48489,57 @@
         <translation type="obsolete">Mini-éditeur eric6</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="619"/>
+        <location filename="../QScintilla/MiniEditor.py" line="620"/>
         <source>Save Copy</source>
         <translation>Enregistrer une copie</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="619"/>
+        <location filename="../QScintilla/MiniEditor.py" line="620"/>
         <source>Save &amp;Copy...</source>
         <translation>Enregistrer une &amp;copie...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="624"/>
+        <location filename="../QScintilla/MiniEditor.py" line="625"/>
         <source>Save a copy of the current file</source>
         <translation>Enregistrer une copie du fichier courant</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="626"/>
+        <location filename="../QScintilla/MiniEditor.py" line="627"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Enregistrer une copie&lt;/b&gt;&lt;p&gt;Enregistre une copie du contenu de l&apos;éditeur courant. Le fichier peut être entré dans un sélectionneur de fichiers.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3735"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3736"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished">Propriétés d&apos;EditorConfig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3735"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3736"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Les propriétés d&apos;EditorConfig du fichier &lt;b&gt;{0}&lt;/b&gt; n&apos;ont pas pu être chargées.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2740"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2741"/>
         <source>[*] - {0}</source>
         <translation>[*] - {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="502"/>
+        <location filename="../QScintilla/MiniEditor.py" line="503"/>
         <source>Language: {0}</source>
         <translation type="unfinished">Langage : {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2451"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2452"/>
         <source>&amp;View</source>
         <translation type="unfinished">&amp;Affichage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2501"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2502"/>
         <source>View</source>
         <translation type="unfinished">Affichage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2521"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2522"/>
         <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48539,22 +48549,22 @@
         <translation type="obsolete">&lt;p&gt;Cette zone de la barre d&apos;état permet de zoomer l&apos;éditeur courant ou le shell.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2554"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2555"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="414"/>
         <source>About eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="414"/>
         <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don&apos;t need the power of a full blown editor.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2588"/>
         <source>eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77674,112 +77684,112 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="519"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="522"/>
         <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="590"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="593"/>
         <source>Manual Select</source>
         <translation type="unfinished">Sélection Manuelle</translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="691"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="698"/>
         <source>Reset Instructions:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="635"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="638"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="658"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="665"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="668"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="675"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="693"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="700"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="705"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="712"/>
         <source>Flash Instructions:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="732"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="739"/>
         <source>Boot Volume not found:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="734"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="741"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="740"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="747"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="745"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="752"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="771"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="778"/>
         <source>Multiple Boot Volumes found:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="773"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="780"/>
         <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"></translation>
     </message>
     <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="806"/>
+        <source>Flashing {0}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="714"/>
+        <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 type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="808"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="487"/>
+        <source>&apos;{0}&apos; Board</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../MicroPython/UF2FlashDialog.py" line="799"/>
-        <source>Flashing {0}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="707"/>
-        <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 type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="801"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="484"/>
-        <source>&apos;{0}&apos; Board</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="792"/>
         <source>Flashing Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="793"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="800"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="752"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="759"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="414"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="416"/>
         <source>&lt;h3&gt;Pi Pico (RP2040) 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 type="unfinished"></translation>
     </message>
--- a/eric6/i18n/eric6_it.ts	Sun Mar 28 18:51:40 2021 +0200
+++ b/eric6/i18n/eric6_it.ts	Sun Mar 28 18:51:58 2021 +0200
@@ -1636,37 +1636,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="135"/>
+        <location filename="../Utilities/BackgroundService.py" line="138"/>
         <source>{0} not configured.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="190"/>
+        <location filename="../Utilities/BackgroundService.py" line="193"/>
         <source>Restart background client?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="445"/>
+        <location filename="../Utilities/BackgroundService.py" line="448"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="451"/>
+        <location filename="../Utilities/BackgroundService.py" line="454"/>
         <source>Background client disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="190"/>
+        <location filename="../Utilities/BackgroundService.py" line="193"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="451"/>
+        <location filename="../Utilities/BackgroundService.py" line="454"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="216"/>
+        <location filename="../Utilities/BackgroundService.py" line="219"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3667,7 +3667,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="578"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10162,7 +10162,7 @@
         <translation>Filtro dei messaggi di errore</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="35"/>
+        <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="32"/>
         <source>&lt;b&gt;Error Message Filters&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress error messages from within Qt.&lt;/p&gt;&lt;p&gt;A default list of message filters is added to this user list.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12366,7 +12366,7 @@
         <translation>Selezione l&apos;analizzatore lessicale di Pygments da applicare.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7991"/>
+        <location filename="../QScintilla/Editor.py" line="7992"/>
         <source>Check spelling...</source>
         <translation>Controllo sillabazione...</translation>
     </message>
@@ -12376,12 +12376,12 @@
         <translation>Controllo sillabazione della selezione...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7994"/>
+        <location filename="../QScintilla/Editor.py" line="7995"/>
         <source>Add to dictionary</source>
         <translation>Aggiungi al dizionario</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7996"/>
+        <location filename="../QScintilla/Editor.py" line="7997"/>
         <source>Ignore All</source>
         <translation>Ignora tutto</translation>
     </message>
@@ -12516,12 +12516,12 @@
         <translation>Modifica precedente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8412"/>
+        <location filename="../QScintilla/Editor.py" line="8413"/>
         <source>Sort Lines</source>
         <translation>Righe ordinate</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8412"/>
+        <location filename="../QScintilla/Editor.py" line="8413"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation>La selezione contiene dati non validi per un ordinamento numerico.</translation>
     </message>
@@ -12596,12 +12596,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8501"/>
+        <location filename="../QScintilla/Editor.py" line="8502"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8501"/>
+        <location filename="../QScintilla/Editor.py" line="8502"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12631,12 +12631,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8622"/>
+        <location filename="../QScintilla/Editor.py" line="8623"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8622"/>
+        <location filename="../QScintilla/Editor.py" line="8623"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12681,7 +12681,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8816"/>
+        <location filename="../QScintilla/Editor.py" line="8817"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18734,12 +18734,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="227"/>
+        <location filename="../MicroPython/EspDevices.py" line="231"/>
         <source>Flash MicroPython Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="258"/>
+        <location filename="../MicroPython/EspDevices.py" line="266"/>
         <source>Flash Additional Firmware</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18764,7 +18764,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="319"/>
+        <location filename="../MicroPython/EspDevices.py" line="327"/>
         <source>&apos;esptool write_flash&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18774,47 +18774,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="285"/>
+        <location filename="../MicroPython/EspDevices.py" line="293"/>
         <source>Backup Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="319"/>
+        <location filename="../MicroPython/EspDevices.py" line="327"/>
         <source>Restore Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="337"/>
+        <location filename="../MicroPython/EspDevices.py" line="345"/>
         <source>Show Chip ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="354"/>
+        <location filename="../MicroPython/EspDevices.py" line="362"/>
         <source>Show Flash ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="371"/>
+        <location filename="../MicroPython/EspDevices.py" line="379"/>
         <source>Show MAC Address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="285"/>
+        <location filename="../MicroPython/EspDevices.py" line="293"/>
         <source>&apos;esptool read_flash&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="337"/>
+        <location filename="../MicroPython/EspDevices.py" line="345"/>
         <source>&apos;esptool chip_id&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="354"/>
+        <location filename="../MicroPython/EspDevices.py" line="362"/>
         <source>&apos;esptool flash_id&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="371"/>
+        <location filename="../MicroPython/EspDevices.py" line="379"/>
         <source>&apos;esptool read_mac&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18847,12 +18847,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="96"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="123"/>
         <source>Address:</source>
         <translation type="unfinished">Indirizzo:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="103"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="130"/>
         <source>Enter the flash addres in the hexadecimal form</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18862,20 +18862,30 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="75"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="102"/>
         <source>Flash Mode:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="82"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="109"/>
         <source>Select the flash mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="89"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="116"/>
         <source>Leave empty to use the default mode.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="72"/>
+        <source>Baud Rate:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="79"/>
+        <source>Select the baud rate to be used foor flashing (default: 115.200 bps)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ExceptionLogger</name>
@@ -50009,599 +50019,599 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>New</source>
         <translation>Nuovo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>&amp;New</source>
         <translation>&amp;Nuova</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="561"/>
+        <location filename="../QScintilla/MiniEditor.py" line="562"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="567"/>
-        <source>Open an empty editor window</source>
-        <translation>Apri una finestra vuota</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="568"/>
+        <source>Open an empty editor window</source>
+        <translation>Apri una finestra vuota</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="569"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nuova&lt;/b&gt;&lt;p&gt;Verrà creata una nuova finestra vuota.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>Open</source>
         <translation>Apri</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>&amp;Open...</source>
         <translation>&amp;Apri...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="575"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="581"/>
-        <source>Open a file</source>
-        <translation>Apri un file</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="582"/>
+        <source>Open a file</source>
+        <translation>Apri un file</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="583"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Apri un file&lt;/b&gt;&lt;p&gt;Ti verrà chiesto il nome del file da aprire.&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>Save</source>
         <translation>Salva</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>&amp;Save</source>
         <translation>&amp;Salva</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="589"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
-        <source>Save the current file</source>
-        <translation>Salva il file corrente</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="596"/>
+        <source>Save the current file</source>
+        <translation>Salva il file corrente</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="597"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salva fle&lt;/b&gt;&lt;p&gt;Salva il contenuto della finestra attuale.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save as</source>
         <translation>Salva come</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save &amp;as...</source>
         <translation>S&amp;alva come...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Ctrl+Shift+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="609"/>
+        <location filename="../QScintilla/MiniEditor.py" line="610"/>
         <source>Save the current file to a new one</source>
         <translation>Salva il file attuale come uno nuovo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="611"/>
+        <location filename="../QScintilla/MiniEditor.py" line="612"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salva file come&lt;/b&gt;&lt;p&gt;Salva il contenuto della finestra attuale come un file nuovo. Il nome può essere inserito nel dialogo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>Close</source>
         <translation>Chiudi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>&amp;Close</source>
         <translation>&amp;Chiudi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="635"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="640"/>
-        <source>Close the editor window</source>
-        <translation>Chiudi la finestra dell&apos;editor</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="641"/>
+        <source>Close the editor window</source>
+        <translation>Chiudi la finestra dell&apos;editor</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="642"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Chiudi finestra&lt;/b&gt;&lt;p&gt;Chiudi la finestra attuale.&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Undo</source>
         <translation>Undo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>&amp;Undo</source>
         <translation>&amp;Undo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="680"/>
+        <location filename="../QScintilla/MiniEditor.py" line="681"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="687"/>
+        <location filename="../QScintilla/MiniEditor.py" line="688"/>
         <source>Undo the last change</source>
         <translation>Annulla l&apos;ultima modifica</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="688"/>
+        <location filename="../QScintilla/MiniEditor.py" line="689"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Annulla&lt;/b&gt;&lt;p&gt;Annula l&apos;ultima modifica nell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>Redo</source>
         <translation>Rifai</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>&amp;Redo</source>
         <translation>&amp;Rifai</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="695"/>
+        <location filename="../QScintilla/MiniEditor.py" line="696"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="701"/>
-        <source>Redo the last change</source>
-        <translation>Rifai ultima modifica</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="702"/>
+        <source>Redo the last change</source>
+        <translation>Rifai ultima modifica</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="703"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rifai&lt;/b&gt;&lt;p&gt;Rifai l&apos;ultima modifica nell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Cut</source>
         <translation>Taglia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Cu&amp;t</source>
         <translation>&amp;Taglia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="716"/>
-        <source>Cut the selection</source>
-        <translation>Taglia la selezione</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="717"/>
+        <source>Cut the selection</source>
+        <translation>Taglia la selezione</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="718"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Taglia&lt;/b&gt;&lt;p&gt;Taglia il testo selezionato nell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Copy</source>
         <translation>Copia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="732"/>
+        <location filename="../QScintilla/MiniEditor.py" line="733"/>
         <source>Copy the selection</source>
         <translation>Copia la selezione</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="733"/>
+        <location filename="../QScintilla/MiniEditor.py" line="734"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Copia&lt;/b&gt;&lt;p&gt;Copia il testo selezionato nell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Paste</source>
         <translation>Incolla</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>&amp;Paste</source>
         <translation>&amp;Incolla</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="741"/>
+        <location filename="../QScintilla/MiniEditor.py" line="742"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="748"/>
+        <location filename="../QScintilla/MiniEditor.py" line="749"/>
         <source>Paste the last cut/copied text</source>
         <translation>Incolla l&apos;ultimo testo tagliato/copiato</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="750"/>
+        <location filename="../QScintilla/MiniEditor.py" line="751"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Incolla&lt;/b&gt;&lt;p&gt;Incolla l&apos;ultimo testo tagliato/copiato nell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Clear</source>
         <translation>Pulisci</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Cl&amp;ear</source>
         <translation>Pu&amp;lisci</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="758"/>
+        <location filename="../QScintilla/MiniEditor.py" line="759"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="765"/>
-        <source>Clear all text</source>
-        <translation>Pulisci tutto il testo</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="766"/>
+        <source>Clear all text</source>
+        <translation>Pulisci tutto il testo</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="767"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pulisci&lt;/b&gt;&lt;p&gt;Cancellal tutto il testo dell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2373"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2374"/>
         <source>About</source>
         <translation>About</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2373"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2374"/>
         <source>&amp;About</source>
         <translation>&amp;About</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2377"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
         <source>Display information about this software</source>
         <translation>Mostra informazioni su questo software</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2380"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Mostra alcune informazioni su questo software.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <source>About Qt</source>
         <translation>About Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <source>About &amp;Qt</source>
         <translation>About &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2389"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2390"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Mostra le informazioni sulle librerie Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2391"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2392"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Mostra delle informazioni sulle librerie Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2421"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2422"/>
         <source>&amp;File</source>
         <translation>&amp;File</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2433"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2434"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edita</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2459"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2460"/>
         <source>&amp;Help</source>
         <translation>&amp;Help</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2536"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2537"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Questa parte della barra di stato mostra il numero di linea.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2543"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2544"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Questa parte della barra di stato mostra la posizione del cursore.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2560"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2561"/>
         <source>Ready</source>
         <translation>Pronto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2642"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2643"/>
         <source>File loaded</source>
         <translation>File caricato</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3089"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3090"/>
         <source>Untitled</source>
         <translation>Senza titolo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2757"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2758"/>
         <source>Mini Editor</source>
         <translation>Mini Editor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3130"/>
-        <source>Select all</source>
-        <translation>Seleziona tutti</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="3131"/>
+        <source>Select all</source>
+        <translation>Seleziona tutti</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3132"/>
         <source>Deselect all</source>
         <translation>Deseleziona tutti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3145"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3146"/>
         <source>Languages</source>
         <translation>Linguaggi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3148"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3149"/>
         <source>No Language</source>
         <translation>Nessun linguaggio</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2614"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2615"/>
         <source>Open File</source>
         <translation>Apri File</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2728"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2729"/>
         <source>File saved</source>
         <translation>File salvato</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2529"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2530"/>
         <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Questa parte della barra di stato mostra se il file può essere scritto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>What&apos;s This?</source>
         <translation>Cos&apos;è questo ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>&amp;What&apos;s This?</source>
         <translation>C&amp;os&apos;è Questo ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2399"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2404"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2405"/>
         <source>Context sensitive help</source>
         <translation>Help sensibile al contesto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2405"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2406"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostra help sensibile al contesto&lt;/b&gt;&lt;p&gt;Nella modalità Cos&apos;è qusto, il cursore del mouse mostra una finesta con un punto interrogativo, e puoi clickare sugli elementi dell&apos;interfaccia per avere una breve descrizione di cosa fanno e come usarli. Nei dialoghi questa funzionalità può essere utilizzata usando il pulsante per l&apos;help sensibile al contesto della barra del titolo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2471"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2472"/>
         <source>File</source>
         <translation>File</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2484"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2485"/>
         <source>Edit</source>
         <translation>Modifica</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2494"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <source>Find</source>
         <translation>Trova</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2508"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2509"/>
         <source>Help</source>
         <translation>Aiuto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>Print</source>
         <translation>Stampa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>&amp;Print</source>
         <translation>Stam&amp;pa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="648"/>
+        <location filename="../QScintilla/MiniEditor.py" line="649"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="654"/>
+        <location filename="../QScintilla/MiniEditor.py" line="655"/>
         <source>Print the current file</source>
         <translation>Stampa il file corrente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3049"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3050"/>
         <source>Printing...</source>
         <translation>In stampa...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3070"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3071"/>
         <source>Printing completed</source>
         <translation>Stampa completata</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3072"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3073"/>
         <source>Error while printing</source>
         <translation>Errore durante la stampa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3075"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3076"/>
         <source>Printing aborted</source>
         <translation>Stampa interrota</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="655"/>
+        <location filename="../QScintilla/MiniEditor.py" line="656"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Stampa file&lt;/b&gt;&lt;p&gt;Stampa il file corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="662"/>
+        <location filename="../QScintilla/MiniEditor.py" line="663"/>
         <source>Print Preview</source>
         <translation>Anteprima Stampa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="667"/>
+        <location filename="../QScintilla/MiniEditor.py" line="668"/>
         <source>Print preview of the current file</source>
         <translation>Antreprima del file corrente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="669"/>
+        <location filename="../QScintilla/MiniEditor.py" line="670"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anteprima di stampa&lt;/b&gt;&lt;p&gt;Anteprima di stampa del file corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3172"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3173"/>
         <source>Guessed</source>
         <translation>Indovinato</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3194"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Alternatives</source>
         <translation>Alternativo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3218"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3219"/>
         <source>Pygments Lexer</source>
         <translation>Analizzatore lessicale Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3218"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3219"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Selezione l&apos;analizzatore lessicale di Pygments da applicare.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="483"/>
+        <location filename="../QScintilla/MiniEditor.py" line="484"/>
         <source>Line: {0:5}</source>
         <translation>Linea: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="487"/>
+        <location filename="../QScintilla/MiniEditor.py" line="488"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2614"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2615"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere aperto.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2722"/>
         <source>Save File</source>
         <translation>Salva file</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2722"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere salvato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2757"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2758"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3190"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3191"/>
         <source>Alternatives ({0})</source>
         <translation>Alternative ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2588"/>
         <source>The document has unsaved changes.</source>
         <translation>Il documento ha delle modifiche non salvate.</translation>
     </message>
@@ -50621,77 +50631,77 @@
         <translation type="obsolete">Mini Editor di eric6</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="619"/>
+        <location filename="../QScintilla/MiniEditor.py" line="620"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="619"/>
+        <location filename="../QScintilla/MiniEditor.py" line="620"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="624"/>
+        <location filename="../QScintilla/MiniEditor.py" line="625"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="626"/>
+        <location filename="../QScintilla/MiniEditor.py" line="627"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3735"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3736"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3735"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3736"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2740"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2741"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="502"/>
+        <location filename="../QScintilla/MiniEditor.py" line="503"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2451"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2452"/>
         <source>&amp;View</source>
         <translation type="unfinished">&amp;Visualizza</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2501"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2502"/>
         <source>View</source>
         <translation type="unfinished">Visualizza</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2521"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2522"/>
         <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2554"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2555"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="414"/>
         <source>About eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="414"/>
         <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don&apos;t need the power of a full blown editor.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2588"/>
         <source>eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80312,112 +80322,112 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="519"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="522"/>
         <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="590"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="593"/>
         <source>Manual Select</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="691"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="698"/>
         <source>Reset Instructions:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="635"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="638"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="658"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="665"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="668"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="675"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="693"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="700"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="705"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="712"/>
         <source>Flash Instructions:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="732"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="739"/>
         <source>Boot Volume not found:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="734"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="741"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="740"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="747"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="745"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="752"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="771"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="778"/>
         <source>Multiple Boot Volumes found:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="773"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="780"/>
         <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"></translation>
     </message>
     <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="806"/>
+        <source>Flashing {0}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="714"/>
+        <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 type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="808"/>
+        <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"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="487"/>
+        <source>&apos;{0}&apos; Board</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../MicroPython/UF2FlashDialog.py" line="799"/>
-        <source>Flashing {0}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="707"/>
-        <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 type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="801"/>
-        <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"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="484"/>
-        <source>&apos;{0}&apos; Board</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="792"/>
         <source>Flashing Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="793"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="800"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="752"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="759"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/UF2FlashDialog.py" line="414"/>
+        <location filename="../MicroPython/UF2FlashDialog.py" line="416"/>
         <source>&lt;h3&gt;Pi Pico (RP2040) 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 type="unfinished"></translation>
     </message>
--- a/eric6/i18n/eric6_pt.ts	Sun Mar 28 18:51:40 2021 +0200
+++ b/eric6/i18n/eric6_pt.ts	Sun Mar 28 18:51:58 2021 +0200
@@ -1638,17 +1638,17 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="135"/>
+        <location filename="../Utilities/BackgroundService.py" line="138"/>
         <source>{0} not configured.</source>
         <translation>{0} sem configurar.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="190"/>
+        <location filename="../Utilities/BackgroundService.py" line="193"/>
         <source>Restart background client?</source>
         <translation>Reiniciar cliente de fundo?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="190"/>
+        <location filename="../Utilities/BackgroundService.py" line="193"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation>&lt;p&gt;O cliente de fundo para &lt;b&gt;{0}&lt;/b&gt; parou devido a uma exceção. Usa-se por varios complementos tais como os diferentes verificadores.&lt;/p&gt;&lt;p&gt;Selecionar&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Sim&apos;&lt;/b&gt; para reiniciar o cliente mas abandona o último trabalho&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Reintentar&apos;&lt;/b&gt; para reiniciar o cliente e o último trabalho&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Não&apos;&lt;/b&gt; para deixar o cliente apagado.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Nota: O cliente pode reiniciar-se abrindo e confirmando a caixa de diálogo de preferências ou recarregando/alterando o projeto.&lt;/p&gt;</translation>
     </message>
@@ -1658,22 +1658,22 @@
         <translation type="obsolete">Um erro no cliente de fundo de Eric parou o serviço.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="445"/>
+        <location filename="../Utilities/BackgroundService.py" line="448"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation type="unfinished">Cliente de fundo de Eric desconectou-se por motivo desconhecido.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="451"/>
+        <location filename="../Utilities/BackgroundService.py" line="454"/>
         <source>Background client disconnected.</source>
         <translation>Cliente de fundo desconectado.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="451"/>
+        <location filename="../Utilities/BackgroundService.py" line="454"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation>Cliente de fundo para &lt;b&gt;{0}&lt;/b&gt; desconetou-se por um motivo desconhecido. &lt;br&gt;Deveria reiniciar-se?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="216"/>
+        <location filename="../Utilities/BackgroundService.py" line="219"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3670,7 +3670,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="578"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10175,7 +10175,7 @@
         <translation type="obsolete">&lt;b&gt;Filtro de Mensagens de Erro&lt;/b&gt;&lt;p&gt;Esta lista mostra os filtros de mensagens configurados usados para suprimir mensagens de erro de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="35"/>
+        <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="32"/>
         <source>&lt;b&gt;Error Message Filters&lt;/b&gt;&lt;p&gt;This list shows the configured message filters used to suppress error messages from within Qt.&lt;/p&gt;&lt;p&gt;A default list of message filters is added to this user list.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11854,7 +11854,7 @@
         <translation>Desselecionar tudo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7991"/>
+        <location filename="../QScintilla/Editor.py" line="7992"/>
         <source>Check spelling...</source>
         <translation>Verificação ortográfica...</translation>
     </message>
@@ -12484,12 +12484,12 @@
         <translation>Incluir nome dos módulos?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7994"/>
+        <location filename="../QScintilla/Editor.py" line="7995"/>
         <source>Add to dictionary</source>
         <translation>Adicionar dicionário</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7996"/>
+        <location filename="../QScintilla/Editor.py" line="7997"/>
         <source>Ignore All</source>
         <translation>Ignorar Tudo</translation>
     </message>
@@ -12534,12 +12534,12 @@
         <translation>Alteração anterior</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8412"/>
+        <location filename="../QScintilla/Editor.py" line="8413"/>
         <source>Sort Lines</source>
         <translation>Ordenar Linhas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8412"/>
+        <location filename="../QScintilla/Editor.py" line="8413"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation>A seleção contém dados ilegais para uma ordenação numérica.</translation>
     </message>
@@ -12609,12 +12609,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8501"/>
+        <location filename="../QScintilla/Editor.py" line="8502"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8501"/>
+        <location filename="../QScintilla/Editor.py" line="8502"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12644,12 +12644,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8622"/>
+        <location filename="../QScintilla/Editor.py" line="8623"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8622"/>
+        <location filename="../QScintilla/Editor.py" line="8623"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12694,7 +12694,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8816"/>
+        <location filename="../QScintilla/Editor.py" line="8817"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18675,12 +18675,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="227"/>
+        <location filename="../MicroPython/EspDevices.py" line="231"/>
         <source>Flash MicroPython Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="258"/>
+        <location filename="../MicroPython/EspDevices.py" line="266"/>
         <source>Flash Additional Firmware</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18705,7 +18705,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="319"/>
+        <location filename="../MicroPython/EspDevices.py" line="327"/>
         <source>&apos;esptool write_flash&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18715,47 +18715,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="285"/>
+        <location filename="../MicroPython/EspDevices.py" line="293"/>
         <source>Backup Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="319"/>
+        <location filename="../MicroPython/EspDevices.py" line="327"/>
         <source>Restore Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="337"/>
+        <location filename="../MicroPython/EspDevices.py" line="345"/>
         <source>Show Chip ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="354"/>
+        <location filename="../MicroPython/EspDevices.py" line="362"/>
         <source>Show Flash ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="371"/>
+        <location filename="../MicroPython/EspDevices.py" line="379"/>
         <source>Show MAC Address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="285"/>
+        <location filename="../MicroPython/EspDevices.py" line="293"/>
         <source>&apos;esptool read_flash&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="337"/>
+        <location filename="../MicroPython/EspDevices.py" line="345"/>
         <source>&apos;esptool chip_id&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="354"/>
+        <location filename="../MicroPython/EspDevices.py" line="362"/>
         <source>&apos;esptool flash_id&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspDevices.py" line="371"/>
+        <location filename="../MicroPython/EspDevices.py" line="379"/>
         <source>&apos;esptool read_mac&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18788,12 +18788,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="96"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="123"/>
         <source>Address:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="103"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="130"/>
         <source>Enter the flash addres in the hexadecimal form</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18803,20 +18803,30 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="75"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="102"/>
         <source>Flash Mode:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="82"/>
+        <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="109"/>
         <source&